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

characterize table

Former Member
0 Likes
348

The object is...

""Get Some 20 materials from MARA first(using up to 20 rows) . Then go to AUSP and charecteristics for these 20 materials. But you will get these charecteristics in horizontal fashion. I want at least 5 charecteristics to be displayed in in vertical format for all the materials. "".

I need code for above object.

2 REPLIES 2
Read only

Former Member
0 Likes
326

Hi,

I didnt understand your question.

But still if you want the horizontal data vertically then you can acheive like this.


* take the horizontal data into a string - mydata 
* suppose the characteristic you need have length of 2.

length = STRLEN( mydata ).
length = ( length / 2 ) .
looppass = 0.
do length times.
write mydata+looppass(2).
looppass = looppass + 2.

enddo.

Read only

Former Member
0 Likes
326

Tell me how are u fetching data from ausp based on material........i mean ur query.