FIELDSTATUS_DETERMINE SAP Method Determine Field Status for Customer-Defined Fields









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

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


Parameters of Method FIELDSTATUS_DETERMINE

.

NameTypeData TypeDescriptionDefault Value
IS_NOM_HEADERImportingTYPE
ROIJNOMHIO
TSW Nomination Header Communication Structure
IS_NOM_ITEMImportingTYPE
ROIJNOMIIO
TSW Nomination Item Communication Structure
IV_FIELDImportingTYPE
DD03L-FIELDNAME
Field Name
CV_CHANGEABLEChangingTYPE
BOOLEAN
Field Is Open - Only if CV_INFLEUENCE Is Set
CV_INFLUENCEChangingTYPE
BOOLEAN
Indicator Whether Field Should Be Influenced



Exceptions of Method FIELDSTATUS_DETERMINE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_OIJ_NOM_MAINTAIN.
DATA: lv_CV_CHANGEABLE TYPE BOOLEAN,
lv_CV_INFLUENCE TYPE BOOLEAN,
lv_IS_NOM_HEADER TYPE ROIJNOMHIO,
lv_IS_NOM_ITEM TYPE ROIJNOMIIO,
lv_IV_FIELD TYPE DD03L-FIELDNAME,
lv_other TYPE c.

CALL METHOD lo_class=>FIELDSTATUS_DETERMINE(
EXPORTING
IS_NOM_HEADER = lv_IS_NOM_HEADER
IS_NOM_ITEM = lv_IS_NOM_ITEM
IV_FIELD = lv_IV_FIELD
CHANGING
CV_CHANGEABLE = lv_CV_CHANGEABLE
CV_INFLUENCE = lv_CV_INFLUENCE ).

Links to Related Class(s)

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