SAP SAVE_ASSET_BLUERPRINT Function Module for









SAVE_ASSET_BLUERPRINT is a standard save asset bluerprint SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 save asset bluerprint FM, simply by entering the name SAVE_ASSET_BLUERPRINT into the relevant SAP transaction such as SE37 or SE38.

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



Function SAVE_ASSET_BLUERPRINT 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 'SAVE_ASSET_BLUERPRINT'"
EXPORTING
* IT_BLUEPRINT = "
* IT_REGTABGRP = "
* IT_REGTABGRP_T = "
* IT_VIEW = "
* IT_VIEW_T = "
* IT_APPL = "
* IT_APPL_T = "
* IT_EVENT = "
* IT_EVENT_T = "
* IT_FIELDGRE = "
* IT_FIELDGRP_T = "
* IT_FIELDGRP = "
* IT_RGTABGRE = "
.



IMPORTING Parameters details for SAVE_ASSET_BLUERPRINT

IT_BLUEPRINT -

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

IT_REGTABGRP -

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

IT_REGTABGRP_T -

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

IT_VIEW -

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

IT_VIEW_T -

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

IT_APPL -

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

IT_APPL_T -

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

IT_EVENT -

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

IT_EVENT_T -

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

IT_FIELDGRE -

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

IT_FIELDGRP_T -

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

IT_FIELDGRP -

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

IT_RGTABGRE -

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

Copy and paste ABAP code example for SAVE_ASSET_BLUERPRINT 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_it_blueprint  TYPE CRMT_BSP_BLUEPRINT_TAB, "   
lv_it_regtabgrp  TYPE CRMT_BSP_REGTABGRP_TAB, "   
lv_it_regtabgrp_t  TYPE CRMT_BSP_REGTABGRP_T_TAB, "   
lv_it_view  TYPE CRMT_BSP_BL_VIEW_TAB, "   
lv_it_view_t  TYPE CRMT_BSP_BL_VIEW_T_TAB, "   
lv_it_appl  TYPE CRMT_BSP_BL_APPL_TAB, "   
lv_it_appl_t  TYPE CRMT_BL_APPL_T_TAB, "   
lv_it_event  TYPE CRMT_BSP_EVENT_TAB, "   
lv_it_event_t  TYPE CRMT_BSP_EVENT_T_TAB, "   
lv_it_fieldgre  TYPE CRMT_BSP_FIELDGRE_TAB, "   
lv_it_fieldgrp_t  TYPE CRMT_FIELDGRP_T_TAB, "   
lv_it_fieldgrp  TYPE CRMT_FIELDGRP_TAB, "   
lv_it_rgtabgre  TYPE CRMT_BSP_RGTABGRE_TAB. "   

  CALL FUNCTION 'SAVE_ASSET_BLUERPRINT'  "
    EXPORTING
         IT_BLUEPRINT = lv_it_blueprint
         IT_REGTABGRP = lv_it_regtabgrp
         IT_REGTABGRP_T = lv_it_regtabgrp_t
         IT_VIEW = lv_it_view
         IT_VIEW_T = lv_it_view_t
         IT_APPL = lv_it_appl
         IT_APPL_T = lv_it_appl_t
         IT_EVENT = lv_it_event
         IT_EVENT_T = lv_it_event_t
         IT_FIELDGRE = lv_it_fieldgre
         IT_FIELDGRP_T = lv_it_fieldgrp_t
         IT_FIELDGRP = lv_it_fieldgrp
         IT_RGTABGRE = lv_it_rgtabgre
. " SAVE_ASSET_BLUERPRINT




ABAP code using 7.40 inline data declarations to call FM SAVE_ASSET_BLUERPRINT

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!