Application Development 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: 

tp01 recording problem

Former Member
0 Kudos
227

Hi all,

I did a recording for Travel mgmt system, tp01,added flight details (multiple trip), advance and comments, the recordding happens fine. after that i create a program for recording and run it, it runs fine, without errs, when i run the program to show screens in foreground, then it shows inserting all above mentioned details, but when i check its later, it does not show flight details and comments.

its very imp, can some 1 help me out.

rgds,

sim sim

4 REPLIES 4

christian_wohlfahrt
Active Contributor
0 Kudos
103

Hi!

Strange behavior: background is working, display mode shows all values - how can booking only fetch part of the data?

It's possible to have different screens in foreground / background - but then you would not have seen all values in correct place.

Did you leave some screens with cancel instead of back?

Or didn't I fetch your description correct: aren't flight details stored at all?

Regards,

Christian

0 Kudos
103

hi,

when i run the prg for recording then it does not give any errors, even when i say run in foreground, it shows inserting flight details, but then after the entire process is complete, and check in tp01 then i can't see flight details and comments

0 Kudos
103

Hi,

I see, your BTC never saves the values. Has the entry flight details, which you created with the recording of the BDC?

Regards,

Christian

Former Member
0 Kudos
103

Hi Seema,

Are you passing options with call transaction statement(i am assuming that you are using call transaction). Some

try passing RACOMMIT = 'X' in options.

if you don't pass it, processing is stopped after COMMIT staement in standard program.

e.g.

data:

ctu like ctu_params.

ctu-racommit = 'X'.

and

call transaction 'TP01'.....

options from ctu.

Regards,

Komal.