Application Development and Automation 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: 
Read only

Facing problem in posting data for IT2011

Former Member
0 Likes
405

Hello Experts,

I am using the function module 'HR_MAINTAIN_MASTERDATA'.

gs_values-infty = '2011' .

gs_values-fname = 'P2011-LDATE' .

gs_values-fval = '20110211' .

APPEND gs_values TO gt_values .

gs_values-infty = '2011' .

gs_values-fname = 'P2011-LTIME' .

gs_values-fval = '093000' .

APPEND gs_values TO gt_values .

gs_values-infty = '2011' .

gs_values-fname = 'P2011-SATZA' .

gs_values-fval = 'P10' .

APPEND gs_values TO gt_values .

gs_values-infty = '2011' .

gs_values-fname = 'P2011-DALLF' .

gs_values-fval = '=' .

APPEND gs_values TO gt_values .

gs_values-infty = '2011' .

gs_values-fname = 'P2011-TERID' .

gs_values-fval = '101' .

APPEND gs_values TO gt_values .

CALL FUNCTION 'HR_MAINTAIN_MASTERDATA'

EXPORTING

pernr = '0002'

actio = 'INSS'

tclas = 'A'

begda = '20100610'

dialog_mode = '0'

luw_mode = '1'

no_enqueue = ' '

IMPORTING

return = gs_return

return1 = gs_return1

hr_return = gs_hr_return

TABLES

proposed_values = gt_values.

and getting the error 'EPG 428 A complex application error has occurred'. If I am running the same function module in all screen mode(dialog_mode = '1') then the values are getting updated.

I am trying to create entries for Info type 2011(Time Events)

1 REPLY 1
Read only

Former Member
0 Likes
331

HI,

Did you get a solution for this. Even I am facing the same issue.

Thanks