SAP C_DESK_GET_DOCS_TRAFOS_BBOXES Function Module for NOTRANSL: Callback zum Refresh der CAD-Sicht (bei Checkin, auch mit Mengen









C_DESK_GET_DOCS_TRAFOS_BBOXES is a standard c desk get docs trafos bboxes SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Callback zum Refresh der CAD-Sicht (bei Checkin, auch mit Mengen 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 c desk get docs trafos bboxes FM, simply by entering the name C_DESK_GET_DOCS_TRAFOS_BBOXES into the relevant SAP transaction such as SE37 or SE38.

Function Group: CDESK
Program Name: SAPLCDESK
Main Program: SAPLCDESK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function C_DESK_GET_DOCS_TRAFOS_BBOXES 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 'C_DESK_GET_DOCS_TRAFOS_BBOXES'"NOTRANSL: Callback zum Refresh der CAD-Sicht (bei Checkin, auch mit Mengen
EXPORTING
* GET_DRAWINGS = ' ' "Checkbox
* GET_REFERENCES = ' ' "Checkbox
* INI_EXPL_LEVEL_IM = 'X' "CDESK: Checkbox
* IV_CHANGE_QUANTITIES = ' ' "Attribute Value for CAD Parameter

IMPORTING
EV_QUANTITY_OR_SORTSTR_CHANGED = "Checkbox
EV_VERSION = "Numeric 1-character

TABLES
* IT_DOCUMENTS = "CAD Desktop: Structured Document Data
ET_DOCUMENTS = "CAD Desktop: Structured Document Data
* ET_TRANSFORMATIONS = "CAD Desktop: Transformation Matrixes from CAD System
* ET_BOUNDINGBOXES = "CDESK: Bounding Boxes from CAD System

EXCEPTIONS
COMMUNICATION_FAILURE = 1 SYSTEM_FAILURE = 2
.



IMPORTING Parameters details for C_DESK_GET_DOCS_TRAFOS_BBOXES

GET_DRAWINGS - Checkbox

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GET_REFERENCES - Checkbox

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

INI_EXPL_LEVEL_IM - CDESK: Checkbox

Data type: CDESK_FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_CHANGE_QUANTITIES - Attribute Value for CAD Parameter

Data type: CDESK_D_VALUE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for C_DESK_GET_DOCS_TRAFOS_BBOXES

EV_QUANTITY_OR_SORTSTR_CHANGED - Checkbox

Data type: XFELD
Optional: No
Call by Reference: No ( called with pass by value option)

EV_VERSION - Numeric 1-character

Data type: NUM1
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for C_DESK_GET_DOCS_TRAFOS_BBOXES

IT_DOCUMENTS - CAD Desktop: Structured Document Data

Data type: SDOCUMENT
Optional: Yes
Call by Reference: Yes

ET_DOCUMENTS - CAD Desktop: Structured Document Data

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

ET_TRANSFORMATIONS - CAD Desktop: Transformation Matrixes from CAD System

Data type: CDESK_TRAFO_TYPE_CAD
Optional: Yes
Call by Reference: Yes

ET_BOUNDINGBOXES - CDESK: Bounding Boxes from CAD System

Data type: CDESK_BBOX_TYPE_CAD
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

COMMUNICATION_FAILURE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

SYSTEM_FAILURE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for C_DESK_GET_DOCS_TRAFOS_BBOXES 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_get_drawings  TYPE XFELD, "   SPACE
lt_it_documents  TYPE STANDARD TABLE OF SDOCUMENT, "   
lv_communication_failure  TYPE SDOCUMENT, "   
lv_ev_quantity_or_sortstr_changed  TYPE XFELD, "   
lv_ev_version  TYPE NUM1, "   
lt_et_documents  TYPE STANDARD TABLE OF SDOCUMENT, "   
lv_get_references  TYPE XFELD, "   SPACE
lv_system_failure  TYPE XFELD, "   
lv_ini_expl_level_im  TYPE CDESK_FLAG, "   'X'
lt_et_transformations  TYPE STANDARD TABLE OF CDESK_TRAFO_TYPE_CAD, "   
lt_et_boundingboxes  TYPE STANDARD TABLE OF CDESK_BBOX_TYPE_CAD, "   
lv_iv_change_quantities  TYPE CDESK_D_VALUE. "   SPACE

  CALL FUNCTION 'C_DESK_GET_DOCS_TRAFOS_BBOXES'  "NOTRANSL: Callback zum Refresh der CAD-Sicht (bei Checkin, auch mit Mengen
    EXPORTING
         GET_DRAWINGS = lv_get_drawings
         GET_REFERENCES = lv_get_references
         INI_EXPL_LEVEL_IM = lv_ini_expl_level_im
         IV_CHANGE_QUANTITIES = lv_iv_change_quantities
    IMPORTING
         EV_QUANTITY_OR_SORTSTR_CHANGED = lv_ev_quantity_or_sortstr_changed
         EV_VERSION = lv_ev_version
    TABLES
         IT_DOCUMENTS = lt_it_documents
         ET_DOCUMENTS = lt_et_documents
         ET_TRANSFORMATIONS = lt_et_transformations
         ET_BOUNDINGBOXES = lt_et_boundingboxes
    EXCEPTIONS
        COMMUNICATION_FAILURE = 1
        SYSTEM_FAILURE = 2
. " C_DESK_GET_DOCS_TRAFOS_BBOXES




ABAP code using 7.40 inline data declarations to call FM C_DESK_GET_DOCS_TRAFOS_BBOXES

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.

DATA(ld_get_drawings) = ' '.
 
 
 
 
 
 
DATA(ld_get_references) = ' '.
 
 
DATA(ld_ini_expl_level_im) = 'X'.
 
 
 
DATA(ld_iv_change_quantities) = ' '.
 


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!