2013 Oct 10 8:39 PM
I added that Dropdownlist and added the Fcode to it too and wrote my code inside user command but it never saves the selected value in db table...
in debugging also the field is showin blank value...
so help in getting this value.
2013 Oct 18 8:38 PM
its solved by assigning Fcode to the DDL and using USER_COMMAND module. inside the module checking for sy-ucomm and not clearing the variable.
2013 Oct 11 6:05 AM
Please make sure that you have declared the input field in CHAIN statement in PAI,like:
PROCESS AFTER INPUT.
* This chain has to include all input-fields:
CHAIN.
FIELD P0001-ZZFIELD.
MODULE INPUT_STATUS_SUBSCREEN ON CHAIN-REQUEST.
ENDCHAIN.
Regards
2013 Oct 11 6:16 AM
Hi Rajat,
You don't have to write any separate code to save the custom fields. I hope you have enhanced the standard structure by creating the Customer Include.
Can you please paste the source code which you have used ?
Thanks,
Ajay Bose
2013 Oct 18 8:38 PM
its solved by assigning Fcode to the DDL and using USER_COMMAND module. inside the module checking for sy-ucomm and not clearing the variable.