SAP CRM_BSP_DESIG_XML_DATA_READ Function Module for Designer Integration: Read Table Data









CRM_BSP_DESIG_XML_DATA_READ is a standard crm bsp desig xml data read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Designer Integration: Read Table Data processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for crm bsp desig xml data read FM, simply by entering the name CRM_BSP_DESIG_XML_DATA_READ into the relevant SAP transaction such as SE37 or SE38.

Function Group: CRM_BSP_DESIGNER_XML
Program Name: SAPLCRM_BSP_DESIGNER_XML
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CRM_BSP_DESIG_XML_DATA_READ pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'CRM_BSP_DESIG_XML_DATA_READ'"Designer Integration: Read Table Data
EXPORTING
IV_APPLICATION = "Application Scenario
IV_BLVIEW = "View for UI Display
IV_EVENT = "Event
IV_SCREENPOSITION = "Position of Tile in Layout
IV_SCREENVARIANT = "Screen Variant

IMPORTING
EV_SCREENSTRUCTURE = "Structure Name of Display Field
ET_FIELDGRP_T = "Internal Table for CRMC_FIELDGRP_T
ET_TOOLBARGC = "Internal Table for CRMC_TOOLBARGC
ET_REGTABGRC = "Internal Table for CRMC_REGTABGRC
ET_BSP_EVENT_T = "Internal Table for CRMC_BSP_EVENT_T
ET_LAYOUTC = "Internal Table for CRMC_LAYOUTC
ET_FIELDGRPC = "Internal Table for CRMC_FIELDGRPC
ET_LISTCOLC = "Internal Table for CRMC_LISTCOLC
ET_DFIES_SCRSTR = "Designer Integration: Extract of DFIES Fields Required

EXCEPTIONS
ERROR_READ_DATA = 1 ERROR_SCREEN_NOT_FOUND = 2 ERROR_READ_DDIC = 3
.



IMPORTING Parameters details for CRM_BSP_DESIG_XML_DATA_READ

IV_APPLICATION - Application Scenario

Data type: CRMT_BSP_APPL
Optional: No
Call by Reference: Yes

IV_BLVIEW - View for UI Display

Data type: CRMT_BSP_BLVIEW
Optional: No
Call by Reference: Yes

IV_EVENT - Event

Data type: CRMT_BSP_EVENT
Optional: No
Call by Reference: Yes

IV_SCREENPOSITION - Position of Tile in Layout

Data type: CRMT_BSP_SCRPOSITION
Optional: No
Call by Reference: Yes

IV_SCREENVARIANT - Screen Variant

Data type: CRMT_BSP_SCRVARIANT
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for CRM_BSP_DESIG_XML_DATA_READ

EV_SCREENSTRUCTURE - Structure Name of Display Field

Data type: CRMT_BSP_SCRSTRUCNAME
Optional: No
Call by Reference: Yes

ET_FIELDGRP_T - Internal Table for CRMC_FIELDGRP_T

Data type: CRMT_DESIG_FIELDGRP_T
Optional: No
Call by Reference: Yes

ET_TOOLBARGC - Internal Table for CRMC_TOOLBARGC

Data type: CRMT_DESIG_TOOLBARGC
Optional: No
Call by Reference: Yes

ET_REGTABGRC - Internal Table for CRMC_REGTABGRC

Data type: CRMT_DESIG_REGTABGRC
Optional: No
Call by Reference: Yes

ET_BSP_EVENT_T - Internal Table for CRMC_BSP_EVENT_T

Data type: CRMT_DESIG_BSP_EVENT_T
Optional: No
Call by Reference: Yes

ET_LAYOUTC - Internal Table for CRMC_LAYOUTC

Data type: CRMT_DESIG_LAYOUTC
Optional: No
Call by Reference: Yes

ET_FIELDGRPC - Internal Table for CRMC_FIELDGRPC

Data type: CRMT_DESIG_FIELDGRPC
Optional: No
Call by Reference: Yes

ET_LISTCOLC - Internal Table for CRMC_LISTCOLC

Data type: CRMT_DESIG_LISTCOLC
Optional: No
Call by Reference: Yes

ET_DFIES_SCRSTR - Designer Integration: Extract of DFIES Fields Required

Data type: CRMT_BSP_DESIG_DFIES_T
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ERROR_READ_DATA -

Data type:
Optional: No
Call by Reference: Yes

ERROR_SCREEN_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

ERROR_READ_DDIC -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CRM_BSP_DESIG_XML_DATA_READ Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_iv_application  TYPE CRMT_BSP_APPL, "   
lv_error_read_data  TYPE CRMT_BSP_APPL, "   
lv_ev_screenstructure  TYPE CRMT_BSP_SCRSTRUCNAME, "   
lv_iv_blview  TYPE CRMT_BSP_BLVIEW, "   
lv_et_fieldgrp_t  TYPE CRMT_DESIG_FIELDGRP_T, "   
lv_error_screen_not_found  TYPE CRMT_DESIG_FIELDGRP_T, "   
lv_iv_event  TYPE CRMT_BSP_EVENT, "   
lv_et_toolbargc  TYPE CRMT_DESIG_TOOLBARGC, "   
lv_error_read_ddic  TYPE CRMT_DESIG_TOOLBARGC, "   
lv_et_regtabgrc  TYPE CRMT_DESIG_REGTABGRC, "   
lv_iv_screenposition  TYPE CRMT_BSP_SCRPOSITION, "   
lv_et_bsp_event_t  TYPE CRMT_DESIG_BSP_EVENT_T, "   
lv_iv_screenvariant  TYPE CRMT_BSP_SCRVARIANT, "   
lv_et_layoutc  TYPE CRMT_DESIG_LAYOUTC, "   
lv_et_fieldgrpc  TYPE CRMT_DESIG_FIELDGRPC, "   
lv_et_listcolc  TYPE CRMT_DESIG_LISTCOLC, "   
lv_et_dfies_scrstr  TYPE CRMT_BSP_DESIG_DFIES_T. "   

  CALL FUNCTION 'CRM_BSP_DESIG_XML_DATA_READ'  "Designer Integration: Read Table Data
    EXPORTING
         IV_APPLICATION = lv_iv_application
         IV_BLVIEW = lv_iv_blview
         IV_EVENT = lv_iv_event
         IV_SCREENPOSITION = lv_iv_screenposition
         IV_SCREENVARIANT = lv_iv_screenvariant
    IMPORTING
         EV_SCREENSTRUCTURE = lv_ev_screenstructure
         ET_FIELDGRP_T = lv_et_fieldgrp_t
         ET_TOOLBARGC = lv_et_toolbargc
         ET_REGTABGRC = lv_et_regtabgrc
         ET_BSP_EVENT_T = lv_et_bsp_event_t
         ET_LAYOUTC = lv_et_layoutc
         ET_FIELDGRPC = lv_et_fieldgrpc
         ET_LISTCOLC = lv_et_listcolc
         ET_DFIES_SCRSTR = lv_et_dfies_scrstr
    EXCEPTIONS
        ERROR_READ_DATA = 1
        ERROR_SCREEN_NOT_FOUND = 2
        ERROR_READ_DDIC = 3
. " CRM_BSP_DESIG_XML_DATA_READ




ABAP code using 7.40 inline data declarations to call FM CRM_BSP_DESIG_XML_DATA_READ

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!