‎2007 Dec 12 6:29 PM
how to display sales documents( vbeln) and count of sales documents (vbeln )for billing block (faksk). any one help me with some sample code .
‎2007 Dec 12 6:33 PM
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.
‎2007 Dec 12 6:33 PM
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.