RKCCOLT1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for With the report, layouts which were created for the entry of actual data or originate from a release lower than 4...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 RKCCOLT1 into the relevant SAP transactions such as SE38 or SE80
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: P_ASPECT = D Aspect
Selection Text: P_CONVRT = Automatic adjustment
Selection Text: P_FORM = D Form
Selection Text: P_OVERWR = Replace existing layouts
Title: Copy actual data layouts as planning layouts
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RKC_ASPET_POPUP CALL FUNCTION 'RKC_ASPET_POPUP' EXPORTING disp = space status = 'A' IMPORTING aspet = p_aspect EXCEPTIONS OTHERS = 1.
HELP_FORM_VALUES_GET CALL FUNCTION 'HELP_FORM_VALUES_GET' EXPORTING i_applclass = applclass i_form = p_form i_subclassf = subclass_act i_tabname = tabname i_txtmt = '' IMPORTING e_form = p_form.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
RKC_COPY_ACTLAY_TO_PLANLAYOUT CALL FUNCTION 'RKC_COPY_ACTLAY_TO_PLANLAYOUT' EXPORTING aspect = p_aspect form = p_form EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'K6' msgty = 'E' txtnr = 122.
RKC_COPY_ACTLAY_TO_PLANLAYOUT CALL FUNCTION 'RKC_COPY_ACTLAY_TO_PLANLAYOUT' EXPORTING aspect = p_aspect form = form_act EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'K6' msgty = 'E' txtnr = 122.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'K6' msgty = 'E' msgv1 = p_form txtnr = 123.
RKC_COPY_ACTLAY_TO_PLANLAYOUT CALL FUNCTION 'RKC_COPY_ACTLAY_TO_PLANLAYOUT' EXPORTING aspect = p_aspect form = p_form EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'K6' msgty = 'E' txtnr = 122.
RKC_COPY_ACTLAY_TO_PLANLAYOUT CALL FUNCTION 'RKC_COPY_ACTLAY_TO_PLANLAYOUT' EXPORTING aspect = p_aspect form = form_act EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'K6' msgty = 'E' msgv1 = form_act txtnr = 122.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' IMPORTING count = count.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.