SET_TEXT_SCHEMA_ID SAP Method determine TEXT_SCHEMA_ID for Text Collection









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

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


Parameters of Method SET_TEXT_SCHEMA_ID

.

NameTypeData TypeDescriptionDefault Value
IO_MODIFYImportingTYPE REF TO
/BOBF/IF_FRW_MODIFY
Interface to Change Data
IO_READImportingTYPE REF TO
/BOBF/IF_FRW_READ
Interface to Read Data
IS_CTXImportingTYPE
/BOBF/S_FRW_CTX_ASSOC
Context Information for Associations
IS_MODIFICATIONImportingTYPE
/BOBF/S_FRW_MODIFICATION
Change
IS_SOURCE_NODEImportingTYPE
/BOBF/S_CONFRO_NODE
Configuration: Node
IV_HO_NODE_TYPEImportingTYPE
/BOBF/OBJECT_NODE_TYPE_CODE
Object Node Type Code
IV_HO_TYPEImportingTYPE
/BOBF/OBJECT_TYPE_CODE
Object Type Code
EV_TEXT_SCHEMA_IDExportingTYPE
/BOBF/TXC_TEXT_SCHEMA_ID
Text schema (Configuration Profile Code)
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object



Exceptions of Method SET_TEXT_SCHEMA_ID

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/CL_C_TXC_DO_FRGNKEY.
DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_EV_TEXT_SCHEMA_ID TYPE /BOBF/TXC_TEXT_SCHEMA_ID,
lv_IO_MODIFY TYPE /BOBF/IF_FRW_MODIFY,
lv_IO_READ TYPE /BOBF/IF_FRW_READ,
lv_IS_CTX TYPE /BOBF/S_FRW_CTX_ASSOC,
lv_IS_MODIFICATION TYPE /BOBF/S_FRW_MODIFICATION,
lv_IS_SOURCE_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_IV_HO_NODE_TYPE TYPE /BOBF/OBJECT_NODE_TYPE_CODE,
lv_IV_HO_TYPE TYPE /BOBF/OBJECT_TYPE_CODE,
lv_other TYPE c.

CALL METHOD lo_class=>SET_TEXT_SCHEMA_ID(
EXPORTING
IO_MODIFY = lv_IO_MODIFY
IO_READ = lv_IO_READ
IS_CTX = lv_IS_CTX
IS_MODIFICATION = lv_IS_MODIFICATION
IS_SOURCE_NODE = lv_IS_SOURCE_NODE
IV_HO_NODE_TYPE = lv_IV_HO_NODE_TYPE
IV_HO_TYPE = lv_IV_HO_TYPE
IMPORTING
EV_TEXT_SCHEMA_ID = lv_EV_TEXT_SCHEMA_ID
CHANGING
CO_MESSAGE = lv_CO_MESSAGE ).

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!