|
Example:
input = 00000000000123
output = 123
|
CONVERT_ABAPSPOOLJOB_2_PDF | convert abap spool output to PDF |
|
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.
|
CONVERT_OTFSPOOLJOB_2_PDF | converts a OTF spool to PDF (i.e. Sapscript document) |
|
CONVERT_TO_FOREIGN_CURRENCY | Convert local currency to foreign currency. |
|
CONVERT_TO_LOCAL_CURRENCY | Convert from foreign currency to local currency |
|
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. |
|
DATE_COMPUTE_DAY | Returns a number indicating what day of the week the date falls on. Monday is returned as a 1, Tuesday as 2, etc. |
|
DATE_GET_WEEK | will return the week that a date is in. |
|
DATE_IN_FUTURE | Calculate a date N days in the future. |
|
DATE_TO_DAY | Converts a date in internal format to a text description of a day. For example 20030529 returns Thursday |
|
DAY_ATTRIBUTES_GET | Return useful information about a day. Will tell you the day of the week as a word (Tuesday), the day of the week (2 would be Tuedsay), whether the day is a holiday, and more.(provided by Francois Henrotte) |
|
DOWNLOAD | download a file to the presentation server (PC) |
|
DYNP_VALUES_READ | Read the values from a dynpro. This function can be used to read the values from a report's selection screen too (Another example). |