cancel
Showing results for 
Search instead for 
Did you mean: 

Clearing a FIELD in BDC

Former Member
0 Kudos

Hi Gurus,

I Have Created a BDC for transaction CA01.

In the first screen of above trsnaction there is screen field 'RC271-PLNNR' . I need to Clear this field using BDC program how can I do this. I have done like below code

PERFORM bdc_field USING 'RC271-PLNNR'

' '.

but this is not working.

<removed_by_moderator>

regsrds

Rajesh

Edited by: Julius Bussche on Sep 1, 2008 8:45 AM

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Rajesh,

Try checking whether any customizing setting r maintained for the same in Tcode 'SPRO'.

Edited by: Chetan Gala on Sep 1, 2008 10:45 AM

Former Member
0 Kudos

Hi

Any body have ans.

rgds

Rajesh

Former Member
0 Kudos

Hi Rajesh,

Instead of ' ' use SPACE and try. I have checked, It is working

So your perform statement will be :

PERFORM bdc_field USING 'RC271-PLNNR'

SPACE.

Regards,

Swapna.

Edited by: NagaSwapna Thota on Sep 1, 2008 12:25 PM

Former Member
0 Kudos

Hi Swpna its not working

rgds

Rajesh

Former Member
0 Kudos

In Form BDC_FIELD Remove condition " IF FVAL <> NODATA." Then it will work.