‎2007 May 07 10:30 AM
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
‎2007 May 07 10:37 AM
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
‎2007 May 07 10:37 AM
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
‎2007 May 07 10:56 AM
‎2007 May 07 10:39 AM
Hi
Use the same data element as reference / You can use the search help available.
‎2007 May 07 10:52 AM
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