hi experts,
As i have requirement in fb70.I need to add one subscreen and two fields which is of type char.I have done with using badi BADI_FDCB_SUBBAS04 and method GET_DATA_FROM_SCREEN_OBJECT.I need to create one ztable and whatever the values fed in those fields and including the document(a/c) number should be update in ztable.so, my problem is whenever i input the values in those two fields its not getting updated in my ztable.
table name - ZTABLE_UPDATE
fieldname - ZVISIT
and ZMRDNO.
i have coded like this - data: lf(10) type c,
lf_cust type char10,
lf_visit type char20,
lf_zmrdno type char20,
ZVISIT type char20,
ZMRDNO type char20,
value type char10.
move ZVISIT to lf_visit.<-- when i input the values its not getting populated in zvisit and zmrdno as well.
move ZMRDNO to lf_zmrdno.
get parameter id 'DFD' field value .
update ztable_update from lf.