2005 Aug 09 9:35 AM
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
2005 Aug 09 3:26 PM
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
2005 Aug 10 7:38 AM
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
2005 Aug 10 8:04 AM
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
2005 Aug 10 7:57 AM
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.