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

Hi

Former Member
0 Likes
591

hi,

I had the list of billing documents. In that some were cancelled . when we cancel the billing document another number is generated. I want to write a program which should have the list of billing documents(It should not consider the cancelled documents)

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
547

Hi Rams,

Check the table VBRK for the list of canceled invoices and for the respective invoice which considered for cancellation.

VBRK-FKSTO is the billing document canceled for the billing doucment VBRK-VBELN.

Thanks,

Vinay

hi,

I had the list of billing documents. In that some were cancelled . when we cancel the billing document another number is generated. I want to write a program which should have the list of billing documents(It should not consider the cancelled documents)

Thanks

4 REPLIES 4
Read only

Former Member
0 Likes
548

Hi Rams,

Check the table VBRK for the list of canceled invoices and for the respective invoice which considered for cancellation.

VBRK-FKSTO is the billing document canceled for the billing doucment VBRK-VBELN.

Thanks,

Vinay

Read only

former_member196280
Active Contributor
0 Likes
547

Try to fetch data from VBRP and VBRK using join conditions.. IN where clause you must use <b>vbrk-fksto NE 'X' </b> "Billing documents

Reward and close the thread if your question is answered.

Regards,

SaiRam

Read only

varma_narayana
Active Contributor
0 Likes
547

Hi ..

Billing Document Tables VBRK, VBRP.

Billing Doc Status field : VBRK-RFBSK.

<b>Reward if Helpful</b>

Read only

Former Member
0 Likes
547

Hi

Join the tables VBRK and VBRP and fetch the data where VBRK-VBTYP <> 'N'.

<b>VBTYP = N</b> means cancelled Invoices

<b>Reward points for useful Answers</b>

Regards

Anji