‎2006 Jun 15 1:29 PM
Dear all,
Is there any function module which gives the values on a certain screen at runtime??
For example:
If I run MIGO transaction with my enhancement activated, I want to read the value of PO number from SAPLMIGO screen 2000 into my enhancement's(BADI's) methods.
Additional information:
I tried this out in the enhancement's(MB_MIGO_BADI) screen PBO.You just have to refer to two tables GODYNPRO,GOITEM and they are suitably populated with the values one may need furthur!!
I shall appreciate even if you give me a hint to approach this problem.
Thanks and Regards,
Amiya Shrivastava
‎2006 Jun 15 1:33 PM
‎2006 Jun 15 1:31 PM
‎2006 Jun 15 1:33 PM
‎2006 Jun 15 1:34 PM
‎2006 Jun 15 1:56 PM
Dear Thomas,
Unfortunately no documentation is available for the function module.
How to populate the structure 'ET_DYNSET' in the same??
Regards,
Amiya
‎2006 Jun 15 1:40 PM
The data will be available in the INterface method's importing parameters.
go to se18 and see for yourself, the methods available.
Double click on the methods to find what are they importing and what each method is exporting.
The data will be available in importing parameters like IS_GOHEAD,
CS_GOITEM, CS_GOHEAD, IS_GOITEM etc.
Regards,
ravi
‎2006 Jun 15 1:50 PM
Dear Ravi,
I want the value in PBO_DETAIL method ...where its not accesible..
Regards,
Amiya
‎2006 Jun 15 1:53 PM
hi
you can use the FM
call function 'DYNP_VALUES_READ'
exporting
dyname = v_progname
dynumb = sy-dynnr
TRANSLATE_TO_UPPER = ' '
REQUEST = ' '
PERFORM_CONVERSION_EXITS = ' '
PERFORM_INPUT_CONVERSION = ' '
DETERMINE_LOOP_INDEX = ' '
tables
dynpfields = t_fields
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
.
Regards,
Richa
‎2006 Jun 15 1:58 PM
Dear Amole and Richa,
The function module is not working!!
Thanks and regards,
Amiya
‎2006 Jun 15 1:53 PM