on 2023 Dec 15 1:48 PM
Hello guys,
I want to transfer the fields name_org1, post_code1 and city1 from General part of a role to the purchasing tab during the creation of vendor process.
How can I realize it?
The function module DYNP_VALUES_READ does not work for it.
CLEAR gs_dynpread.
gs_dynpread-fieldname = 'NAME_ORG1'.
APPEND gs_dynpread TO gt_dynpread.
CLEAR gs_dynpread.
CALL FUNCTION 'DYNP_VALUES_READ'
EXPORTING
dyname = 'SAPLBUD0'
dynumb = '1200'
translate_to_upper = 'X'
TABLES
dynpfields = gt_dynpread
EXCEPTIONS
invalid_abapworkarea = 1
invalid_dynprofield = 2
invalid_dynproname = 3
invalid_dynpronummer = 4
invalid_request = 5
no_fielddescription = 6
invalid_parameter = 7
undefind_error = 8
double_conversion = 9
stepl_not_found = 10
OTHERS = 11.
CLEAR gt_dynpread.
My custom code is in a function module, which is definied in the bus3 transaction
User | Count |
---|---|
115 | |
9 | |
8 | |
6 | |
6 | |
5 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.