FCODE_HANDLING SAP Method FCode handling for GUI enhancement









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

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


Parameters of Method FCODE_HANDLING

.

NameTypeData TypeDescriptionDefault Value
IF_OK_CODEImportingTYPE
SYUCOMM
Screens, function code triggered by PAI
CT_MESSAGESChangingTYPE
BAPIRET2_T
Return parameter table
CT_RELOAD_HEADERSChangingTYPE
/DSD/SV_RLD_HD_TT
DSD SV: Reload Header
CT_RELOAD_HEADERS_OLDChangingTYPE
/DSD/SV_RLD_HD_TT
DSD SV: Reload Header
CT_RELOAD_ITEMSChangingTYPE
/DSD/SV_RLD_IT_TT
DSD SV: Reload Item
CT_RELOAD_ITEMS_OLDChangingTYPE
/DSD/SV_RLD_IT_TT
DSD SV: Reload Item
CT_RELOAD_ORDERSChangingTYPE
/DSD/SV_ORD_TOUR_TT
DSD SV: Assignment Reload and Unload Orders to Tour



Exceptions of Method FCODE_HANDLING

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /DSD/IF_EX_SV_RELOAD.
DATA: lv_CT_MESSAGES TYPE BAPIRET2_T,
lv_CT_RELOAD_HEADERS TYPE /DSD/SV_RLD_HD_TT,
lv_CT_RELOAD_HEADERS_OLD TYPE /DSD/SV_RLD_HD_TT,
lv_CT_RELOAD_ITEMS TYPE /DSD/SV_RLD_IT_TT,
lv_CT_RELOAD_ITEMS_OLD TYPE /DSD/SV_RLD_IT_TT,
lv_CT_RELOAD_ORDERS TYPE /DSD/SV_ORD_TOUR_TT,
lv_IF_OK_CODE TYPE SYUCOMM,
lv_other TYPE c.

CALL METHOD lo_class=>FCODE_HANDLING(
EXPORTING
IF_OK_CODE = lv_IF_OK_CODE
CHANGING
CT_MESSAGES = lv_CT_MESSAGES
CT_RELOAD_HEADERS = lv_CT_RELOAD_HEADERS
CT_RELOAD_HEADERS_OLD = lv_CT_RELOAD_HEADERS_OLD
CT_RELOAD_ITEMS = lv_CT_RELOAD_ITEMS
CT_RELOAD_ITEMS_OLD = lv_CT_RELOAD_ITEMS_OLD
CT_RELOAD_ORDERS = lv_CT_RELOAD_ORDERS ).

Links to Related Class(s)

/DSD/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!