GENERATE_DRAFT_TABLE SAP Method of class /BOBF/IF_CONF_CDS_DB_GEN
Below is documentation, parameters and attributes of ABAP Method GENERATE_DRAFT_TABLE within SAP class /BOBF/IF_CONF_CDS_DB_GEN. 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/IF_CONF_CDS_DB_GEN 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 GENERATE_DRAFT_TABLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GENERATE_DRAFT_TABLE
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTIVE_TABLE_NAME | Importing | TYPE TABNAME16 | ||
| IV_CDS_VIEW_NAME | Importing | TYPE /BOBF/CONF_CDS_VIEW_NAME | ||
| IV_DRAFT_TABLE_NAME | Importing | TYPE TABNAME16 | ||
| IV_PACKAGE_NAME | Importing | TYPE DEVCLASS | ||
| IV_TRANSPORT_NAME | Importing | TYPE TRKORR |
Exceptions of Method GENERATE_DRAFT_TABLE
/BOBF/CX_CONF_CDS_LINK -Example ABAP coding
DATA: lo_class TYPE REF TO /BOBF/IF_CONF_CDS_DB_GEN.
DATA: lv_IV_ACTIVE_TABLE_NAME TYPE TABNAME16,
lv_IV_CDS_VIEW_NAME TYPE /BOBF/CONF_CDS_VIEW_NAME,
lv_IV_DRAFT_TABLE_NAME TYPE TABNAME16,
lv_IV_PACKAGE_NAME TYPE DEVCLASS,
lv_IV_TRANSPORT_NAME TYPE TRKORR,
lv_other TYPE c.
CALL METHOD lo_class=>GENERATE_DRAFT_TABLE(
EXPORTING
IV_ACTIVE_TABLE_NAME = lv_IV_ACTIVE_TABLE_NAME
IV_CDS_VIEW_NAME = lv_IV_CDS_VIEW_NAME
IV_DRAFT_TABLE_NAME = lv_IV_DRAFT_TABLE_NAME
IV_PACKAGE_NAME = lv_IV_PACKAGE_NAME
IV_TRANSPORT_NAME = lv_IV_TRANSPORT_NAME ).
Links to Related Class(s)
/BOBF/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects