<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Select query Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254788#M1015658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Declare an internal table (itab) with fileid filed alone but with datatype as CHAR16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of x_itab,&lt;/P&gt;&lt;P&gt;          fileid1 of type c length 16,&lt;/P&gt;&lt;P&gt;          endof x_itab.&lt;/P&gt;&lt;P&gt;data: itab type standard table of x_itab,&lt;/P&gt;&lt;P&gt;        wa_itab type x_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at t_zcust into wa_zcust.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-fileid1 = wa_zcus-fileid&lt;/P&gt;&lt;P&gt;append wa_itab-filedi1 to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Now change the select query as follow&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not t_zcust[] not initial.&lt;/P&gt;&lt;P&gt;select BUKRS BELNR GJAHR XBLNR BLART DMBTR WRBTR from BSIS &lt;/P&gt;&lt;P&gt;into corresponding fields of table t_bsis&lt;/P&gt;&lt;P&gt;for all entries in itab where&lt;/P&gt;&lt;P&gt;XBLNR EQ &lt;STRONG&gt;itab-fileid1&lt;/STRONG&gt; and &lt;/P&gt;&lt;P&gt;BUKRS EQ '1010' and&lt;/P&gt;&lt;P&gt;BLART EQ 'KR'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Swarna Munukoti on Aug 13, 2008 8:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2008 06:52:11 GMT</pubDate>
    <dc:creator>former_member217544</dc:creator>
    <dc:date>2008-08-13T06:52:11Z</dc:date>
    <item>
      <title>Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254787#M1015657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not t_zcust[] not initial.&lt;/P&gt;&lt;P&gt;select BUKRS BELNR GJAHR XBLNR BLART DMBTR WRBTR from BSIS &lt;/P&gt;&lt;P&gt;                                                   into corresponding fields of table t_bsis&lt;/P&gt;&lt;P&gt;                                                                for all entries in t_zcust where&lt;/P&gt;&lt;P&gt;                                                                 XBLNR  EQ t_zcust-fileid and &lt;/P&gt;&lt;P&gt;                                                                 BUKRS EQ '1010'           and&lt;/P&gt;&lt;P&gt;                                                                 BLART  EQ  'KR'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;The above select query is correct as per syntax but here my problem is&lt;/P&gt;&lt;P&gt;In where condition i am checking XBLNR with T_ZCUST-FILEID.&lt;/P&gt;&lt;P&gt;XBLNR is length of Char 16  and FILEID is length of NUMC 10.&lt;/P&gt;&lt;P&gt;and we can not change the T_ZCUST-FILEID field technical attributes &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to Map the above condition in the above select query , is there any alternative way is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sathish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 06:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254787#M1015657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T06:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254788#M1015658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Declare an internal table (itab) with fileid filed alone but with datatype as CHAR16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of x_itab,&lt;/P&gt;&lt;P&gt;          fileid1 of type c length 16,&lt;/P&gt;&lt;P&gt;          endof x_itab.&lt;/P&gt;&lt;P&gt;data: itab type standard table of x_itab,&lt;/P&gt;&lt;P&gt;        wa_itab type x_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at t_zcust into wa_zcust.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-fileid1 = wa_zcus-fileid&lt;/P&gt;&lt;P&gt;append wa_itab-filedi1 to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Now change the select query as follow&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not t_zcust[] not initial.&lt;/P&gt;&lt;P&gt;select BUKRS BELNR GJAHR XBLNR BLART DMBTR WRBTR from BSIS &lt;/P&gt;&lt;P&gt;into corresponding fields of table t_bsis&lt;/P&gt;&lt;P&gt;for all entries in itab where&lt;/P&gt;&lt;P&gt;XBLNR EQ &lt;STRONG&gt;itab-fileid1&lt;/STRONG&gt; and &lt;/P&gt;&lt;P&gt;BUKRS EQ '1010' and&lt;/P&gt;&lt;P&gt;BLART EQ 'KR'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Swarna Munukoti on Aug 13, 2008 8:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 06:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254788#M1015658</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2008-08-13T06:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254789#M1015659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi create another table  t_zcust1[] ,inside the defination add one extra field..say FILEID1..of type &lt;/P&gt;&lt;P&gt;BSIS-XBLNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now..&lt;/P&gt;&lt;P&gt;t_zcust1[ ] = t_zcust[ ].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at t_zcust1.&lt;/P&gt;&lt;P&gt;t_zcust1-filed1 = t_zcust1-filed.&lt;/P&gt;&lt;P&gt;modify t_zcust1 transpaorting filed1. &lt;/P&gt;&lt;P&gt;endloop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use the select query as below...replacing t_zcust by t_zcust1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not t_zcust1[] not initial.&lt;/P&gt;&lt;P&gt;select BUKRS BELNR GJAHR XBLNR BLART DMBTR WRBTR from BSIS &lt;/P&gt;&lt;P&gt;into corresponding fields of table t_bsis&lt;/P&gt;&lt;P&gt;for all entries in t_zcust1 where&lt;/P&gt;&lt;P&gt;XBLNR EQ t_zcust1-fileid1 and &lt;/P&gt;&lt;P&gt;BUKRS EQ '1010' and&lt;/P&gt;&lt;P&gt;BLART EQ 'KR'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here field1 and XBLNR have same datatype...&lt;/P&gt;&lt;P&gt;hope it helps u out....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rudra Prasanna Mohapatra on Aug 13, 2008 8:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 06:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254789#M1015659</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2008-08-13T06:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254790#M1015660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While using FOR ALL ENTRIES, fields with different data types cannot be matched in where condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, the options are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Inside the loop, select the fields. But performance wise it is not recommended.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Other option is :&lt;/P&gt;&lt;P&gt;            Move the field FILEID to other dummy field which has CHAR16 in the same internal table. Then use the select statement as u wrote by changing &lt;STRONG&gt;t_zcust-fileid&lt;/STRONG&gt; into &lt;STRONG&gt;t_zcust-dummy_field&lt;/STRONG&gt;.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 07:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254790#M1015660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T07:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254791#M1015661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;just check out this program program and follow the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: KONV, EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF G_EKPO,&lt;/P&gt;&lt;P&gt;          EBELN type ekpo-EBELN,&lt;/P&gt;&lt;P&gt;          ebelp type ekpo-ebelP,   " numeric length 5&lt;/P&gt;&lt;P&gt;        END OF g_ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF G_EKPO1,&lt;/P&gt;&lt;P&gt;          ebeln type ekpo-ebeln,&lt;/P&gt;&lt;P&gt;          ebelP type KONV-KPOSN,&lt;/P&gt;&lt;P&gt;       END OF g_ekpo1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF G_KONV,&lt;/P&gt;&lt;P&gt;          KNUMV type konv-KNUMV,&lt;/P&gt;&lt;P&gt;          KPOSN type KONV-KPOSN,    "numeric length 6&lt;/P&gt;&lt;P&gt;       END OF g_KONV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of itab,&lt;/P&gt;&lt;P&gt;        ebeln type ekpo-ebeln,&lt;/P&gt;&lt;P&gt;        ebelp type ekpo-ebelp,&lt;/P&gt;&lt;P&gt;        KNUMV type konv-KNUMV,&lt;/P&gt;&lt;P&gt;        kposn type konv-kposn,&lt;/P&gt;&lt;P&gt;        end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : IT_EKPO TYPE STANDARD TABLE OF G_EKPO,&lt;/P&gt;&lt;P&gt;        WA_EKPO TYPE G_EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA :  IT_EKPO1 TYPE STANDARD TABLE OF G_EKPO1,&lt;/P&gt;&lt;P&gt;        WA_EKPO1 TYPE G_EKPO1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : IT_KONV TYPE STANDARD TABLE OF G_KONV,&lt;/P&gt;&lt;P&gt;        WA_KONV TYPE G_KONV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_itab type standard table of itab,&lt;/P&gt;&lt;P&gt;       wa_itab type itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT-OPTIONS : S_EBELP FOR EKPO-EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT ebeln&lt;/P&gt;&lt;P&gt; EBELP&lt;/P&gt;&lt;P&gt; FROM EKPO&lt;/P&gt;&lt;P&gt; INTO TABLE IT_EKPO&lt;/P&gt;&lt;P&gt; WHERE EBElP IN S_EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_EKPO INTO WA_EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_ekpo1-ebeln = wa_ekpo-ebeln.&lt;/P&gt;&lt;P&gt;WA_EKPO1-EBELP = WA_EKPO-EBELP.&lt;/P&gt;&lt;P&gt;APPEND WA_EKPO1 TO IT_EKPO1.&lt;/P&gt;&lt;P&gt;CLEAR WA_EKPO1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KNUMV&lt;/P&gt;&lt;P&gt;       KPOSN&lt;/P&gt;&lt;P&gt;FROM KONV&lt;/P&gt;&lt;P&gt;INTO TABLE IT_KONV&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES in IT_EKPO1&lt;/P&gt;&lt;P&gt;WHERE KPOSN = IT_EKPO1-EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_ekpo1 into wa_ekpo1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table it_konv with key kposn = wa_ekpo1-ebelp into wa_konv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-ebeln = wa_ekpo1-ebeln.&lt;/P&gt;&lt;P&gt;wa_itab-ebelp = wa_ekpo1-ebelp.&lt;/P&gt;&lt;P&gt;wa_itab-knumv = wa_konv-knumv.&lt;/P&gt;&lt;P&gt;wa_itab-kposn = wa_konv-kposn.&lt;/P&gt;&lt;P&gt;append wa_itab to it_itab.&lt;/P&gt;&lt;P&gt;clear wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_itab into wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : /1 wa_itab-ebeln,&lt;/P&gt;&lt;P&gt;         15 wa_itab-ebelp,&lt;/P&gt;&lt;P&gt;         25 wa_itab-knumv,&lt;/P&gt;&lt;P&gt;         38 wa_itab-kposn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will solve ur problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 07:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254791#M1015661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T07:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254792#M1015662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : loc_var(16) char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not t_zcust[] not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loc_var = t_zcust-fileid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select BUKRS BELNR GJAHR XBLNR BLART DMBTR WRBTR from BSIS &lt;/P&gt;&lt;P&gt;into corresponding fields of table t_bsis&lt;/P&gt;&lt;P&gt;for all entries in t_zcust where&lt;/P&gt;&lt;P&gt;XBLNR EQ loc_var and &lt;/P&gt;&lt;P&gt;BUKRS EQ '1010' and&lt;/P&gt;&lt;P&gt;BLART EQ 'KR'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 07:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254792#M1015662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T07:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Select query Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254793#M1015663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sateesh,&lt;/P&gt;&lt;P&gt;if your t_zcust is internal table..&lt;/P&gt;&lt;P&gt;then declare one variable with length 16 in that internal table declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:-&lt;/P&gt;&lt;P&gt;data: begin of t_zcust occurs 0,&lt;/P&gt;&lt;P&gt;        var(16) type c,&lt;/P&gt;&lt;P&gt;        ........&lt;/P&gt;&lt;P&gt;        end of t_zcust.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now use this field in where conditon for XBLNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help you,&lt;/P&gt;&lt;P&gt;have a nice day,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 08:11:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-problem/m-p/4254793#M1015663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T08:11:49Z</dc:date>
    </item>
  </channel>
</rss>

