cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding payment advise out put

Former Member
0 Kudos

Hi gurus,

I have a problem to see out put of payment advise.

Iam using script. I have field name . But i am unable to get datato my out put. Could u pls any tell me process to get serial no, party ref, inv.amt vch.no.net amount.

Thanks in advance..

Edited by: krishna m on Jan 22, 2008 6:28 AM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi gurus,

Can any one send me inf or ex code how to get payment info , total items in that payment doc etc i have to use reguh,regup & regud.

pls its urgent....

thanks in advance..

Former Member
0 Kudos

Hi Krishna,

Did you try checking out the standard programs RFFOUS_C or RFFOD__S. Executing them will show you all the details that you need, the std form used for these is F110_PRENUM_CHCK. These may help you find them out, which may rule out starting to do a new program to retrieve these.

These are used for cheque printing.

Regards,

Narendra.

Reward points if helpful!!

Former Member
0 Kudos

Thanks a lot narendra for u r reply . my problem is not for check printing. My problem is reg advise iam getting item details . i have to get plant details like name , address of perticular plant and total items in that doc no.

If any inf pls help me...

Former Member
0 Kudos

Hi Krishna,

Try checking out the tables REGUP & REGUH. You will get the invoice number from REGUH and the other detials like invoice amount, party reference from REGUP.

Check out...it may help you.

Regards,

Narendra.

Answers (1)

Answers (1)

former_member196280
Active Contributor
0 Kudos

If you don't have focus of this fields in your program use sub-routine and display this fields.

Ex.

/: PERFORM <Subroutine name> IN PROGRAM <subroutine prog name>

/:USING &<field name>&

/:CHANGING &<field name1&

/:ENDPERFORM

Then create subroutine pool program and you have to write the code.

FORM ><subroutine name> tables int_cond structure itcsy

outt_cond structure itcsy.

data : value(20), value1(20). "do your own declarations

Read int_cond table index 1.

value = int_cond-value.

value1 = value1 + value.

Read outt_cond table index 1.

outt_cond-value = value1.

Modify outt_cond index 1.

ENDFORM.

Just rough idea given above.

Regards,

SaiRam

Former Member
0 Kudos

Hi sriram,

Thanks alot for inf. If possible could pls provide ex code how to declare and how to get data.