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: 

HRHAP00_ACTION_LOG BADI in Objective Settings and Appraisal

Former Member
0 Kudos
225

Hi,

This BADI has a Method that has an import field called (ACTION)-Char(3). Can anyone tell me where to find the possible values that can be in this ACTION import field?

I'm using Objective Settings and Appraisal module.

Thanks,

Mary Ann Kolnik

1 ACCEPTED SOLUTION

suresh_datti
Active Contributor
0 Kudos
175

Hi Mary Ann,

I doubt if they are maintained in a Table.. the values seem to be context based depending on the action performed.. Pl take a look at the source code of the function module HRHAP_DOC_ACTION_LOG_WRITE.

Regards,

Suresh Datti

P.S Probably Maurice will post the correct answer...

4 REPLIES 4

suresh_datti
Active Contributor
0 Kudos
176

Hi Mary Ann,

I doubt if they are maintained in a Table.. the values seem to be context based depending on the action performed.. Pl take a look at the source code of the function module HRHAP_DOC_ACTION_LOG_WRITE.

Regards,

Suresh Datti

P.S Probably Maurice will post the correct answer...

0 Kudos
175

Hi Suresh,

Thanks for the information.

Mary Ann

Former Member
0 Kudos
175

Ola,

Action is used to determine what has been triggered and what action log message is assigned to it.

What to use there is up to you, as the badi stores customer specific actions. You would write something like.

Case action.

when 'YHM'.

*-- Fill message for customer action 1

when 'KLM'.

*-- Fill message for customer action 2

endcase.

We are using in the standard only numbers, so to be on the save side use characters for customer specific actions.

Some general info, with ERP2005 we have a more detailed action log which also stores information on what in detail has been changed.

Regards and Groetjes,

Maurice

0 Kudos
175

Thanks Maurice.