TRANSFER_DATA_FROM_SUBSCREEN SAP Method Data Transfer: Data from Subscreen Back to Delivery









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

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


Parameters of Method TRANSFER_DATA_FROM_SUBSCREEN

.

NameTypeData TypeDescriptionDefault Value
IF_TCODEImportingTYPE
LE_SHP_TCODE
Functional Transaction Code in Delivery Processing
IF_TRTYPImportingTYPE
TRTYP
Transaction Type
IS_V50AGLImportingTYPE
V50AGL
Global Delivery Control Flags
IT_XLIPSImportingTYPE
SHP_LIPS_T
Current Status of Delivery Items
IT_XVBADRImportingTYPE
SHP_SADRVB_T
Administration Table for Address Information
IT_XVBFAImportingTYPE
SHP_VL10_VBFA_T
Current Status of Document Flow
IT_XVBPAImportingTYPE
SHP_VBPAVB_T
Current Status of Delivery Partner
IT_XVBUKImportingTYPE
SHP_VL10_VBUK_T
Current Status of Header Status
IT_XVBUPImportingTYPE
SHP_VL10_VBUP_T
Current Status of Item Status
IT_YLIKPImportingTYPE
SHP_YLIKP_T
Database Status: Delivery Header
IT_YLIPSImportingTYPE
SHP_LIPS_T
Database Status: Delivery Items
IT_YVBFAImportingTYPE
SHP_VL10_VBFA_T
Database Status: Document Flow
IT_YVBPAImportingTYPE
SHP_VBPAVB_T
Database Status: Delivery Partner
IT_YVBUKImportingTYPE
SHP_VL10_VBUK_T
Database Status: Header Status
IT_YVBUPImportingTYPE
SHP_VL10_VBUP_T
Database Status: Item Status
CF_FCODEChangingTYPE
FCODE
Function Code to Process
CS_LIKPChangingTYPE
LIKP
Current Delivery Header
CS_LIKPDChangingTYPE
LIKPD
Dynamic Part of Delivery Header
CS_V50AGL_CUSTChangingTYPE
V50AGL_CUST
Control Flags for Delivery Processing (Customer Part)



Exceptions of Method TRANSFER_DATA_FROM_SUBSCREEN

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_LE_SHP_TAB_GLTR_HEAD.
DATA: lv_CF_FCODE TYPE FCODE,
lv_CS_LIKP TYPE LIKP,
lv_CS_LIKPD TYPE LIKPD,
lv_CS_V50AGL_CUST TYPE V50AGL_CUST,
lv_IF_TCODE TYPE LE_SHP_TCODE,
lv_IF_TRTYP TYPE TRTYP,
lv_IS_V50AGL TYPE V50AGL,
lv_IT_XLIPS TYPE SHP_LIPS_T,
lv_IT_XVBADR TYPE SHP_SADRVB_T,
lv_IT_XVBFA TYPE SHP_VL10_VBFA_T,
lv_IT_XVBPA TYPE SHP_VBPAVB_T,
lv_IT_XVBUK TYPE SHP_VL10_VBUK_T,
lv_IT_XVBUP TYPE SHP_VL10_VBUP_T,
lv_IT_YLIKP TYPE SHP_YLIKP_T,
lv_IT_YLIPS TYPE SHP_LIPS_T,
lv_IT_YVBFA TYPE SHP_VL10_VBFA_T,
lv_IT_YVBPA TYPE SHP_VBPAVB_T,
lv_IT_YVBUK TYPE SHP_VL10_VBUK_T,
lv_IT_YVBUP TYPE SHP_VL10_VBUP_T,
lv_other TYPE c.

CALL METHOD lo_class=>TRANSFER_DATA_FROM_SUBSCREEN(
EXPORTING
IF_TCODE = lv_IF_TCODE
IF_TRTYP = lv_IF_TRTYP
IS_V50AGL = lv_IS_V50AGL
IT_XLIPS = lv_IT_XLIPS
IT_XVBADR = lv_IT_XVBADR
IT_XVBFA = lv_IT_XVBFA
IT_XVBPA = lv_IT_XVBPA
IT_XVBUK = lv_IT_XVBUK
IT_XVBUP = lv_IT_XVBUP
IT_YLIKP = lv_IT_YLIKP
IT_YLIPS = lv_IT_YLIPS
IT_YVBFA = lv_IT_YVBFA
IT_YVBPA = lv_IT_YVBPA
IT_YVBUK = lv_IT_YVBUK
IT_YVBUP = lv_IT_YVBUP
CHANGING
CF_FCODE = lv_CF_FCODE
CS_LIKP = lv_CS_LIKP
CS_LIKPD = lv_CS_LIKPD
CS_V50AGL_CUST = lv_CS_V50AGL_CUST ).

Links to Related Class(s)

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