Hello ,
I have a Transaction Launcher Method in my Web UI Implementation class. This particular method is not Triggered while debugging. I have to fix a ATC check in this particular method .
The ATC check which i am getting is
Image may be NSFW.
Clik here to view.
The code to where it point is :
METHOD launch_bsp_application.
DATA : ls_quote_to_memory TYPE zsq2c_quote_todeal,
lt_quote_to_memory TYPE TABLE OF zsq2c_quote_todeal,
lv_indexm TYPE indx,
ls_zq2c_quotedata TYPE zq2c_quotedata .
MOVE iv_quoteno TO ls_quote_to_memory-quoteid.
APPEND ls_quote_to_memory TO lt_quote_to_memory.
EXPORT lt_quote_data_memory = lt_quote_to_memory TO DATABASE indx(yw) FROM lv_indexm ID sy-uname.
COMMIT WORK .
* Storing same information into table ZQ2C_QUOTEDATA for data validation .
MOVE-CORRESPONDING ls_quote_to_memory TO ls_zq2c_quotedata .
INSERT INTO zq2c_quotedata VALUES ls_zq2c_quotedata .
I would like to know how do we remove this ATC check and how do we trigger this transaction launcher method from web ui?