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

Class CL_HRPAYBR_EFDF_DATA_LOG

former_member269988
Participant
0 Likes
787

Hi Dear,

I need application a sap note 2033111 to release 604 , SP 75 but the class cl-hr_paybr_efdf_data_log don't have the method APPEND_DATA_LOG and i'm not finding on Market place wich note create this object.

Someoneis is this same realease and can see your environment which note create the object or any other help?

thanks a lot.

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
742

Look at 2122513 - HBRSEGDE - New format for unemployment insurance document


Insert Block

  METHOD append_data_log.

    APPEND LINES OF io_data_log->mt_message_log TO me->mt_message_log.

  ENDMETHOD.

Regards,

Raymond

4 REPLIES 4
Read only

Former Member
0 Likes
742

Are you sure that you need "APPEND_DATA_LOG" method? I do not see that method in the class.

Also, I guess the class you mentioned should be cl_hrpaybr_efdf_data_log.

-Chandra

Read only

0 Likes
742

Hi Chandra,

yes, i need this method to apply the note 😃

I see n another environment (the new release 96) and the method it exists , just not identify which notes are creating in the market place search was not very successful

Read only

RaymondGiuseppi
Active Contributor
0 Likes
743

Look at 2122513 - HBRSEGDE - New format for unemployment insurance document


Insert Block

  METHOD append_data_log.

    APPEND LINES OF io_data_log->mt_message_log TO me->mt_message_log.

  ENDMETHOD.

Regards,

Raymond

Read only

0 Likes
742

Hi Raymonds, thansk so much for your help.