SD_CFS_DISPLAY 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 SD_CFS_DISPLAY into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
V06K
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'SD_CFS_DISPLAY' "
* EXPORTING
* iv_kunnr = " kunnr
* iv_vkorg = " vkorg
* it_rg_vtweg = " trg_char2
* it_rg_spart = " trg_char2
* it_obj_request = " tdt_cfs_obj_request
IMPORTING
es_cfs_address_data = " tds_cfs_address_data
es_cfs_cust_classification = " tds_cfs_classification
es_cfs_key_figures = " tds_cfs_key_figures
et_cfs_contact_person = " tdt_cfs_contact_person
et_cfs_order_info_cust = " tdt_cfs_order_info_cust
et_cfs_pricing_cust = " tdt_cfs_pricing_cust
et_cfs_shipping_cust = " tdt_cfs_shipping_cust
et_cfs_part_deliveries = " tdt_cfs_part_deliveries
es_cfs_transp_data = " tds_cfs_transp_data
et_cfs_billing_data = " tdt_cfs_billing_data
et_cfs_pay_deli_terms = " tdt_cfs_delivery_terms
et_cfs_partner_data = " tdt_cfs_partner_data
et_cfs_statistics_s001 = " tdt_cfs_statistics_s001
et_cfs_statistics_measures = " tdt_cfs_statistics_meas
et_cfs_last_sd_documents = " tdt_cfs_last_sd_doc
et_cfs_q_notifications = " tdt_cfs_q_notifications
et_cfs_s_notifications = " tdt_cfs_s_notifications
et_cfs_credit_info = " tdt_cfs_credit_info
et_cfs_promotions = " tdt_cfs_promotions
et_cfs_payment_cards = " tdt_cfs_payment_cards
es_cfs_quickinfo = " tds_cfs_quickinfo
et_cfs_backorders = " tdt_cfs_backorders
* CHANGING
* ct_cfs_error = " tdt_cfs_error
. " SD_CFS_DISPLAY
The ABAP code below is a full code listing to execute function module SD_CFS_DISPLAY 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_es_cfs_address_data | TYPE TDS_CFS_ADDRESS_DATA , |
| ld_es_cfs_cust_classification | TYPE TDS_CFS_CLASSIFICATION , |
| ld_es_cfs_key_figures | TYPE TDS_CFS_KEY_FIGURES , |
| ld_et_cfs_contact_person | TYPE TDT_CFS_CONTACT_PERSON , |
| ld_et_cfs_order_info_cust | TYPE TDT_CFS_ORDER_INFO_CUST , |
| ld_et_cfs_pricing_cust | TYPE TDT_CFS_PRICING_CUST , |
| ld_et_cfs_shipping_cust | TYPE TDT_CFS_SHIPPING_CUST , |
| ld_et_cfs_part_deliveries | TYPE TDT_CFS_PART_DELIVERIES , |
| ld_es_cfs_transp_data | TYPE TDS_CFS_TRANSP_DATA , |
| ld_et_cfs_billing_data | TYPE TDT_CFS_BILLING_DATA , |
| ld_et_cfs_pay_deli_terms | TYPE TDT_CFS_DELIVERY_TERMS , |
| ld_et_cfs_partner_data | TYPE TDT_CFS_PARTNER_DATA , |
| ld_et_cfs_statistics_s001 | TYPE TDT_CFS_STATISTICS_S001 , |
| ld_et_cfs_statistics_measures | TYPE TDT_CFS_STATISTICS_MEAS , |
| ld_et_cfs_last_sd_documents | TYPE TDT_CFS_LAST_SD_DOC , |
| ld_et_cfs_q_notifications | TYPE TDT_CFS_Q_NOTIFICATIONS , |
| ld_et_cfs_s_notifications | TYPE TDT_CFS_S_NOTIFICATIONS , |
| ld_et_cfs_credit_info | TYPE TDT_CFS_CREDIT_INFO , |
| ld_et_cfs_promotions | TYPE TDT_CFS_PROMOTIONS , |
| ld_et_cfs_payment_cards | TYPE TDT_CFS_PAYMENT_CARDS , |
| ld_es_cfs_quickinfo | TYPE TDS_CFS_QUICKINFO , |
| ld_et_cfs_backorders | TYPE TDT_CFS_BACKORDERS . |
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_ct_cfs_error | TYPE TDT_CFS_ERROR , |
| ld_es_cfs_address_data | TYPE TDS_CFS_ADDRESS_DATA , |
| ld_iv_kunnr | TYPE KUNNR , |
| ld_es_cfs_cust_classification | TYPE TDS_CFS_CLASSIFICATION , |
| ld_iv_vkorg | TYPE VKORG , |
| ld_es_cfs_key_figures | TYPE TDS_CFS_KEY_FIGURES , |
| ld_it_rg_vtweg | TYPE TRG_CHAR2 , |
| ld_et_cfs_contact_person | TYPE TDT_CFS_CONTACT_PERSON , |
| ld_it_rg_spart | TYPE TRG_CHAR2 , |
| ld_et_cfs_order_info_cust | TYPE TDT_CFS_ORDER_INFO_CUST , |
| ld_it_obj_request | TYPE TDT_CFS_OBJ_REQUEST , |
| ld_et_cfs_pricing_cust | TYPE TDT_CFS_PRICING_CUST , |
| ld_et_cfs_shipping_cust | TYPE TDT_CFS_SHIPPING_CUST , |
| ld_et_cfs_part_deliveries | TYPE TDT_CFS_PART_DELIVERIES , |
| ld_es_cfs_transp_data | TYPE TDS_CFS_TRANSP_DATA , |
| ld_et_cfs_billing_data | TYPE TDT_CFS_BILLING_DATA , |
| ld_et_cfs_pay_deli_terms | TYPE TDT_CFS_DELIVERY_TERMS , |
| ld_et_cfs_partner_data | TYPE TDT_CFS_PARTNER_DATA , |
| ld_et_cfs_statistics_s001 | TYPE TDT_CFS_STATISTICS_S001 , |
| ld_et_cfs_statistics_measures | TYPE TDT_CFS_STATISTICS_MEAS , |
| ld_et_cfs_last_sd_documents | TYPE TDT_CFS_LAST_SD_DOC , |
| ld_et_cfs_q_notifications | TYPE TDT_CFS_Q_NOTIFICATIONS , |
| ld_et_cfs_s_notifications | TYPE TDT_CFS_S_NOTIFICATIONS , |
| ld_et_cfs_credit_info | TYPE TDT_CFS_CREDIT_INFO , |
| ld_et_cfs_promotions | TYPE TDT_CFS_PROMOTIONS , |
| ld_et_cfs_payment_cards | TYPE TDT_CFS_PAYMENT_CARDS , |
| ld_es_cfs_quickinfo | TYPE TDS_CFS_QUICKINFO , |
| ld_et_cfs_backorders | TYPE TDT_CFS_BACKORDERS . |
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 SD_CFS_DISPLAY or its description.