BAP_DOCU_DOWNLOAD - Download ABAP documentation in HTML format. ARFC_GET_TID - will return the IP address of the terminal in hex.
A D V E R T I S E M E N T
BAL_* - All function modules used for SAP's application logging can be
found here. BP_EVENT_RAISE - Trigger an event from ABAP/4 program BP_JOBLOG_READ - Fetch job log executions CLOI_PUT_SIGN_IN_FRONT - Place the negative sign after a number. SAP
default is place the negative sign after the number. CLPB_EXPORT - Export a text table to the clipboard (on presentation
server) CLPB_IMPORT - Import a Text Table from the Clipboard (on presentation
server) COMMIT_TEXT - To load long text into SAP CONVERSION_EXIT_ALPHA_INPUT - converts any number into a string fill with
zeroes-right
example:
input = 123
output = 0000000000000...000000000000123 CONVERSION_EXIT_ALPHA_OUTPUT - converts any number with zeroes-right into a
simple integer
example:
input = 00000000000123
output = 123 CONVERT_OTF - Convert SAP documents (SAPScript) to other types.
example:
CALL FUNCTION 'CONVERT_OTF'
EXPORTING
FORMAT = 'PDF'
IMPORTING
BIN_FILESIZE = FILE_LEN
TABLES
OTF = OTFDATA
LINES = PDFDATA
EXCEPTIONS
ERR_MAX_LINEWIDTH = 1
ERR_FORMAT = 2
ERR_CONV_NOT_POSSIBLE = 3
OTHERS = 4. DATE_GET_WEEK - will return the week that a date is in. DATE_CHECK_PLAUSIBILITY - Check to see if a date is in a valid format for
SAP. Works well when validating dates being passed in from other systems. DOWNLOAD - download a file to the presentation server (PC) POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform
the user about a specific decision point during an action. POPUP_TO_CONFIRM_WITH_VALUE - Create a dialog box in which you make a
question whether the user wishes to perform a processing step with a particular
object. POPUP_TO_DECIDE - Provide user with several choices as radio buttons POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform
the user about a specific decision point via a diagnosis text. POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a
two-line message. POPUP_TO_SELECT_MONTH - Popup to choose a month POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to
select one, with the value of the table line returned when selected. PRICING - Return pricing conditions in an internal table. Use structure
TCOMK for parameter COMM_HEAD_1, and structure TCOMP for parameter
COMM_ITEM_1, and set CALCULATION_TYPE to B. The pricing conditions will be
returned in XOMV. You must fill TCOMP, and TCOMK with the appropriate values
before callling the function in order for it to work. PROFILE_GET - Read an Entry in an INI File on the frontend PROFILE_SET - Write an Entry in an INI File on the frontend READ_TEXT - To load long text into SAP REGISTRY_GET - Read an Entry from the Registry REGISTRY_SET - Set an entry in the Registry RFC_ABAP_INSTALL_AND_RUN - Runs an ABAP program that is stored in the
table PROGRAM when the MODE = 'F'. Table WRITES contains the ouput of the
program. Allows you to run a program without having the source code in the
target system. RH_GET_DATE_DAYNAME - return the day based on the date provied RH_START_EXCEL_WITH_DATA -starts Excel with the contents of an internal
table. This function finds Excel in the desktop registry. It also uses a local
PC working directory to save the file (that's what the "W" value for data path
flag does). Very transparent to user!