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

billing documents

Former Member
0 Likes
361

how to display sales documents( vbeln) and count of sales documents (vbeln )for billing block (faksk). any one help me with some sample code .

1 ACCEPTED SOLUTION
Read only

former_member191735
Active Contributor
0 Likes
343

data: lines type i.

declare itab here.

select vbeln into table itab

where fkask <> space.

describe table itab lines lines.

lines field will have the count.

1 REPLY 1
Read only

former_member191735
Active Contributor
0 Likes
344

data: lines type i.

declare itab here.

select vbeln into table itab

where fkask <> space.

describe table itab lines lines.

lines field will have the count.