NEEDS_NOTIFY_KEYLOAD SAP Method of class /BOBF/CL_FRW









Below is documentation, parameters and attributes of ABAP Method NEEDS_NOTIFY_KEYLOAD within SAP class /BOBF/CL_FRW. 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 /BOBF/CL_FRW into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method NEEDS_NOTIFY_KEYLOAD can also be found below:

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


Parameters of Method NEEDS_NOTIFY_KEYLOAD

.

NameTypeData TypeDescriptionDefault Value
IR_LOAD_ATTRIBUTE_TABImportingTYPE REF TO
/BOBF/T_FRW_NAME
IT_REQUESTED_ATTRIBUTESImportingTYPE
/BOBF/T_FRW_NAME
IV_HAS_AUTH_DETERMImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_HAS_TRANSIENT_ELEMENTSImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
EV_TRANSIENT_FIELDS_REQUESTEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
RV_NOTIFY_KEYLOADReturningTYPE
BOOLE_D



Exceptions of Method NEEDS_NOTIFY_KEYLOAD

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_TRANSIENT_FIELDS_REQUESTED TYPE BOOLE_D,
lv_IR_LOAD_ATTRIBUTE_TAB TYPE /BOBF/T_FRW_NAME,
lv_IT_REQUESTED_ATTRIBUTES TYPE /BOBF/T_FRW_NAME,
lv_IV_HAS_AUTH_DETERM TYPE BOOLE_D,
lv_IV_HAS_TRANSIENT_ELEMENTS TYPE BOOLE_D,
lv_RV_NOTIFY_KEYLOAD TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD /BOBF/CL_FRW=>NEEDS_NOTIFY_KEYLOAD(
EXPORTING
IR_LOAD_ATTRIBUTE_TAB = lv_IR_LOAD_ATTRIBUTE_TAB
IT_REQUESTED_ATTRIBUTES = lv_IT_REQUESTED_ATTRIBUTES
IV_HAS_AUTH_DETERM = lv_IV_HAS_AUTH_DETERM
IV_HAS_TRANSIENT_ELEMENTS = lv_IV_HAS_TRANSIENT_ELEMENTS
IMPORTING
EV_TRANSIENT_FIELDS_REQUESTED = lv_EV_TRANSIENT_FIELDS_REQUESTED
RECEIVING
RV_NOTIFY_KEYLOAD = lv_RV_NOTIFY_KEYLOAD )



"Alternate coding for Method Call with returning parameter
lv_RV_NOTIFY_KEYLOAD = /BOBF/CL_FRW=>NEEDS_NOTIFY_KEYLOAD(
EXPORTING
IR_LOAD_ATTRIBUTE_TAB = lv_IR_LOAD_ATTRIBUTE_TAB
IT_REQUESTED_ATTRIBUTES = lv_IT_REQUESTED_ATTRIBUTES
IV_HAS_AUTH_DETERM = lv_IV_HAS_AUTH_DETERM
IV_HAS_TRANSIENT_ELEMENTS = lv_IV_HAS_TRANSIENT_ELEMENTS
IMPORTING
EV_TRANSIENT_FIELDS_REQUESTED = lv_EV_TRANSIENT_FIELDS_REQUESTED ).

Links to Related Class(s)

/BOBF/CL...
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!