2010 Jun 25 7:14 AM
Hi
I have created the custom sub screen and included in MM01 TCode.
In my sub screen fields are, some custom fields like Main Group, Sub Group, Parameter 1, Parameter 2 & Parameter 3.
I have created the search help for Main Group in SE11 and have all the parameters of my custom fields.
I need to populate the values of all the fields with one search help. such as Main Group, Sub Group, Parameter 1, Parameter 2 & Parameter 3.
My issue is I am able to get only Main group value and I am not able to get other values.
Regards
Shriraam
Hi
I have created the custom sub screen and included in MM01 TCode.
In my sub screen fields are, some custom fields like Main Group, Sub Group, Parameter 1, Parameter 2 & Parameter 3.
I have created the search help for Main Group in SE11 and have all the parameters of my custom fields.
I need to populate the values of all the fields with one search help. such as Main Group, Sub Group, Parameter 1, Parameter 2 & Parameter 3.
My issue is I am able to get only Main group value and I am not able to get other values.
Regards
Shriraam
2010 Jun 25 8:28 AM
2010 Jun 25 8:42 AM
Hi,
Other then both screen field you have assign your search help name... or you have used function module for search help pass to the correct screen field name.
Thanks
Regards
I.Muthukumar.
2010 Jun 25 9:30 AM
2012 Aug 07 9:44 AM
Hi,
I tried to achieve almost the similar:
I have 3 fields and all of them trigger a search help. When an item is selected, all 3 fields are to be populated with values.
I found a solution:
- Create ITAB where you put all data for search help and prepend "INDEX" column which is filled with incrementing values.
- When a line is selected in the search help, this index field is returned (FM F4IF_INT_TABLE_VALUE_REQUEST)
- Read ITAB with that INDEX.
- Create dynpro fields, append them into fields-ITAB and fill them with values.
- Update dynpro with fields-ITAB (FM DYNP_VALUES_UPDATE).
You can see my functional demo/example on http://oprsteny.com/?p=114