SAP Reports / Programs

CNS_CP_DELETE SAP ABAP Report - Delete Change Pointers







CNS_CP_DELETE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report selects change pointers and images in accordance with the selection parameters and deletes them...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter CNS_CP_DELETE into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

CNS_CP_DELETE - Delete Change Pointers


ABAP code to call this SAP report using the submit statement

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.






SUBMIT CNS_CP_DELETE. "Basic submit
SUBMIT CNS_CP_DELETE AND RETURN. "Return to original report after report execution complete
SUBMIT CNS_CP_DELETE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: DELALL = All
Selection Text: DELERROR = Errors Found
Selection Text: DELPRC = Processed
Selection Text: APPL_ID = D .
Selection Text: BLKSIZE = D .
Selection Text: EXPOBJ = D .
Title: Delete Change Pointers
Text Symbol: OPT = Options
Text Symbol: QU1 = Do you really want to delete all change pointers according to your selection criteria irrespective of their status?
Text Symbol: QU2 = Do you really want to delete all change pointers according to your selection criteris with status "processed"?
Text Symbol: QU3 = Do you really want to delete all change pointers according to your selection criteris with status "incorrect"?
Text Symbol: SEL = Selection Conditions
Text Symbol: TIT = Status


INCLUDES used within this REPORT CNS_CP_DELETE

BANK_TMC_GENERAL_ACCESS,


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CNS_DB_CONF_GET_EXPOBJTYPE call function 'CNS_DB_CONF_GET_EXPOBJTYPE' exporting i_appl_id = appl_id i_expobjtype = expobj importing e_str_basic_cust = line_basic_cust.

POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-tit * DIAGNOSE_OBJECT = ' ' text_question = text-qu1 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' display_cancel_button = space * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = ICON_MESSAGE_WARNING importing answer = l_answer * TABLES * PARAMETER = exceptions others = 0.

POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-tit text_question = text-qu2 default_button = '2' display_cancel_button = space importing answer = l_answer exceptions others = 0.

POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-tit text_question = text-qu3 default_button = '2' display_cancel_button = space importing answer = l_answer exceptions others = 0.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name CNS_CP_DELETE or its description.