SAP DERIVED TYPES IS DRAFT ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• %is_draft ABAP_BDEF_DER_TYP_COMP

%is_draft

ABAP_USE
The draft indicator %is_draft is a component of BDEF derived types. It is used to indicate if a RAP BO instance is a drafts instance or an active instance. To create a draft instance, %is_draft must be explicitly set in ABAP_EML MODIFY requests.

ABAP_FURTHER_INFO
Using Keys and Identifying RAP BO Instances in a Nutshell
Type
The component has the following type: ABP_BEHV_FLAG
Where used
In ABAP_EML MODIFY requests, the component can be referred to directly or via the component group %tky since %is_draft is a component of %tky.

ABAP_EXAMPLE_VX5
The following source code section taken from CL_DEMO_RAP_DRVD_TYPES_ISDRAFT demonstrates the component %is_draft .
ABEXA 01564
ABAP_EXAMPLE_END

ABAP_EXAMPLE_ABEXA
The example Using %is_draft demonstrates the use of %is_draft with an unmanaged RAP BO in a draft scenario.
ABAP_EXAMPLE_END

Return to menu