SAP FVVD_DEACTIVATE_SCREENS Function Module for Hide Loan Master Data Tab Page
FVVD_DEACTIVATE_SCREENS is a standard fvvd deactivate screens SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Hide Loan Master Data Tab Page 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 fvvd deactivate screens FM, simply by entering the name FVVD_DEACTIVATE_SCREENS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVVD_DEACTIVATE_SCRRENS
Program Name: SAPLFVVD_DEACTIVATE_SCRRENS
Main Program: SAPLFVVD_DEACTIVATE_SCRRENS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVVD_DEACTIVATE_SCREENS 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 'FVVD_DEACTIVATE_SCREENS'"Hide Loan Master Data Tab Page.
EXPORTING
I_TZPA = "Financial Assets Management Product Types
I_TZPAB = "Financial Assets Management product types
I_AUSWAHL = "Financial Assets Management field selection string
* I_AUSWAHL_B = "Financial Assets Management field selection string
* I_MUSTERDARLEHEN = ' ' "Sample Loan
* I_STATUS = "Status
* I_FVD_LOAN_MASTERDATA = "
IMPORTING
E_BEZ_USER_EXIT = "Short Text
E_HIDDEN_SCREENS = "SY-TCODE für ausgeblendete Tabreiter
IMPORTING Parameters details for FVVD_DEACTIVATE_SCREENS
I_TZPA - Financial Assets Management Product Types
Data type: TZPAOptional: No
Call by Reference: Yes
I_TZPAB - Financial Assets Management product types
Data type: TZPABOptional: No
Call by Reference: Yes
I_AUSWAHL - Financial Assets Management field selection string
Data type: VVFEAUSOptional: No
Call by Reference: Yes
I_AUSWAHL_B - Financial Assets Management field selection string
Data type: VVFEAUSOptional: Yes
Call by Reference: Yes
I_MUSTERDARLEHEN - Sample Loan
Data type:Default: ' '
Optional: No
Call by Reference: Yes
I_STATUS - Status
Data type: TZC37-INTEBOptional: Yes
Call by Reference: Yes
I_FVD_LOAN_MASTERDATA -
Data type: IF_EX_FVD_LOAN_MASTERDATAOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FVVD_DEACTIVATE_SCREENS
E_BEZ_USER_EXIT - Short Text
Data type: RMF67-XKBEZ9Optional: No
Call by Reference: Yes
E_HIDDEN_SCREENS - SY-TCODE für ausgeblendete Tabreiter
Data type: TABLEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVVD_DEACTIVATE_SCREENS 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_i_tzpa | TYPE TZPA, " | |||
| lv_e_bez_user_exit | TYPE RMF67-XKBEZ9, " | |||
| lv_i_tzpab | TYPE TZPAB, " | |||
| lv_e_hidden_screens | TYPE TABLE, " | |||
| lv_i_auswahl | TYPE VVFEAUS, " | |||
| lv_i_auswahl_b | TYPE VVFEAUS, " | |||
| lv_i_musterdarlehen | TYPE VVFEAUS, " ' ' | |||
| lv_i_status | TYPE TZC37-INTEB, " | |||
| lv_i_fvd_loan_masterdata | TYPE IF_EX_FVD_LOAN_MASTERDATA. " |
|   CALL FUNCTION 'FVVD_DEACTIVATE_SCREENS' "Hide Loan Master Data Tab Page |
| EXPORTING | ||
| I_TZPA | = lv_i_tzpa | |
| I_TZPAB | = lv_i_tzpab | |
| I_AUSWAHL | = lv_i_auswahl | |
| I_AUSWAHL_B | = lv_i_auswahl_b | |
| I_MUSTERDARLEHEN | = lv_i_musterdarlehen | |
| I_STATUS | = lv_i_status | |
| I_FVD_LOAN_MASTERDATA | = lv_i_fvd_loan_masterdata | |
| IMPORTING | ||
| E_BEZ_USER_EXIT | = lv_e_bez_user_exit | |
| E_HIDDEN_SCREENS | = lv_e_hidden_screens | |
| . " FVVD_DEACTIVATE_SCREENS | ||
ABAP code using 7.40 inline data declarations to call FM FVVD_DEACTIVATE_SCREENS
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 XKBEZ9 FROM RMF67 INTO @DATA(ld_e_bez_user_exit). | ||||
| DATA(ld_i_musterdarlehen) | = ' '. | |||
| "SELECT single INTEB FROM TZC37 INTO @DATA(ld_i_status). | ||||
Search for further information about these or an SAP related objects