CBESH_CREATE_DRAFT_ANNOTATION is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter CBESH_CREATE_DRAFT_ANNOTATION into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CBESH_ANF_GEN - Annotation File Generator
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: AJUST = Adjust Order of Attributes
Selection Text: CLEARDB = Delete current customizing
Selection Text: DISP_ALL = Create without Ajustments
Selection Text: SERVICE = OData Service Name
Selection Text: TEMP_ID = Template ID
Title: Program CBESH_CREATE_DRAFT_ANNOTATION
Text Symbol: 001 = Generation Settings
Text Symbol: 005 = Warning Message
Text Symbol: 006 = Really delete the existing customizing?
Text Symbol: 007 = Yes
Text Symbol: 008 = No
Text Symbol: 023 = Entity Name
Text Symbol: 024 = Field Name
Text Symbol: 025 = Identification
Text Symbol: 026 = Line Item
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM * CALL FUNCTION 'POPUP_TO_CONFIRM' * EXPORTING * titlebar = 'Warning Message'(005) * text_question = 'Really delete the existing customizing?'(006) * text_button_1 = 'Yes'(007) * text_button_2 = 'No'(008) * default_button = '2' * display_cancel_button = abap_true * IMPORTING * answer = lv_answer * EXCEPTIONS * text_not_found = 1 * OTHERS = 2.
DISPLAY_XML_STRING ** CALL FUNCTION 'DISPLAY_XML_STRING' ** EXPORTING ** xml_string = xstr *** TITLE = *** STARTING_X = 5 *** STARTING_Y = 5 ** EXCEPTIONS ** no_xml_document = 1 ** OTHERS = 2.
ICM_CACHE_UPLOAD * CALL FUNCTION 'ICM_CACHE_UPLOAD' * EXPORTING * url = url * data = rawdata * global = 0 * EXCEPTIONS * icm_op_failed = 1 * icm_get_serv_failed = 2 * icm_no_http_service = 3 * OTHERS = 4.
CALL_BROWSER * CALL FUNCTION 'CALL_BROWSER' * EXPORTING * url = lv_out_url ** WINDOW_NAME = ' ' ** NEW_WINDOW = ' ' ** BROWSER_TYPE = ** contextstring = lv_html * EXCEPTIONS * frontend_not_supported = 1 * frontend_error = 2 * prog_not_found = 3 * no_batch = 4 * unspecified_error = 5 * OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.