READ_GUID SAP Method Read GUIDs by selection criteria









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

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


Parameters of Method READ_GUID

.

NameTypeData TypeDescriptionDefault Value
IV_MAX_ROWSImportingTYPE
/BSNAGT/DTE_MAX_ROWS
Max Rows
SEL_ARC_STATUSImportingTYPE
/BSNAGT/TT_SEL_ARSTA
Selection option table for archiving status
SEL_CHDATImportingTYPE
/BSNAGT/TT_SEL_CRDAT
Selection option table for change date
SEL_CHTIMEImportingTYPE
/BSNAGT/TT_SEL_CRTIME
Selection option table for change time
SEL_CHUSRImportingTYPE
/BSNAGT/TT_SEL_CRUSR
Selection option table for change user
SEL_CRDATImportingTYPE
/BSNAGT/TT_SEL_CRDAT
Selection option table for creation date
SEL_CRTIMEImportingTYPE
/BSNAGT/TT_SEL_CRTIME
Selection option table for creation time
SEL_CRUSRImportingTYPE
/BSNAGT/TT_SEL_CRUSR
Selection option table for creation user
SEL_DIRECTIONImportingTYPE
/BSNAGT/TT_SEL_DIR
Selection option table for direction
SEL_DNAMEImportingTYPE
/BSNAGT/TT_SEL_DNAME
Selection option table for temse name
SEL_EXPIRATION_DATEImportingTYPE
/BSNAGT/TT_SEL_EXPIRATION_DATE
Select Options for Expiration Date
SEL_EXPIREDImportingTYPE
/BSNAGT/TT_SEL_EXPIRED
Select Options - Expired
SEL_FILENAMEImportingTYPE
/BSNAGT/TT_SEL_FNAME
Selection option table for file name
SEL_FILE_STATUSImportingTYPE
/BSNAGT/TT_SEL_STAT
Selection option table file status
SEL_MESSAGEIDImportingTYPE
/BSNAGT/TT_SEL_MESSID
Selection option table for message id
SEL_PARENT_GUIDImportingTYPE
/BSNAGT/TT_SEL_GUID
Selection option table for guid
SEL_RECEIVERIDImportingTYPE
/BSNAGT/TT_SEL_BANKID
Selection option table for bank id
SEL_REFIDImportingTYPE
/BSNAGT/TT_SEL_REFID
Selection option table for reference id
SEL_REL_MESSAGEIDImportingTYPE
/BSNAGT/TT_SEL_REL_MESSAGE_ID
Select Options Related Message ID
SEL_SENDERIDImportingTYPE
/BSNAGT/TT_SEL_CORPID
Selection option table for corporate id
SEL_SENSITIVEImportingTYPE
/BSNAGT/TT_SEL_SENSITIVE
Select Options - Sensitive Flag
SEL_TYPEImportingTYPE
/BSNAGT/TT_SEL_TYPE
Selection option table for file type
ET_GUIDExportingTYPE
/BSNAGT/TTY_GUID
FSN Message GUIDs
ET_RETURNExportingTYPE
BAPIRET2_T
Return parameter table



Exceptions of Method READ_GUID

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BSNAGT/CL_FILE_OPER.
DATA: lv_ET_GUID TYPE /BSNAGT/TTY_GUID,
lv_ET_RETURN TYPE BAPIRET2_T,
lv_IV_MAX_ROWS TYPE /BSNAGT/DTE_MAX_ROWS,
lv_SEL_ARC_STATUS TYPE /BSNAGT/TT_SEL_ARSTA,
lv_SEL_CHDAT TYPE /BSNAGT/TT_SEL_CRDAT,
lv_SEL_CHTIME TYPE /BSNAGT/TT_SEL_CRTIME,
lv_SEL_CHUSR TYPE /BSNAGT/TT_SEL_CRUSR,
lv_SEL_CRDAT TYPE /BSNAGT/TT_SEL_CRDAT,
lv_SEL_CRTIME TYPE /BSNAGT/TT_SEL_CRTIME,
lv_SEL_CRUSR TYPE /BSNAGT/TT_SEL_CRUSR,
lv_SEL_DIRECTION TYPE /BSNAGT/TT_SEL_DIR,
lv_SEL_DNAME TYPE /BSNAGT/TT_SEL_DNAME,
lv_SEL_EXPIRATION_DATE TYPE /BSNAGT/TT_SEL_EXPIRATION_DATE,
lv_SEL_EXPIRED TYPE /BSNAGT/TT_SEL_EXPIRED,
lv_SEL_FILENAME TYPE /BSNAGT/TT_SEL_FNAME,
lv_SEL_FILE_STATUS TYPE /BSNAGT/TT_SEL_STAT,
lv_SEL_MESSAGEID TYPE /BSNAGT/TT_SEL_MESSID,
lv_SEL_PARENT_GUID TYPE /BSNAGT/TT_SEL_GUID,
lv_SEL_RECEIVERID TYPE /BSNAGT/TT_SEL_BANKID,
lv_SEL_REFID TYPE /BSNAGT/TT_SEL_REFID,
lv_SEL_REL_MESSAGEID TYPE /BSNAGT/TT_SEL_REL_MESSAGE_ID,
lv_SEL_SENDERID TYPE /BSNAGT/TT_SEL_CORPID,
lv_SEL_SENSITIVE TYPE /BSNAGT/TT_SEL_SENSITIVE,
lv_SEL_TYPE TYPE /BSNAGT/TT_SEL_TYPE,
lv_other TYPE c.

CALL METHOD lo_class=>READ_GUID(
EXPORTING
IV_MAX_ROWS = lv_IV_MAX_ROWS
SEL_ARC_STATUS = lv_SEL_ARC_STATUS
SEL_CHDAT = lv_SEL_CHDAT
SEL_CHTIME = lv_SEL_CHTIME
SEL_CHUSR = lv_SEL_CHUSR
SEL_CRDAT = lv_SEL_CRDAT
SEL_CRTIME = lv_SEL_CRTIME
SEL_CRUSR = lv_SEL_CRUSR
SEL_DIRECTION = lv_SEL_DIRECTION
SEL_DNAME = lv_SEL_DNAME
SEL_EXPIRATION_DATE = lv_SEL_EXPIRATION_DATE
SEL_EXPIRED = lv_SEL_EXPIRED
SEL_FILENAME = lv_SEL_FILENAME
SEL_FILE_STATUS = lv_SEL_FILE_STATUS
SEL_MESSAGEID = lv_SEL_MESSAGEID
SEL_PARENT_GUID = lv_SEL_PARENT_GUID
SEL_RECEIVERID = lv_SEL_RECEIVERID
SEL_REFID = lv_SEL_REFID
SEL_REL_MESSAGEID = lv_SEL_REL_MESSAGEID
SEL_SENDERID = lv_SEL_SENDERID
SEL_SENSITIVE = lv_SEL_SENSITIVE
SEL_TYPE = lv_SEL_TYPE
IMPORTING
ET_GUID = lv_ET_GUID
ET_RETURN = lv_ET_RETURN ).

Links to Related Class(s)

/BSNAGT/...
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!