SAP SD_PARTNER_CPD_TXNUMBER_VIS Function Module for NOTRANSL: Anzeige Steuernummernfelder auf Attribute subscreen









SD_PARTNER_CPD_TXNUMBER_VIS is a standard sd partner cpd txnumber vis 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: Anzeige Steuernummernfelder auf Attribute subscreen 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 cpd txnumber vis FM, simply by entering the name SD_PARTNER_CPD_TXNUMBER_VIS into the relevant SAP transaction such as SE37 or SE38.

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



Function SD_PARTNER_CPD_TXNUMBER_VIS 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_CPD_TXNUMBER_VIS'"NOTRANSL: Anzeige Steuernummernfelder auf Attribute subscreen
EXPORTING
* FIF_VKORG = ' ' "Sales Organization

IMPORTING
FIF_STCD1_VIS = "
FIF_STCD2_VIS = "
FIF_STCD3_VIS = "
FIF_STCD4_VIS = "
FIF_STKZN_VIS = "
FIF_STCDT_VIS = "
FIF_J_1KFREPRE_VIS = "
FIF_J_1KFTBUS_VIS = "
FIF_J_1KFTIND_VIS = "
.



IMPORTING Parameters details for SD_PARTNER_CPD_TXNUMBER_VIS

FIF_VKORG - Sales Organization

Data type: VKORG
Default: SPACE
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for SD_PARTNER_CPD_TXNUMBER_VIS

FIF_STCD1_VIS -

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

FIF_STCD2_VIS -

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

FIF_STCD3_VIS -

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

FIF_STCD4_VIS -

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

FIF_STKZN_VIS -

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

FIF_STCDT_VIS -

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

FIF_J_1KFREPRE_VIS -

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

FIF_J_1KFTBUS_VIS -

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

FIF_J_1KFTIND_VIS -

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

Copy and paste ABAP code example for SD_PARTNER_CPD_TXNUMBER_VIS 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_fif_vkorg  TYPE VKORG, "   SPACE
lv_fif_stcd1_vis  TYPE XFLAG, "   
lv_fif_stcd2_vis  TYPE XFLAG, "   
lv_fif_stcd3_vis  TYPE XFLAG, "   
lv_fif_stcd4_vis  TYPE XFLAG, "   
lv_fif_stkzn_vis  TYPE XFLAG, "   
lv_fif_stcdt_vis  TYPE XFLAG, "   
lv_fif_j_1kfrepre_vis  TYPE XFLAG, "   
lv_fif_j_1kftbus_vis  TYPE XFLAG, "   
lv_fif_j_1kftind_vis  TYPE XFLAG. "   

  CALL FUNCTION 'SD_PARTNER_CPD_TXNUMBER_VIS'  "NOTRANSL: Anzeige Steuernummernfelder auf Attribute subscreen
    EXPORTING
         FIF_VKORG = lv_fif_vkorg
    IMPORTING
         FIF_STCD1_VIS = lv_fif_stcd1_vis
         FIF_STCD2_VIS = lv_fif_stcd2_vis
         FIF_STCD3_VIS = lv_fif_stcd3_vis
         FIF_STCD4_VIS = lv_fif_stcd4_vis
         FIF_STKZN_VIS = lv_fif_stkzn_vis
         FIF_STCDT_VIS = lv_fif_stcdt_vis
         FIF_J_1KFREPRE_VIS = lv_fif_j_1kfrepre_vis
         FIF_J_1KFTBUS_VIS = lv_fif_j_1kftbus_vis
         FIF_J_1KFTIND_VIS = lv_fif_j_1kftind_vis
. " SD_PARTNER_CPD_TXNUMBER_VIS




ABAP code using 7.40 inline data declarations to call FM SD_PARTNER_CPD_TXNUMBER_VIS

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_vkorg) = ' '.
 
 
 
 
 
 
 
 
 
 


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!