2008 Apr 16 12:07 PM
How to Default the InfoType field value, I got the user Exit ZXPADU01 but I want to update an infotype(0416) field, any one give the idea how to do it.
Thanks in Advance
2008 Apr 16 12:18 PM
Hi,
Well in the user exit add a new WHEN '0416' in the existing case staement' and set the a default value to the request filed.
Don't forget to get the value of you infotype like the following
CLEAR P0416.
MOVE innnn TO P0416.
Regards
2008 Apr 16 12:43 PM
Hi
I am following code
.
.
.
WHEN '0416'.
CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
EXPORTING
prelp = innnn
IMPORTING
pnnnn = i0416.
i0416-wgtyp = '5004'.
I moved the value wgtyp field, but the screen field not updated.
regards