SAP SD_PARTNER_SUBSCREEN_1000_INIT Function Module for NOTRANSL: Initialisierung des Subscreens 1000 'SD_PARTNER_OVERVIEW'









SD_PARTNER_SUBSCREEN_1000_INIT is a standard sd partner subscreen 1000 init 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: Initialisierung des Subscreens 1000 'SD_PARTNER_OVERVIEW' 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 sd partner subscreen 1000 init FM, simply by entering the name SD_PARTNER_SUBSCREEN_1000_INIT into the relevant SAP transaction such as SE37 or SE38.

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



Function SD_PARTNER_SUBSCREEN_1000_INIT 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 'SD_PARTNER_SUBSCREEN_1000_INIT'"NOTRANSL: Initialisierung des Subscreens 1000 'SD_PARTNER_OVERVIEW'
EXPORTING
* FIF_ACTIVE = 'X' "Display/Change
* FIF_INCOMPLETION_LOG = ' ' "
* FIF_FILTER_LBOX = ' ' "Display Listbox
* FIF_ACT_FILTER = 'PARALL' "Current Filter
* FIF_POS = '000000' "Item
* FIF_VAR = 'VAR_1' "Layout
FIF_PAPROC_H = "
* FIF_PAPROC_I = "
* FIS_VBUV = ' ' "
* FIF_POS_DISPLAY_ONLY = ' ' "
FIC_OBJECTTYPE = "
* FIF_STANDARD = 'X' "
FIC_OBJECTKEY = "
* FIS_SDORGDATA = ' ' "
* FIF_NO_ERROR_MESSAGES = ' ' "Do not display error messages
* FIF_KNREF_PARNR = ' ' "
* FIF_TELEF = ' ' "
* FIF_FAXF = ' ' "
* FIF_MASTER = ' ' "
* FIF_CSTO = 'X' "
* FIF_ALTERN = ' ' "
* FIF_INFO = ' ' "
* FIF_DETERM_LOG = ' ' "

TABLES
* FIT_FUNC = "
FIT_FILTER = "Table of Filters

EXCEPTIONS
PARTNER_PROC_HEADER_REQUIRED = 1 PARTNER_PROCEDURES_REQUIRED = 2 MISSING_REQUIRED_VALUES = 3
.



IMPORTING Parameters details for SD_PARTNER_SUBSCREEN_1000_INIT

FIF_ACTIVE - Display/Change

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

FIF_INCOMPLETION_LOG -

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

FIF_FILTER_LBOX - Display Listbox

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

FIF_ACT_FILTER - Current Filter

Data type: TEXT6
Default: 'PARALL'
Optional: No
Call by Reference: No ( called with pass by value option)

FIF_POS - Item

Data type: VBPA-POSNR
Default: '000000'
Optional: No
Call by Reference: No ( called with pass by value option)

FIF_VAR - Layout

Data type: TEXT6
Default: 'VAR_1'
Optional: No
Call by Reference: No ( called with pass by value option)

FIF_PAPROC_H -

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

FIF_PAPROC_I -

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

FIS_VBUV -

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

FIF_POS_DISPLAY_ONLY -

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

FIC_OBJECTTYPE -

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

FIF_STANDARD -

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

FIC_OBJECTKEY -

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

FIS_SDORGDATA -

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

FIF_NO_ERROR_MESSAGES - Do not display error messages

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

FIF_KNREF_PARNR -

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

FIF_TELEF -

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

FIF_FAXF -

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

FIF_MASTER -

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

FIF_CSTO -

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

FIF_ALTERN -

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

FIF_INFO -

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

FIF_DETERM_LOG -

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

TABLES Parameters details for SD_PARTNER_SUBSCREEN_1000_INIT

FIT_FUNC -

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

FIT_FILTER - Table of Filters

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

EXCEPTIONS details

PARTNER_PROC_HEADER_REQUIRED -

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

PARTNER_PROCEDURES_REQUIRED -

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

MISSING_REQUIRED_VALUES -

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

Copy and paste ABAP code example for SD_PARTNER_SUBSCREEN_1000_INIT 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:
lt_fit_func  TYPE STANDARD TABLE OF ICON, "   
lv_fif_active  TYPE XFELD, "   'X'
lv_partner_proc_header_required  TYPE XFELD, "   
lv_fif_incompletion_log  TYPE XFELD, "   SPACE
lv_fif_filter_lbox  TYPE XFELD, "   SPACE
lv_fif_act_filter  TYPE TEXT6, "   'PARALL'
lv_fif_pos  TYPE VBPA-POSNR, "   '000000'
lv_fif_var  TYPE TEXT6, "   'VAR_1'
lv_fif_paproc_h  TYPE TPAER-PARGR, "   
lv_fif_paproc_i  TYPE TPAER-PARGR, "   
lv_fis_vbuv  TYPE VBUVVB, "   SPACE
lv_fif_pos_display_only  TYPE XFELD, "   SPACE
lv_fic_objecttype  TYPE SWO_OBJTYP, "   
lt_fit_filter  TYPE STANDARD TABLE OF TPAFILTER, "   
lv_fif_standard  TYPE XFELD, "   'X'
lv_partner_procedures_required  TYPE XFELD, "   
lv_fic_objectkey  TYPE SWO_TYPEID, "   
lv_fis_sdorgdata  TYPE SDORGDATA, "   SPACE
lv_fif_no_error_messages  TYPE XFELD, "   SPACE
lv_fif_knref_parnr  TYPE SD_PARTNER_PARNR, "   SPACE
lv_fif_telef  TYPE XFELD, "   SPACE
lv_missing_required_values  TYPE XFELD, "   
lv_fif_faxf  TYPE XFELD, "   SPACE
lv_fif_master  TYPE XFELD, "   SPACE
lv_fif_csto  TYPE XFELD, "   'X'
lv_fif_altern  TYPE XFELD, "   SPACE
lv_fif_info  TYPE XFELD, "   SPACE
lv_fif_determ_log  TYPE XFELD. "   SPACE

  CALL FUNCTION 'SD_PARTNER_SUBSCREEN_1000_INIT'  "NOTRANSL: Initialisierung des Subscreens 1000 'SD_PARTNER_OVERVIEW'
    EXPORTING
         FIF_ACTIVE = lv_fif_active
         FIF_INCOMPLETION_LOG = lv_fif_incompletion_log
         FIF_FILTER_LBOX = lv_fif_filter_lbox
         FIF_ACT_FILTER = lv_fif_act_filter
         FIF_POS = lv_fif_pos
         FIF_VAR = lv_fif_var
         FIF_PAPROC_H = lv_fif_paproc_h
         FIF_PAPROC_I = lv_fif_paproc_i
         FIS_VBUV = lv_fis_vbuv
         FIF_POS_DISPLAY_ONLY = lv_fif_pos_display_only
         FIC_OBJECTTYPE = lv_fic_objecttype
         FIF_STANDARD = lv_fif_standard
         FIC_OBJECTKEY = lv_fic_objectkey
         FIS_SDORGDATA = lv_fis_sdorgdata
         FIF_NO_ERROR_MESSAGES = lv_fif_no_error_messages
         FIF_KNREF_PARNR = lv_fif_knref_parnr
         FIF_TELEF = lv_fif_telef
         FIF_FAXF = lv_fif_faxf
         FIF_MASTER = lv_fif_master
         FIF_CSTO = lv_fif_csto
         FIF_ALTERN = lv_fif_altern
         FIF_INFO = lv_fif_info
         FIF_DETERM_LOG = lv_fif_determ_log
    TABLES
         FIT_FUNC = lt_fit_func
         FIT_FILTER = lt_fit_filter
    EXCEPTIONS
        PARTNER_PROC_HEADER_REQUIRED = 1
        PARTNER_PROCEDURES_REQUIRED = 2
        MISSING_REQUIRED_VALUES = 3
. " SD_PARTNER_SUBSCREEN_1000_INIT




ABAP code using 7.40 inline data declarations to call FM SD_PARTNER_SUBSCREEN_1000_INIT

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_fif_active) = 'X'.
 
 
DATA(ld_fif_incompletion_log) = ' '.
 
DATA(ld_fif_filter_lbox) = ' '.
 
DATA(ld_fif_act_filter) = 'PARALL'.
 
"SELECT single POSNR FROM VBPA INTO @DATA(ld_fif_pos).
DATA(ld_fif_pos) = '000000'.
 
DATA(ld_fif_var) = 'VAR_1'.
 
"SELECT single PARGR FROM TPAER INTO @DATA(ld_fif_paproc_h).
 
"SELECT single PARGR FROM TPAER INTO @DATA(ld_fif_paproc_i).
 
DATA(ld_fis_vbuv) = ' '.
 
DATA(ld_fif_pos_display_only) = ' '.
 
 
 
DATA(ld_fif_standard) = 'X'.
 
 
 
DATA(ld_fis_sdorgdata) = ' '.
 
DATA(ld_fif_no_error_messages) = ' '.
 
DATA(ld_fif_knref_parnr) = ' '.
 
DATA(ld_fif_telef) = ' '.
 
 
DATA(ld_fif_faxf) = ' '.
 
DATA(ld_fif_master) = ' '.
 
DATA(ld_fif_csto) = 'X'.
 
DATA(ld_fif_altern) = ' '.
 
DATA(ld_fif_info) = ' '.
 
DATA(ld_fif_determ_log) = ' '.
 


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!