F4IF_SHLP_EXIT_EXAMPLE | documents the different reasons to use a search help exit, and shows how it is done. |
|
F4IP_INT_TABLE_VALUE_REQUEST | This function does not exist in 4.6 and above. Use F4IF_INT_TABLE_VALUE_REQUEST instead. |
|
FILENAME_GET | popup to get a filename from a user, returns blank filename if user selects cancel |
|
FM_SELECTION_CRITERIA_PRINT | Print out selection criteria. Nicley formatted. |
|
|
FORMAT_MESSAGE | Takes a message id and number, and puts it into a variable. Works better than WRITE_MESSAGE, since some messages use $ as a place holder, and WRITE_MESSAGE does not accommadate
that, it only replaces the ampersands (&) in the message. |
|
FTP_COMMAND | Execute a command on the FTP server |
|
FTP_CONNECT | Open a connection (and log in) to an FTP server |
|
FTP_DISCONNECT | Close the connection (and log off) the FTP server |
|
FU CSAP_MAT_BOM_READ | You can use this function module to display simple material BOMs. You
cannot display BOM groups (for example, all variants of a variant BOM). as in transaction CS03.
Current restrictions:
You cannot display long texts.
You cannot display sub-items.
You cannot display classification data of BOM items for batches.
You can only display one alternative or variant. You cannot enter an alternative for module CSAP_MAT_BOM_READ, so you always see alternative 01.
The following example came from a posting on the SAP-R3-L mailing list.
|
|
Example:
data: begin of tstk2 occurs 0.
include structure stko_api02.
data: end of tstk2.
data: begin of tstp2 occurs 0.
include structure stpo_api02.
data: end of tstp2.
data: begin of tdep_data occurs 0.
include structure csdep_data.
data: end of tdep_data.
data: begin of tdep_descr occurs 0.
include structure csdep_descr.
data: end of tdep_descr.
data: begin of tdep_source occurs 0.
include structure csdep_source.
data: end of tdep_source.
data: begin of tdep_order occurs 0.
include structure csdep_order.
data: end of tdep_order.
data: begin of tdep_doc occurs 0.
include structure csdep_doc.
data: end of tdep_doc.
data: flg_warning like capiflag-flwarning.
call function 'CSAP_MAT_BOM_READ'
exporting
material = 'MAT100'
plant = '0001'
bom_usage = '1'
valid_from = '20.12.1996'
* valid_to
importing
fl_warning = flg_warning
tables
t_stko = tstk2
t_stpo = tstp2
t_dep_data = tdep_data
t_dep_descr = tdep_descr
t_dep_source = tdep_source
t_dep_order = tdep_order
t_dep_doc = tdep_doc
exceptions
error = 1.
|