cancel
Showing results for 
Search instead for 
Did you mean: 

Credit Card Transaction details

former_member305388
Active Contributor
0 Kudos

Hi,

Can somebody tell me where can I can all the credit card transactions? through PRCC we will upload the transaction details. Where will those be saved? I want to fetch the transactions in a program. How can that be done?

Thanks a lot!1

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member305388
Active Contributor
0 Kudos

Solved by myself.

Solution:

DATA: BEGIN OF tc_key,

pernr LIKE pernr-pernr,

END OF tc_key.

DATA: letzt TYPE ptk34_letzt,

ccbel TYPE TABLE OF ptk34 WITH HEADER LINE,

inbel TYPE TABLE OF ptk34_inbel WITH HEADER LINE,

trans TYPE TABLE OF ptk34_trans WITH HEADER LINE.

tc_key-pernr = '00000119'.

import

letzt

ccbel

inbel

trans

from database pcl1(tc) id tc_key.

Now, ccbel has all the transactions.