0% found this document useful (0 votes)
201 views

Function Modules

This document describes several SAP function modules, including DYNP_VALUES_READ, DYNP_VALUES_UPDATE, and F4IF_INT_TABLE_VALUE_REQUEST which are used to read and update field values without events and send data for search helps, ERGO_TEXT_SHOW which displays online help, POPUP_TO_CONFIRM which shows confirmation dialogs, and GUI_UPLOAD and GUI_DOWNLOAD which upload and download files from the application server. Several other function modules are also described for functions like search helps, icons, scrolling, sending emails, and checking active sessions.

Uploaded by

Mazin Mahmood
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
201 views

Function Modules

This document describes several SAP function modules, including DYNP_VALUES_READ, DYNP_VALUES_UPDATE, and F4IF_INT_TABLE_VALUE_REQUEST which are used to read and update field values without events and send data for search helps, ERGO_TEXT_SHOW which displays online help, POPUP_TO_CONFIRM which shows confirmation dialogs, and GUI_UPLOAD and GUI_DOWNLOAD which upload and download files from the application server. Several other function modules are also described for functions like search helps, icons, scrolling, sending emails, and checking active sessions.

Uploaded by

Mazin Mahmood
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

DYNP_VALUES_READ : This function module is used to read the field values from

the screen with out raising PAI event.

DYNP_VALUES_UPDATE: This function module is used to update the field values


from the screen with out raising PBO event.

F4IF_INT_TABLE_VALUE_REQUEST: This function module is used to send the


required data through internal table for the ‘F4’ search help.

DYNP_GET_STEPL: This function module is used to read the loop count in the table
control.

HELP_VALUES_GET_WITH_DD_NAME

HELP_VALUES_GET_NO_DD_NAME

HELP_VALUES_GET_WITH_TABLE_EXT

TRANSFER_NAMES_TO_FIELDS

ERGO_TEXT_SHOW: This function module is used to show the online manual help
for the screens or GUI.

POPUP_TO_CONFIRM: This function module is used to show confirmation dialog


window to the user.

DP_CREATE_URL To create the URL.

POPUP_TO_CONFIRM_DEL: To delete confirmation.

F4UT_PARAMETER_RESULTS_PUT: This function module is used to put distinct


values in Search help object field. This function module has to call in Search help exit
function module.

F4UT_PARAMETER_VALUE_GET:
F4UT_PARAMETER_ALLOCATE: These two function modules are also used for
the Search help exit function module purpose.

F4_FILENAME: The function module is used to select the file path.

LOAN_TABLECONTROL_SCROLLING: This function module is used to set the


scroll bar in the table control.
ICON_CREATE: This function module is used to create icon in the screen fields. For
example if the record deleted if you want to show the delete status as icon then we can
user.

ALSM_EXCEL_TO_INTERNAL_TABLE: Function Module to read directly from a


Excel File

GUI_UPLOAD : This function module is used to upload data from the Application server

GUI_DOWNLOAD: This function module is used to download from the Application


server.

RH_OBJID_REQUEST: This Function returns Structured Search Help for the field.

CA_OFFICE_SEND_OBJECT_INSTANCE /
SO_SEND_OBJECT : To send mails from SAP to SAP (or) SAP to INTERNET.

SAPGUI_SET_FUNCTIONCODE : This module simulates user input in the command


field. This enables you to run screen sequences without user input i.e., We can raise the
function code of a screen A (say) from PBO of another screen say B, without the user
having to explicitly raise a PAI event on screen A.
Note: Few platforms do not support this module in which case u have to handle the
Exception and SUPPRESS DIALOG.

DATE_GET_WEEK: Input Parameter: Date, Return Value: Day of the week.

CALL FUNCTION 'TH_USER_INFO'


IMPORTING
ACT_SESSIONS = l_act_sessions
MAX_SESSIONS = l_max_sessions.
IF l_act_sessions < l_max_sessions.
ERROR
ENDIF : To know the number of sessions opened.

You might also like