Application Development and Automation 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: 
Read only

How to debug transaction QA32

Former Member
0 Likes
1,071

Dear Experts,

I want to debug QA32 or MD50 and want to check in which tables usage decision is updated.

I Know we can use ST05 for this and check where usage decision is updated.

Can anybody tell me in which table usage decision is updated ?

My requirement is after knowing in which tables usage decision is updated I have to reset the values of it.

Can I reset value of usage decision directly ? Because it will update in standard tables. How can I reset the values of

a standard table. Is it advisable to change the value of table. Do I require a access key?

Dear Experts,

I want to debug QA32 or MD50 and want to check in which tables usage decision is updated.

I Know we can use ST05 for this and check where usage decision is updated.

Can anybody tell me in which table usage decision is updated ?

My requirement is after knowing in which tables usage decision is updated I have to reset the values of it.

Can I reset value of usage decision directly ? Because it will update in standard tables. How can I reset the values of

a standard table. Is it advisable to change the value of table. Do I require a access key?

6 REPLIES 6
Read only

former_member404244
Active Contributor
0 Likes
952

Hi,

I think you can get from QAVE table..

Regards,

Nagaraj

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
952

/H - execute

In debugger mode goto menu breakpoints-breakpoint at - statment -

Type SELECT - mark the check box 'Also for internally created Assignment'

Enter - press F8.

Read only

Former Member
0 Likes
952

Hi

Check for the UserExits or followup function for QA32. It can help you to update/reset values.

for example there is a followup function module

'QFOA_COPY_REFERENCE_FORM'

. you can copy the same and create your own z function module and config it as follow up function.

-Maharshi

Edited by: Maharshi Vyas on Mar 2, 2010 1:52 PM

Read only

Former Member
0 Likes
952

Thanks for your replies.

Can you elaborate what code I have to write in this function module after copying. If you know can you please paste the code also which will be helpful to me.

Read only

0 Likes
952

Hi,

There are Import parameters as 'I_QALS' and 'I_QAVE' where you can have most of the runtime data. On the basis of this you can write code according to your requirment and can also reset the values which you need. You can add BDC code also for any backgound process in this transaction...

- Maharshi

Read only

Former Member
0 Likes
952

Thanks all for your replies. solved by myself.