‎2007 Nov 24 4:23 AM
hi guys,
can any one show me a code, of how to update the customized table with criteria?
i need to do a mass update of the field to become blank. please help. thanks
‎2007 Nov 24 4:26 AM
‎2007 Nov 24 4:25 AM
Hi,
You can use BDC for the corresponding transaction to update the field
You can record using the transaction SHDB..
Thanks
Naren
‎2007 Nov 24 4:25 AM
You can use this:
UPDATE ZTAB
SET FIELD1 = ' '
WHERE FIELD2 = conditionRegards,
Naimesh Patel
‎2007 Nov 24 4:26 AM
‎2007 Nov 24 4:38 AM
hi,
now i have a request, to update all the details in the field ( sold to party, customer record) to become blank for a customize table (store of serial number), with criteria.
and i go to SE38, create a program, with type executable program, and in the program, my source code is as below
UPDATE zsd_serial1
SET delnum = ' '
rec_customer = ' '
customer = ' '
WHERE material EQ '100000' AND sloc1 = 't100'
AND rec_customer EQ 'x'.however, there is no respond and it does not update anything. can any one please help. thanks
‎2007 Nov 24 4:41 AM
UPDATE zsd_serial1
SET delnum = ' '
rec_customer = ' '
customer = ' '
WHERE material EQ '100000' AND sloc1 = 'T100' "<< Upper Case
AND rec_customer EQ 'X'. "<< Upper Case.Regards,
Satish