cancel
Showing results for 
Search instead for 
Did you mean: 

how to transfer the selected item to IP field from F4 help window?

former_member182426
Active Contributor
0 Kudos

hi friends,

Froma saptechnical site i tried the F4 help for IP field in BSP.

i followed same thing which they specified, and when i clicked F4 it's opening help contents also. but when i select a row and clicked transfer button it's not getting the keyrow data into IP field.

For more details go throug the site...

SAPTECHNICAL

Any helps........

Regards,

Shankar.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member182426
Active Contributor
0 Kudos

SOLVED

former_member182426
Active Contributor
0 Kudos

hi,

Any helps............

Regards,

Shankar.

0 Kudos

Chamala,

You have two ways to do that, over the Javascript function in LOAD body attribute(F4 screen) as below:

function close_help(if_id,selval)

{

if(selval!='')

{

window.opener.document.getElementById(if_id).value = selval;

window.opener.document.getElementById(if_id).focus();

window.opener.document.forms[0].submit();

self.close( );

return;

}

}

Or through global attribute in you MVC.

If its does not help you, let us see your code.

Regards,

Alexandre

former_member182426
Active Contributor
0 Kudos

hi ACR,

Thanks for ur reply.. I tried ur way.. but still i am not getting...

Plz, Can u look at once saptechinical website once. in that click on TUTORIALS, in left side list click on BSP. It will show list of examples. In that list click on 3rd link...

Providing F4 help in the BSP Application (More details)

I am trying to do taht, but i am not getting the value back into IP field...

Regards,

Shankar.