CNV_TDMS_HCM_GEN_TDMS_EXPORT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CNV_TDMS_HCM_GEN_TDMS_EXPORT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CNV_TDMS_HCM_CNT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'CNV_TDMS_HCM_GEN_TDMS_EXPORT' "TDMS4HCM: Code Generation for TDMS export logic
EXPORTING
* im_display_code = " cnv_mbt_yesno Test Option - Display Code
im_mtid = " dmc_mt_identifier Mass Transfer ID
im_generic_rw = " cnv_mbt_yesno Yes / No
IMPORTING
ex_message = " balmi Return Value, Return Value After ABAP Statements
ex_program = " progname ABAP program name
ex_subrc = " sysubrc Generation Status Code
TABLES
it_tablist = " cnvhcm_tablist_s TDMS4HCM: Definitions of PCLn Clusters
EXCEPTIONS
CODE_MODEL_ERROR = 1 " CNV_TDMS_HCM_CLUSTER_MODEL not found
TABLIST_EMPTY = 2 " No tables were provided for generation
. " CNV_TDMS_HCM_GEN_TDMS_EXPORT
The ABAP code below is a full code listing to execute function module CNV_TDMS_HCM_GEN_TDMS_EXPORT including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_ex_message | TYPE BALMI , |
| ld_ex_program | TYPE PROGNAME , |
| ld_ex_subrc | TYPE SYSUBRC , |
| it_it_tablist | TYPE STANDARD TABLE OF CNVHCM_TABLIST_S,"TABLES PARAM |
| wa_it_tablist | LIKE LINE OF it_it_tablist . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_ex_message | TYPE BALMI , |
| ld_im_display_code | TYPE CNV_MBT_YESNO , |
| it_it_tablist | TYPE STANDARD TABLE OF CNVHCM_TABLIST_S , |
| wa_it_tablist | LIKE LINE OF it_it_tablist, |
| ld_ex_program | TYPE PROGNAME , |
| ld_im_mtid | TYPE DMC_MT_IDENTIFIER , |
| ld_ex_subrc | TYPE SYSUBRC , |
| ld_im_generic_rw | TYPE CNV_MBT_YESNO . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name CNV_TDMS_HCM_GEN_TDMS_EXPORT or its description.
CNV_TDMS_HCM_GEN_TDMS_EXPORT - TDMS4HCM: Code Generation for TDMS export logic CNV_TDMS_HCM_GEN_GLCODE_SCRAM - Generation of global Code for Scramble engine CNV_TDMS_HCM_GEN_CLUST_IMP_EXP - TDMS4HCM: Code Generation for Cluster Import / Export CNV_TDMS_HCM_EXP_ACPLAN_DATA - TDMS4HCM: Export Access Plan data to the HCM_CLUSTER CNV_TDMS_HCM_EREC_DEL_TRGT_CNT - Deletion for e-rec CNV_TDMS_HCM_DETERMINE_TABLES - TDMS4HCM: Determine which tables are transfer / delete relevant