Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

select

Former Member
0 Kudos

Hi gurus,

I just want to ask on whats the purpose of .......RBELBIND = dc_hsemod...........

in this code??

thanks very much,

gerald

Select Single XKBELBEZ From TIV3A Into i_report-hsemod

Where SPRAS = 'E' and

RBELBIND = dc_hsemod.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Jose,

RBELBIND is the field in table XKBELBEZ, it is being copmared with dc_hsemod value in the where clause of the select query.

reward if helps,

Satish

2 REPLIES 2

Former Member
0 Kudos

Hi Jose,

RBELBIND is the field in table XKBELBEZ, it is being copmared with dc_hsemod value in the where clause of the select query.

reward if helps,

Satish

former_member387317
Active Contributor
0 Kudos

Hi Jose,

Select Single XKBELBEZ <b>" XKBELBEZ is field of DDIC table TIV3</b>A

<b>From TIV3A " TIV3A is DDIC Table</b>

Into i_report-hsemod "<b> i_report is internal table and hsemod one field of i_report</b>

Where

SPRAS = 'E' and "<b> SPRAS field in DDIC table TIV3A</b>

RBELBIND = dc_hsemod. " <b>RBELBIND field in DDIC table TIV3A</b>

so it will give only single record which matches ur requrirement like SPRAS = 'E' and RBELBIND = dc_hsemod in DDIC table TIV3A

Hope it will solve ur problem..

<b>Reward points if useful</b>

Thanks & Regards

ilesh 24x7