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
User | Count |
---|---|
70 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.