Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

match bapi data element length to ordinary variable length ?

Former Member
0 Likes
506

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.

2 REPLIES 2
Read only

Former Member
0 Likes
461

Vimal,

you are right your answer is in your question itself.

data : v_title type AD_TITLETX.

Amit.

Read only

0 Likes
461

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.