‎2006 Dec 15 7:05 AM
Dear Friends,
When i click F4 on select options i am able to select the appropriate values using search helps . but here i have to fetch the values for the second select-option based on the values of the first select-options. i mean the values available for particular customer and so on... How can i maintain the consistency. Can any body please explain me
Thanks & Regards,
Santosh.
‎2006 Dec 15 7:20 AM
HI ,
If you are using a standerd help for the second select-option the try to set parameter for that search help and see if ti works.
else what you can do is use the event
<b>at selection secreen on value request for</b> , in the code for this event retreive the relavent values and display it using the FM F4IF_INT_TABLE_VALUE_REQUEST
Regards
Arun
‎2006 Dec 15 7:18 AM
Hi....
1. Consider for example u have
MAtnr and WERKS in the select-options..
2. U need to display only the WERKS for which the material is defined.
To do this
1.At selection-screen VALUE-REQUEST FOR werks
select werks from marc into intab1
where matnr in s_matnr.
then u call the FM
POPUP_WITH_TABLE_DISPLAY
In this u can pass the Intab as an parameter.
-
santhosh
‎2006 Dec 15 7:20 AM
HI ,
If you are using a standerd help for the second select-option the try to set parameter for that search help and see if ti works.
else what you can do is use the event
<b>at selection secreen on value request for</b> , in the code for this event retreive the relavent values and display it using the FM F4IF_INT_TABLE_VALUE_REQUEST
Regards
Arun
‎2006 Dec 15 7:23 AM