SAP 2002_NETWORK_CREATE Function Module for NOTRANSL: creates a new network









2002_NETWORK_CREATE is a standard 2002 network create 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: creates a new network 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 2002 network create FM, simply by entering the name 2002_NETWORK_CREATE into the relevant SAP transaction such as SE37 or SE38.

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



Function 2002_NETWORK_CREATE 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 '2002_NETWORK_CREATE'"NOTRANSL: creates a new network
EXPORTING
NETWORK_TYPE = "Order category for networks
NETWORK_PLANT = "Plant
MRP_CONTROLLER = "MRP controller for the order
NETWORK_PROFILE = "Network profile
* DESCRIPTION = "Description

IMPORTING
NETWORK = "Order Number

TABLES
* I_BI_DATA = "Batch Input: New Table Field Structure
.



IMPORTING Parameters details for 2002_NETWORK_CREATE

NETWORK_TYPE - Order category for networks

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

NETWORK_PLANT - Plant

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

MRP_CONTROLLER - MRP controller for the order

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

NETWORK_PROFILE - Network profile

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

DESCRIPTION - Description

Data type: CAUFVD-KTEXT
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for 2002_NETWORK_CREATE

NETWORK - Order Number

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

TABLES Parameters details for 2002_NETWORK_CREATE

I_BI_DATA - Batch Input: New Table Field Structure

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

Copy and paste ABAP code example for 2002_NETWORK_CREATE 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_network  TYPE CAUFVD-AUFNR, "   
lt_i_bi_data  TYPE STANDARD TABLE OF BDCDATA, "   
lv_network_type  TYPE AUFPAR-PS_AUFART, "   
lv_network_plant  TYPE CAUFVD-WERKS, "   
lv_mrp_controller  TYPE CAUFVD-DISPO, "   
lv_network_profile  TYPE CAUFVD-PROFID, "   
lv_description  TYPE CAUFVD-KTEXT. "   

  CALL FUNCTION '2002_NETWORK_CREATE'  "NOTRANSL: creates a new network
    EXPORTING
         NETWORK_TYPE = lv_network_type
         NETWORK_PLANT = lv_network_plant
         MRP_CONTROLLER = lv_mrp_controller
         NETWORK_PROFILE = lv_network_profile
         DESCRIPTION = lv_description
    IMPORTING
         NETWORK = lv_network
    TABLES
         I_BI_DATA = lt_i_bi_data
. " 2002_NETWORK_CREATE




ABAP code using 7.40 inline data declarations to call FM 2002_NETWORK_CREATE

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.

"SELECT single AUFNR FROM CAUFVD INTO @DATA(ld_network).
 
 
"SELECT single PS_AUFART FROM AUFPAR INTO @DATA(ld_network_type).
 
"SELECT single WERKS FROM CAUFVD INTO @DATA(ld_network_plant).
 
"SELECT single DISPO FROM CAUFVD INTO @DATA(ld_mrp_controller).
 
"SELECT single PROFID FROM CAUFVD INTO @DATA(ld_network_profile).
 
"SELECT single KTEXT FROM CAUFVD INTO @DATA(ld_description).
 


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!