Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

F4 Help.

Former Member
0 Likes
771

Hi Friends

need F4 help in my code for - 1. idoc status and 2.sending partner number fields.

The F4s values for these fields should be same as in WE02 screen

Please suggest how to do this.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
719

Hi

Declare the fields as:

p_status like TEDS1-STATUS and

P_KUNNR like EDPP!-PARNUM.

You will get the same F4 help similar to WE02 Tcode.

Reward points if useful

Regards

Anji

4 REPLIES 4
Read only

Former Member
0 Likes
720

Hi

Declare the fields as:

p_status like TEDS1-STATUS and

P_KUNNR like EDPP!-PARNUM.

You will get the same F4 help similar to WE02 Tcode.

Reward points if useful

Regards

Anji

Read only

0 Likes
719

Thanks Anji.. It worked.. Full Points

Read only

Former Member
0 Likes
719

Hi

Use the same data element as reference / You can use the search help available.

Read only

Former Member
0 Likes
719

Hi,

If the data eleement corresponding to the fields does't have an associated search help, then do the following:

1. create a view on the table with the required fields.

2. create a search help and assign the 'selection method' with the view name.

inside the search help you supress the unwanted fields by not giving the LPos

SPos, select the dialog type as 'display with restriction' and tick 'SDis'.

3. Now in the selection screen after the data declaration write

matchcode search_help_name

eg.

Parameter p_data type mara-matnr matchcode search_help_name.

Hope this helps.

Reply if u need more clarifications