Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Need to update screen Field Q0014/EITXT data

Former Member
0 Kudos

Hi All,

I am new to HR ABAP,

I have Requirement like update the Screen fields data EITXT(Time/Measurement Unit Text) in Q0014 how to do this can you suggest me.

Thanks in advance,

Rajesh Vadde.

2 REPLIES 2

former_member209703
Active Contributor
0 Kudos

When exactly do you need to update this value?

When creating or modifying a record whatever the user input is? When displaying a record already created?

if so, you can do it creating an implementation for the standard BADI definition HRPADINFTY00

The code would be placed either on the BEFORE_OUTPUT or in the AFTER_INPUT method depending on your requirements


method IF_EX_HRPAD00INFTY~AFTER_INPUT.


  FIELD-SYMBOLS <fs> type Q0014.
  assign ('(MP001400)Q0014') TO <FS>.
  IF SY-SUBRC EQ 0.
    <FS>-EITXT = 'Your value'. <=== Your custom value
  ENDIF.

endmethod.

PS: Also, you have to bear in mind that there are several standard checks for this infotype involving this field against several SAP standard tables like T510, so maybe modifying this value you can get any error messages..

0 Kudos

Hi All,

This issue is completed.thanks