‎2007 Dec 28 10:27 AM
is this code correct or do i need to put the table name befror the field name
UPDATE NRIV SET NRRANGENR = number where OBJECT = 'J_1IEXCLOC'
or it should be
UPDATE NRIV SET NRIV-NRRANGENR = number where NRIV-OBJECT = 'J_1IEXCLOC'
‎2007 Dec 28 10:30 AM
it should be
UPDATE NRIV SET NRRANGENR = number where OBJECT = 'J_1IEXCLOC'
‎2007 Dec 28 10:33 AM
‎2007 Dec 28 10:33 AM
Thats a danger comand to be used in NRIV or other standard table... Use transaction SNRO to manipulate the NRIV table or the functions in function group SNR3.
‎2007 Dec 28 11:19 AM
‎2007 Dec 28 11:12 AM
Hi,
You can use the first statement.
UPDATE NRIV SET NRRANGENR = number where OBJECT = 'J_1IEXCLOC'.
Thanks,
Sriram Ponna.
‎2007 Dec 28 11:34 AM
hi,
UPDATE NRIV SET NRRANGENR = number where OBJECT = 'J_1IEXCLOC'
or Object in gr_object is correct version.
because when you are updating and dealing with one tableits enough mentioning the table at one part and syntax is also correct for the above only.
Regds
Sivaparvathi
Please reward points if helpful..
‎2007 Dec 28 11:59 AM
The main question is why do you want to update a standard number interval (J_1IEXCLOC) ?