RKCDLKR0 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 RKCDLKR0 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
KCK1 - Display key figure
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: ASPET = Aspect
Selection Text: FRML = ?...(FRML)
Title: Display / delete key figures
Text Symbol: DEL = Delete all key figures
Text Symbol: DIS = Display
Text Symbol: DLS = Delete individual key figures
Text Symbol: FOR = With formula
Text Symbol: HL1 = | Key figure Description |
Text Symbol: HL2 = | Formula |
Text Symbol: HL3 = | Non-aggr.ind. Aggr. TimeAggr. Time ref. field |
Text Symbol: HL4 = | L. Key figure Description |
Text Symbol: KDI = --> Key figures for appl./aspect:
Text Symbol: KDL = --> Deleted key figures for appl./aspect:
Text Symbol: KDP = --> Deletable key figures for application/aspect:
Text Symbol: LS1 = When deleting, no check is made, to
Text Symbol: LS2 = see if the key figs are still used
Text Symbol: NOD = No key figures selected
Text Symbol: OPT = Choose
Text Symbol: TTL = Delete key figures
Text Symbol: WRK = Options
INCLUDE FKCIKCOM.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING textline1 = text-ls1 textline2 = text-ls2 titel = text-ttl IMPORTING answer = ans EXCEPTIONS OTHERS = 1.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'KX' msgty = 'E' msgv1 = keyra msgv2 = dek_stg-keyra txtnr = '405' EXCEPTIONS OTHERS = 0.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'KX' msgty = 'E' msgv1 = akr_tab-keyra msgv2 = dek_stg-keyra txtnr = '405' EXCEPTIONS OTHERS = 0.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'KX' msgty = 'S' msgv1 = akr_tab-keyra txtnr = '407' EXCEPTIONS OTHERS = 0.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' IMPORTING count = lncnt EXCEPTIONS OTHERS = 0.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXCEPTIONS OTHERS = 0.
RKC_ASPET_INFO CALL FUNCTION 'RKC_ASPET_INFO' EXPORTING aspet = fm_aspet EXCEPTIONS not_exist = 1 not_in_client = 2 not_in_state = 3.
RKC_ASPET_POPUP CALL FUNCTION 'RKC_ASPET_POPUP' EXPORTING status = 'A' IMPORTING aspet = aspet.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.