on 2006 Feb 20 8:12 PM
Hi All,
I wrote some code to modify one of the query tables - RSZELTXREF in our developemnt system. It screwed all the queries in our development.
How can i rollback the table to restore it?
Please help.
This is very very very urgent.
Hi George,
What exactly do you mean by "screwed"...you giveincorrect results, or do not execute at all? What changes did you make to the table?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I used this code:
loop at IOBJ. (selection-screen variable)
loop at it_RSZSELECT.
it_result-iobj = iobj.
it_result-iobjnm = it_RSZSELECT-iobjnm.
select * from rszeltxref
where teltuid = it_RSZSELECT-eltuid
and objvers = 'A'.
IF rszeltxref-laytp = 'FIX'.
UPDATE rszeltxref SET laytp = 'AGG'.
ENDIF.
endselect.
endloop.
endloop.
When i executed this, all the characteristics and key figures from rows, filter and columns are appearing in free characteristics section.
Regards
Hi,
Please Help. This is very urgent.
I modified the above program in this manner:
loop at IOBJ. (selection-screen variable)
loop at it_RSZSELECT.
it_result-iobj = iobj.
it_result-iobjnm = it_RSZSELECT-iobjnm.
select * from rszeltxref
where teltuid = it_RSZSELECT-eltuid
and objvers = 'A'.
IF rszeltxref-laytp = 'FIX'.
UPDATE rszeltxref SET laytp = 'AGG'.
ENDIF.
endselect.
endloop.
endloop.
Rollback Work.
Inclusion of this statement did not help in any way.
Regards
Hi,
Better Raise note/issue to SAP and you will get solution.
regs,
MBA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need a quick workaround..copy the table entries from the ur producionsystem and put it in a excel and and create a program in ur dev to upload the excel to the same table....you can do it selectively for the object which u screwed.... i.e "obje = AGG"
If there are some queries in dev not production or Quality you need to work on these....
Hope this work..
kamal
Message was edited by: kamal Raman
User | Count |
---|---|
68 | |
8 | |
8 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.