GET_TRANSACTION_DETAILS SAP Method Get Details for Payment Service Provider Transaction









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

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /XLSO/IF_COM_WEC_PSP_INTEGRAT 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 GET_TRANSACTION_DETAILS can also be found below:

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


Parameters of Method GET_TRANSACTION_DETAILS

.

NameTypeData TypeDescriptionDefault Value
IS_REFERENCE_DOCUMENTImportingTYPE
/XLSO/COMS_WEC_BUSINESS_OBJECT
Reference document (ID/type/logsys)
IV_PSP_TRANSACTION_IDImportingTYPE
/XLSO/COM_WEC_PSP_TRANS_ID
Unique identification of the transaction in the PSP system
IV_REFERENCE_GUIDImportingTYPE
/XLSO/COM_WEC_TRANSACTION_GUID
Payment transaction GUID
IV_REFERENCE_IDImportingTYPE
/XLSO/COM_WEC_TRANSACTION_ID
Payment transaction ID
ER_ACTIONExportingTYPE REF TO
/XLSO/CL_COM_WEC_UPDT_TRANSPAR
Parameters for update of PSP transaction



Exceptions of Method GET_TRANSACTION_DETAILS

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO /XLSO/IF_COM_WEC_PSP_INTEGRAT.
DATA: lv_ER_ACTION TYPE /XLSO/CL_COM_WEC_UPDT_TRANSPAR,
lv_IS_REFERENCE_DOCUMENT TYPE /XLSO/COMS_WEC_BUSINESS_OBJECT,
lv_IV_PSP_TRANSACTION_ID TYPE /XLSO/COM_WEC_PSP_TRANS_ID,
lv_IV_REFERENCE_GUID TYPE /XLSO/COM_WEC_TRANSACTION_GUID,
lv_IV_REFERENCE_ID TYPE /XLSO/COM_WEC_TRANSACTION_ID,
lv_other TYPE c.

CALL METHOD lo_class=>GET_TRANSACTION_DETAILS(
EXPORTING
IS_REFERENCE_DOCUMENT = lv_IS_REFERENCE_DOCUMENT
IV_PSP_TRANSACTION_ID = lv_IV_PSP_TRANSACTION_ID
IV_REFERENCE_GUID = lv_IV_REFERENCE_GUID
IV_REFERENCE_ID = lv_IV_REFERENCE_ID
IMPORTING
ER_ACTION = lv_ER_ACTION ).

Links to Related Class(s)

/XLSO/IF...
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!