nileshsamsonite
18th February 2006, 11:17
Hi,
I am getting error when i tried to update the table
"Record modified by other user;new values are displayed"
The script is as below
function Approve.PDS()
{
check.PDS.lines()
if lines.present = true then
db.retry.point()
select tipps200.*
from tipps200 for update
where tipps200._index1 = {:tipps200.pdsn}
selectdo
tipps200.appr = tcyesno.yes
db.update(ttipps200,db.retry)
commit.transaction()
endselect
endif
}
function check.PDS.lines()
{
select tipps201.*
from tipps201
where tipps201._index1 = {:tipps200.pdsn}
selectdo
lines.present = true
selectempty
lines.present = false
endselect
}
Though the table gets updated , the above mentioned message box appears every time. How to remove this message box ?
Nilesh
I am getting error when i tried to update the table
"Record modified by other user;new values are displayed"
The script is as below
function Approve.PDS()
{
check.PDS.lines()
if lines.present = true then
db.retry.point()
select tipps200.*
from tipps200 for update
where tipps200._index1 = {:tipps200.pdsn}
selectdo
tipps200.appr = tcyesno.yes
db.update(ttipps200,db.retry)
commit.transaction()
endselect
endif
}
function check.PDS.lines()
{
select tipps201.*
from tipps201
where tipps201._index1 = {:tipps200.pdsn}
selectdo
lines.present = true
selectempty
lines.present = false
endselect
}
Though the table gets updated , the above mentioned message box appears every time. How to remove this message box ?
Nilesh