READ_CREATE_DEFAULT_ORG_OBJECT SAP Method Read/Generate Org Objects









Below is documentation, parameters and attributes of ABAP Method READ_CREATE_DEFAULT_ORG_OBJECT within SAP class CFC. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CFC 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 READ_CREATE_DEFAULT_ORG_OBJECT can also be found below:

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


Parameters of Method READ_CREATE_DEFAULT_ORG_OBJECT

.

NameTypeData TypeDescriptionDefault Value
ED_CHANGEDExportingTYPE
CHAR1
Necessary to write back to DB
ET_FOLDERExportingTYPE
TFC_IFOLDER
ITab for TFC_S_FOLDER
ET_FOLDERTExportingTYPE
TFC_IFOLDERT
ITAB for TFC_FOLDER
ET_ORG_OBJECTSExportingTYPE
TFC_T_ORG_OBJECTS
Itab for TFC_ORG_OBJECTS
ET_ORG_OBJECTSTExportingTYPE
TFC_T_ORG_OBJECTST
Itab for TFC_ORG_OBJECTST



Exceptions of Method READ_CREATE_DEFAULT_ORG_OBJECT

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lv_ED_CHANGED TYPE CHAR1,
lv_ET_FOLDER TYPE TFC_IFOLDER,
lv_ET_FOLDERT TYPE TFC_IFOLDERT,
lv_ET_ORG_OBJECTS TYPE TFC_T_ORG_OBJECTS,
lv_ET_ORG_OBJECTST TYPE TFC_T_ORG_OBJECTST,
lv_other TYPE c.

CALL METHOD CFC=>READ_CREATE_DEFAULT_ORG_OBJECT(
IMPORTING
ED_CHANGED = lv_ED_CHANGED
ET_FOLDER = lv_ET_FOLDER
ET_FOLDERT = lv_ET_FOLDERT
ET_ORG_OBJECTS = lv_ET_ORG_OBJECTS
ET_ORG_OBJECTST = lv_ET_ORG_OBJECTST ).

Links to Related Class(s)

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