‎2008 Jul 23 7:08 AM
Hi all,
how to match bapi data element length to ordinary variable length ?
i have used BAPIKNA101 structure
EXAMPLE:
data : v_title type AD_TITLETX.
v_title ......?
AD_TITLETX is the data element of TITLE FIELD.
‎2008 Jul 23 7:11 AM
Vimal,
you are right your answer is in your question itself.
data : v_title type AD_TITLETX.Amit.
‎2008 Jul 23 11:09 AM
hi
i have used some other table and that table title length is 50,
i want equl the length ad_title length to v_title ..... what to do ?
i wrote the the code like this
data : v_title type ad_titletx.
v_title(30) type c.
error : v_title(30) has already beeen declared.