Ansicht
Dokumentation

F4_MACO_MULTI_OBJECT_IDS - Choice of IDs from several MC objects

F4_MACO_MULTI_OBJECT_IDS - Choice of IDs from several MC objects

BAL_S_LOG - Application Log: Log header data   Fill RESBD Structure from EBP Component Structure  
This documentation is copyright by SAP AG.
SAP E-Book

Functionality

Display a list of Matchcode objects with several IDs each. The direct call of the standard Matchcode help is controlled via an import parameter.

Example
report multmcob.

type-pools: f4typ.

data: liste type f4typ_mc_mult_obj_ids occurs 0 with header line.
data: mc_return like rsmdy2-mcfldvals,
return type f4typ_mult_obj_id_return.


move '1' to liste-pseudo_id.
move 'DEBI' to liste-obj_description-mconame.
move 'A' to liste-obj_description-mcid.
move 'Test DEBI A' to liste-obj_description-mctext.
append liste.

move '2' to liste-pseudo_id.
move 'DEBI' to liste-obj_description-mconame.
move 'B' to liste-obj_description-mcid.
move 'Test DEBI B' to liste-obj_description-mctext.
append liste.

move '3' to liste-pseudo_id.
move 'KRED' to liste-obj_description-mconame.
move 'A' to liste-obj_description-mcid.
move 'Test KRED A' to liste-obj_description-mctext.
append liste.

call function 'F4_MACO_MULTI_OBJECT_IDS'
exporting
f4_maco_exec = 'X'
titel = 'Multiobjects'
importing
return_value = return
f4_maco_return = mc_return
tables
list_of_objs_and_ids = liste
exceptions
unknown_id = 1
user_cancel = 2
no_data_found = 3
internal_error = 4
others = 5.

Notes

Further information





Parameters

DISPLAY_ONLY
F4_MACO_EXEC
F4_MACO_RETURN
LIST_OF_OBJS_AND_IDS
RETURN_VALUE
TITEL

Exceptions

INTERNAL_ERROR
NO_DATA_FOUND
UNKNOWN_ID
USER_CANCEL

Function Group

SHL3

BAL Application Log Documentation   PERFORM Short Reference  
This documentation is copyright by SAP AG.

Length: 2007 Date: 20240523 Time: 065512     sap01-206 ( 30 ms )