2006 Feb 08 9:10 PM
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
2006 Feb 08 9:46 PM
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...
2006 Feb 08 9:46 PM
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...
2006 Feb 13 1:43 PM
2006 Feb 20 3:41 PM
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
2006 Feb 20 7:43 PM