CNV_TDMS_HCM_INITIAL_SETTINGS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program will generally be called in background from the
If you would like to execute this report or see the full code listing simply enter CNV_TDMS_HCM_INITIAL_SETTINGS 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_TEST = Test Mode (No DB Update)
Selection Text: P_REFR = Refresh TR Table
Selection Text: P_PHASE = Phase
Selection Text: P_PACK = Package Id
Selection Text: P_MISS = Show missing entries
Selection Text: P_FILLED = Deactivate empties
Selection Text: P_ERRORS = Show errors
Selection Text: P_CLCOPY = Copy from Client 000
Selection Text: P_ACT_ID = Activity Id
Title: TDMS4HCM: Insert initial table values - Display / Maintain TR_TAB
Text Symbol: 015 = No errors were found
Text Symbol: 014 = Number of tables missing from the TR Table:
Text Symbol: 013 = Number of entries
Text Symbol: 012 = does not exist
Text Symbol: 011 = for table
Text Symbol: 010 = Table grouping
Text Symbol: 009 = Program cancelled
Text Symbol: 008 = Modify Status table
Text Symbol: 007 = Do you really want to continue?
Text Symbol: 006 = This can alter the Transfer Status table
Text Symbol: 005 = is not in the Table Transfer Status table
Text Symbol: 004 = from table grouping
Text Symbol: 003 = The table
Text Symbol: 002 = UPDATE MODE - Number of Entries inserted -
Text Symbol: 001 = TEST MODE - Number of entries found -
INCLUDE: CNV_TDMS_HCM_GEN_DATA,
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'N' TEXTLINE1 = LV_TEXT_1 TEXTLINE2 = LV_TEXT_2 TITEL = LV_TITLE CANCEL_DISPLAY = SPACE IMPORTING ANSWER = LV_ANSWER.
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING SYSTEMTYPE = GV_SYSTEMTYPE EXCEPTIONS NO_SYSTEMNAME = 1 NO_SYSTEMTYPE = 2 OTHERS = 3.
CNV_TDMS_HCM_DETERMINE_TABLES CALL FUNCTION 'CNV_TDMS_HCM_DETERMINE_TABLES' EXPORTING IM_OTHERS_CUST_PA = GC_YES IM_OTHERS_CUST_PD = GC_YES IM_PACKID = GC_ALL TABLES ET_TABLIST = GT_TABLIST ET_MESSAGES = GT_MESSAGES IT_TABSEL_CUST_PA = GT_TABSEL_CUST_PA IT_TABSEL_CUST_PD = GT_TABSEL_CUST_PD IT_TABSEL_CSPEC = GT_TABSEL_CSPEC IT_TABSEL_INTER = GT_TABSEL_INTER.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
CNV_TDMS_HCM_INITIAL_SETTINGS - TDMS4HCM: Insert initial table values - Display / Maintain TR_TAB CNV_TDMS_HCM_INITIAL_SETTINGS - TDMS4HCM: Insert initial table values - Display / Maintain TR_TAB CNV_TDMS_HCM_GET_CLUST_FIELDS - TDMS4HCM: Subroutinepool for GET_CLUST_FIELDS CNV_TDMS_HCM_GET_CLUST_FIELDS - TDMS4HCM: Subroutinepool for GET_CLUST_FIELDS CNV_TDMS_HCM_GEN_FORMS - TDMS4HCM: General Transfer FORM routines CNV_TDMS_HCM_GEN_DATA_HCM - TDMS4HCM: General Data for HCM Transfer - Data from HCM Application