‎2007 Dec 04 11:40 AM
Hi this is my requirement
In table GB01, remove a possibly existing entry with GB01-BOOLCLASS = 015, GB01-CLASSTYPE = S., GB01-BCLTAB = BSEG and GB01-BCLFIELD = *. Instead insert an entry with the following parameters:
GB01-BOOLCLASS = '015'
GB01-CLASSTYPE = 'S'
GB01-BCLTAB = 'BSEG'
GB01-BCLFIELD = 'VBUND'
GB01-BEXCLUDE = ''
Please provide the coding
Thanks in advance.
‎2007 Dec 04 11:47 AM
update table GB01 set : BOOLCLASS = '015'
CLASSTYPE = 'S'
BCLTAB = 'BSEG'
BCLFIELD = 'VBUND'
BEXCLUDE = ''''
where BOOLCLASS = 015 and CLASSTYPE = 'S' and BCLTAB = 'BSEG' and BCLFIELD = '*' .
hope this helps.
‎2007 Dec 04 11:43 AM
Hi,
Data wa_gb01 type gb01.
wa_GB01-BOOLCLASS = '015'
wa_GB01-CLASSTYPE = 'S'
wa_gb01-BCLTAB = 'BSEG'
wa_GB01-BCLFIELD = 'VBUND'
wa_GB01-BEXCLUDE = ''
Modify GB01 from wa_gb01.Regards,
Satish
‎2007 Dec 04 11:47 AM
‎2007 Dec 04 11:47 AM
update table GB01 set : BOOLCLASS = '015'
CLASSTYPE = 'S'
BCLTAB = 'BSEG'
BCLFIELD = 'VBUND'
BEXCLUDE = ''''
where BOOLCLASS = 015 and CLASSTYPE = 'S' and BCLTAB = 'BSEG' and BCLFIELD = '*' .
hope this helps.
‎2007 Dec 04 11:50 AM
You can maintain the entires in this table using transaction OKOR, there is no need to write a program.
Regards,
Nick