2007 May 18 2:07 PM
Hi all
i have a done a recording in which at one stage i shuold double click one record to get a field value.when i am processing the session, it is giving the error "function code XXX does not exist ".actually the XXX is the Ok code . how to solve this?
2007 May 18 2:10 PM
Please try 'PICK' (F2) for BDC OK_CODE.
also try <b>SEL</b> OK_CODE
2007 May 18 2:12 PM
2007 May 18 2:14 PM
Hi..
can u plz tell which transaction u r recording and in which screen u r getting error.?
Regards,
kamal
2007 May 18 2:24 PM
check you have passes the OK_Code while recording like this :
PERFORM bdc_field USING 'BDC_OKCODE 'XXX'.
FORM bdc_field USING p_fnam TYPE any
p_fval TYPE any.
CLEAR wa_bdcdata.
wa_bdcdata-fnam = p_fnam.
wa_bdcdata-fval = p_fval.
CONDENSE wa_bdcdata-fval.
APPEND wa_bdcdata TO i_bdcdata.
ENDFORM. " bdc_field