<?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: Using offsets in a select in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976133#M399833</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mick,&lt;/P&gt;&lt;P&gt;The query should still work. U can use offset like that. I think you are not getting year offset in T_ICORDCSTA1-FISCPER correctly.&lt;/P&gt;&lt;P&gt;Just debug the program before executing select query to find the value T_ICORDCSTA1-FISCPER in T_ICORDCSTA1 and see how the value is stored in the field and make changes accordingly in your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Feb 2007 16:52:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-13T16:52:55Z</dc:date>
    <item>
      <title>Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976125#M399825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you know if i can use offests in a select?  It doens't want to pull back the infromations.  Here is my select.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT BELNR KOKRS BUZEI GJAHR EBELN EBELP&lt;/P&gt;&lt;P&gt;         INTO TABLE T_COEP&lt;/P&gt;&lt;P&gt;         FROM COEP&lt;/P&gt;&lt;P&gt;          FOR ALL ENTRIES IN T_ICORDCSTA1&lt;/P&gt;&lt;P&gt;        WHERE BELNR = T_ICORDCSTA1-BELNR&lt;/P&gt;&lt;P&gt;          AND KOKRS = T_ICORDCSTA1-KOKRS&lt;/P&gt;&lt;P&gt;          AND BUZEI = T_ICORDCSTA1-BUZEI&lt;/P&gt;&lt;P&gt;          AND GJAHR = T_ICORDCSTA1-FISCPER+0(4).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976125#M399825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976126#M399826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can you the offset in the select statment, &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;SELECT BELNR KOKRS BUZEI GJAHR EBELN EBELP
INTO TABLE T_COEP
FROM COEP
FOR ALL ENTRIES IN T_ICORDCSTA1
WHERE BELNR = T_ICORDCSTA1-BELNR
AND KOKRS = T_ICORDCSTA1-KOKRS
AND BUZEI = T_ICORDCSTA1-BUZEI
AND GJAHR = T_ICORDCSTA1-FISCPER+0(4).&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is ok, but make sure that the field is not having anyu conversion routine and gives the correct value when you use the offset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976126#M399826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976127#M399827</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;Yes you can! But I'm not sure it can do it if it uses FOR ALL ENTRIES because this option doesn't use the header line of the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976127#M399827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976128#M399828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it gives me the following warning when I do a syntax check which i don't know what it means or how to fix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bei der Verwendung von FOR ALL ENTRIES wird die Längenangabe für&lt;/P&gt;&lt;P&gt;"FISCPER" in dieser Bedingung ignoriert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:11:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976128#M399828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976129#M399829</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;that means the field FISCPER is unable to access the condition and it is ignoring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my suggestion is use loop and endloop..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Loop at T_ICORDCSTA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT BELNR KOKRS BUZEI GJAHR EBELN EBELP&lt;/P&gt;&lt;P&gt;INTO TABLE T_COEP&lt;/P&gt;&lt;P&gt;FROM COEP&lt;/P&gt;&lt;P&gt;WHERE BELNR = T_ICORDCSTA1-BELNR&lt;/P&gt;&lt;P&gt;AND KOKRS = T_ICORDCSTA1-KOKRS&lt;/P&gt;&lt;P&gt;AND BUZEI = T_ICORDCSTA1-BUZEI&lt;/P&gt;&lt;P&gt;AND GJAHR = T_ICORDCSTA1-FISCPER+0(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;SAB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:33:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976129#M399829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976130#M399830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I have been gathering I can' use it with a for all entry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976130#M399830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976131#M399831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT SAYS IT HAS NO HEADER LINE DEFINED.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:51:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976131#M399831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976132#M399832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it should be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
APPENDING TABLE T_COEP
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976132#M399832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976133#M399833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mick,&lt;/P&gt;&lt;P&gt;The query should still work. U can use offset like that. I think you are not getting year offset in T_ICORDCSTA1-FISCPER correctly.&lt;/P&gt;&lt;P&gt;Just debug the program before executing select query to find the value T_ICORDCSTA1-FISCPER in T_ICORDCSTA1 and see how the value is stored in the field and make changes accordingly in your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:52:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976133#M399833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976134#M399834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll have to loop at the table into a work area and use the work area for the SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 16:53:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976134#M399834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T16:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976135#M399835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So just create a work area of type table and then use my offset there?  i am not sure i follow&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 17:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976135#M399835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T17:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976136#M399836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It gives me the error above so it will not work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 17:02:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976136#M399836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T17:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976137#M399837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No - not of type table. You need to loop at the table into something the SELECT statement can use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 17:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976137#M399837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T17:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976138#M399838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA wa_icordcsta1 type icordcsta1.

LOOP AT t_icordcsta1 INTO wa_icordcsta1.

  SELECT belnr kokrs buzei gjahr ebeln ebelp
    APPENDING TABLE t_coep
    FROM coep
    WHERE belnr = wa_icordcsta1-belnr
      AND kokrs = wa_icordcsta1-kokrs
      AND buzei = wa_icordcsta1-buzei
      AND gjahr = wa_icordcsta1-fiscper+0(4).

ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 17:12:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976138#M399838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T17:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976139#M399839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Mick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;follow the way as Rob given... i was not sure that u r using Occurs for ur internal table or not.. u need to provide work area to append in t_coep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if u use itab like........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Data T_ICORDCSTA1 like ICORDCSTA1 occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at T_ICORDCSTA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT BELNR KOKRS BUZEI GJAHR EBELN EBELP&lt;/P&gt;&lt;P&gt;INTO TABLE T_COEP&lt;/P&gt;&lt;P&gt;FROM COEP&lt;/P&gt;&lt;P&gt;WHERE BELNR = T_ICORDCSTA1-BELNR&lt;/P&gt;&lt;P&gt;AND KOKRS = T_ICORDCSTA1-KOKRS&lt;/P&gt;&lt;P&gt;AND BUZEI = T_ICORDCSTA1-BUZEI&lt;/P&gt;&lt;P&gt;AND GJAHR = T_ICORDCSTA1-FISCPER+0(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward to all Helpful answers........&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward to all Helpful answers........&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SAB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 17:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976139#M399839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T17:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976140#M399840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got most to work but now there is someting wrong with the following statement where i do a read into w_coep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         IF NOT T_COEP IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           READ TABLE T_COEP INTO W_COEP&lt;/P&gt;&lt;P&gt;                             WITH KEY BELNR = W_ICORDCSTA1-BELNR&lt;/P&gt;&lt;P&gt;                                      KOKRS = W_ICORDCSTA1-KOKRS&lt;/P&gt;&lt;P&gt;                                      BUZEI = W_ICORDCSTA1-BUZEI&lt;/P&gt;&lt;P&gt;                                      GJAHR = W_ICORDCSTA1-FISCPER+0(4)&lt;/P&gt;&lt;P&gt;                             BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILL FIELDS WITH DATA FROM COEP (CO OBJECT LINE ITEMS TABLE)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             W_ICORDCSTA1-ZZ_PURCHORD1 = W_COEP-EBELN.&lt;/P&gt;&lt;P&gt;             W_ICORDCSTA1-ZZ_PURORDLI1 = W_COEP-EBELP.&lt;/P&gt;&lt;P&gt;             MODIFY T_ICORDCSTA1 FROM W_ICORDCSTA1 INDEX L_TABIX.&lt;/P&gt;&lt;P&gt;             CLEAR W_ICORDCSTA1.&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;         ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         CLEAR W_COEP.&lt;/P&gt;&lt;P&gt;         CLEAR W_ICORDCSTA1.&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;     REFRESH C_T_DATA.&lt;/P&gt;&lt;P&gt;     C_T_DATA[] = T_ICORDCSTA1[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     REFRESH T_COEP.&lt;/P&gt;&lt;P&gt;     FREE T_COEP.&lt;/P&gt;&lt;P&gt;     FREE T_ICORDCSTA1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 19:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976140#M399840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T19:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976141#M399841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are U sorting the fields of the table T_COEP liike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SORT T_CEOP BY KOKRS BUYEI GJAHR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 19:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976141#M399841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T19:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976142#M399842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a different question. Why don't you mark this thread as answered and open a new thread for the new question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 19:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976142#M399842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T19:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using offsets in a select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976143#M399843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay thanks.  I just did that.  I noticed that even though my talbes are the same the fiedls being moved in are not correct.  Like it is shiftled over&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2007 19:46:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-offsets-in-a-select/m-p/1976143#M399843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-13T19:46:00Z</dc:date>
    </item>
  </channel>
</rss>

