‎2016 Feb 05 3:41 AM
Hi all,
I am developing the table control with wizard in module pool.
I have the table control structure as follows:
For Example:
ROLLNO NAME MOBILE NO CITY STATE
In above structure i have created the search help for roll no. So as the user clicks F4 on roll no,he gets roll no list ,and he selects appropriate roll no.
The requirement is after selecting the roll no, the other fields like name,mobile no,city and state should be populated automatically.
what has to be done in this scenario.
please provide suggestions in this issue.
Thanks in advance for ur help.
Regards,
Akil Syed.
‎2016 Feb 05 3:46 AM
Hi,
use event PROCESS OF VALUE-REQUEST and to read the screen field values use DYNP_VALUES_READ.
refer the following link and meet your requirement..
thanks!!
‎2016 Feb 05 3:46 AM
Hi,
use event PROCESS OF VALUE-REQUEST and to read the screen field values use DYNP_VALUES_READ.
refer the following link and meet your requirement..
thanks!!
‎2016 Feb 05 3:49 AM
PROCESS BEFORE OUTPUT.
LOOP WITH CONTROL PMC_TC.
ENDLOOP.
PROCESS AFTER INPUT.
LOOP WITH CONTROL PMC_TC.
FIELD ROLLNO MODULE GET_DATA_OF_ROLLNO ON REQUEST. " here write logic for get Mobile,name, city and state
|
it will work
‎2016 Feb 05 4:48 AM
Hi Krishna Murthy,
Could u please elaborate me what sort of logic i need to write there.
Because already in PAI i have chain ...end chain structure......
should i need to write the logic of FIELD ROLLNO MODULE GET_DATA_OF_ROLLNO ON REQUEST outside chain endchain or in that itself
‎2016 Feb 05 5:23 AM
Hi,
instead of using table control wizard, create table control at your own, then only you can apply such logics in precise ways.
thanks!!
‎2016 Feb 05 5:13 AM
Hi akil,
in this case DYNP_VALUE_READ will not work , this function module for dynamic selection of values and according to my knowledge in our requirement it is not required and my suggestion is.
in pai.
loop at it.
module select.
endloop.
in select ,
use F4IF_INT_TABLE_VALUE_REQUEST try this and let me know.
regards,
supreeth.
‎2016 Feb 05 10:35 AM
In the PROCESS OF VALUE-REQUEST
Regards,
Raymond