BEFORE_ACTION_REDO SAP Method Before Creating Request (Repeated)









Below is documentation, parameters and attributes of ABAP Method BEFORE_ACTION_REDO within SAP class IF_EX_ISHMED_GL_ACT_REQ. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_ISHMED_GL_ACT_REQ into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method BEFORE_ACTION_REDO can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method BEFORE_ACTION_REDO

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
N2GL_BADI_FLT_REQ
Parameter FLT_VAL of Method BEFORE_ACTION
IR_CONTEXTImportingTYPE REF TO
IF_ISHMED_GENERAL_CTX
i.s.h.med: Context Main Interface
IR_OPERATIONImportingTYPE REF TO
IF_ISHMED_BASEITEM_OPERATION
Base Item to Be Executed
IS_REQUESTImportingTYPE
RN2GL_BADI_REQ_IMP
Base Items: BAdI Request
I_CASE_IDImportingTYPE
FALNR
IS-H: Case Number
I_CORRESP_STEP_IDImportingTYPE
N2GL_STEP_ID
Linked Step
I_DEPEND_STEP_IDImportingTYPE
N2GL_STEP_ID
Dependent Step
I_INSTITUTIONImportingTYPE
EINRI
IS-H: Institution
I_PATIENT_IDImportingTYPE
PATNR
IS-H: Patient Number
I_SCHEDULE_IDImportingTYPE
N2GL_TM_ID
IS-H*MED: Patient Pathway Key
I_STEP_IDImportingTYPE
N2GL_STEP_ID
IS-H*MED: Step Key



Exceptions of Method BEFORE_ACTION_REDO

CX_ISHMED_GL_ACTION - IS-H*MED: Exception of Base Items

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_ISHMED_GL_ACT_REQ.
DATA: lv_FLT_VAL TYPE N2GL_BADI_FLT_REQ,
lv_IR_CONTEXT TYPE IF_ISHMED_GENERAL_CTX,
lv_IR_OPERATION TYPE IF_ISHMED_BASEITEM_OPERATION,
lv_IS_REQUEST TYPE RN2GL_BADI_REQ_IMP,
lv_I_CASE_ID TYPE FALNR,
lv_I_CORRESP_STEP_ID TYPE N2GL_STEP_ID,
lv_I_DEPEND_STEP_ID TYPE N2GL_STEP_ID,
lv_I_INSTITUTION TYPE EINRI,
lv_I_PATIENT_ID TYPE PATNR,
lv_I_SCHEDULE_ID TYPE N2GL_TM_ID,
lv_I_STEP_ID TYPE N2GL_STEP_ID,
lv_other TYPE c.

CALL METHOD lo_class=>BEFORE_ACTION_REDO(
EXPORTING
FLT_VAL = lv_FLT_VAL
IR_CONTEXT = lv_IR_CONTEXT
IR_OPERATION = lv_IR_OPERATION
IS_REQUEST = lv_IS_REQUEST
I_CASE_ID = lv_I_CASE_ID
I_CORRESP_STEP_ID = lv_I_CORRESP_STEP_ID
I_DEPEND_STEP_ID = lv_I_DEPEND_STEP_ID
I_INSTITUTION = lv_I_INSTITUTION
I_PATIENT_ID = lv_I_PATIENT_ID
I_SCHEDULE_ID = lv_I_SCHEDULE_ID
I_STEP_ID = lv_I_STEP_ID ).

Links to Related Class(s)

IF_EX_IS...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!