CONV_RECON_DET SAP Method Convert the detailed reconciliation data (BAPI









Below is documentation, parameters and attributes of ABAP Method CONV_RECON_DET within SAP class IF_EX_OIRH_BLPCP. 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_OIRH_BLPCP 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 CONV_RECON_DET can also be found below:

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


Parameters of Method CONV_RECON_DET

.

NameTypeData TypeDescriptionDefault Value
I_CONVGRImportingTYPE
OIRECH-CONVGR
SSR Interface conversion group definition (IS-Oil, SSR)
EXTENSIONINChangingTYPE
OIRH_T_BAPIPAREX
Ref. structure for BAPI parameters EXTENSIONIN/EXTENSIONOUT
RECONDETAILSChangingTYPE
OIRH_T_BAPIPCRECON_DET
Detailed reconciliation data
RETURNChangingTYPE
BAPIRET2
Return parameter



Exceptions of Method CONV_RECON_DET

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_OIRH_BLPCP.
DATA: lv_EXTENSIONIN TYPE OIRH_T_BAPIPAREX,
lv_I_CONVGR TYPE OIRECH-CONVGR,
lv_RECONDETAILS TYPE OIRH_T_BAPIPCRECON_DET,
lv_RETURN TYPE BAPIRET2,
lv_other TYPE c.

CALL METHOD lo_class=>CONV_RECON_DET(
EXPORTING
I_CONVGR = lv_I_CONVGR
CHANGING
EXTENSIONIN = lv_EXTENSIONIN
RECONDETAILS = lv_RECONDETAILS
RETURN = lv_RETURN ).

Links to Related Class(s)

IF_EX_OI...
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!