<?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: about offset question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502993#M565671</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_vbeln(11),&lt;/P&gt;&lt;P&gt;v_posnr(7).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate  NAST-OBJKY(10) '%' into v_vbeln.&lt;/P&gt;&lt;P&gt;concatenate  NAST-OBJKY+10(6) '%' into v_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single VBELN POSNR&lt;/P&gt;&lt;P&gt;from LIPS&lt;/P&gt;&lt;P&gt;where VBELN like v_vbeln&lt;/P&gt;&lt;P&gt;and POSNR like v_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 03:33:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T03:33:00Z</dc:date>
    <item>
      <title>about offset question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502989#M565667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the table NAST there is a field named OBJKY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use it  in the table LIPS. but in the table LIPS there are two key fields.&lt;/P&gt;&lt;P&gt;if I want to select one line in the table LIPS, I need to know the two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in the table NAST, the field OBJKY contains the two fields together.e.g&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the NAST , the data of the field OBJKY :0080000002000010&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in the LIPS , the VBELN is 0080000002, the POSNR is 000010&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how can I slip the OBJKY to two fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single VBELN POSNR&lt;/P&gt;&lt;P&gt;          from LIPS&lt;/P&gt;&lt;P&gt;          where VBELN = NAST-OBJKY(10)&lt;/P&gt;&lt;P&gt;          and     POSNR = NAST-OBJKY(11)+6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if it is correct. So I need all you help &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 03:27:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502989#M565667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T03:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: about offset question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502990#M565668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Decalre two variables... for example char1 and char2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;char1 = &amp;lt;b&amp;gt;NAST-OBJKY+0(10).&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;char2 = &amp;lt;b&amp;gt;NAST-OBJKY+10(6).&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single VBELN POSNR&lt;/P&gt;&lt;P&gt;from LIPS&lt;/P&gt;&lt;P&gt;where VBELN = &amp;lt;b&amp;gt;char1&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;and POSNR = &amp;lt;b&amp;gt;char2.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 03:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502990#M565668</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-07-12T03:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: about offset question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502991#M565669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if it works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single VBELN POSNR&lt;/P&gt;&lt;P&gt;from LIPS&lt;/P&gt;&lt;P&gt;where VBELN = NAST-OBJKY+0(10)&lt;/P&gt;&lt;P&gt;and POSNR = NAST-OBJKY+10(6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the best option is create another Internal table with two fields VBELN and POSNR and move OBJKY to these fields and use that internal table to query LIPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 03:31:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502991#M565669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T03:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: about offset question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502992#M565670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_vbeln like likp-vbeln,&lt;/P&gt;&lt;P&gt;       v_posnr like likp-posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_vbeln = nast-objky+0(9).&lt;/P&gt;&lt;P&gt;v_posnr = nast-objky+10(6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single VBELN POSNR&lt;/P&gt;&lt;P&gt;from LIPS&lt;/P&gt;&lt;P&gt;where VBELN = v_vbeln&lt;/P&gt;&lt;P&gt;and POSNR = v_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 03:31:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502992#M565670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T03:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: about offset question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502993#M565671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_vbeln(11),&lt;/P&gt;&lt;P&gt;v_posnr(7).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate  NAST-OBJKY(10) '%' into v_vbeln.&lt;/P&gt;&lt;P&gt;concatenate  NAST-OBJKY+10(6) '%' into v_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single VBELN POSNR&lt;/P&gt;&lt;P&gt;from LIPS&lt;/P&gt;&lt;P&gt;where VBELN like v_vbeln&lt;/P&gt;&lt;P&gt;and POSNR like v_posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 03:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502993#M565671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T03:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: about offset question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502994#M565672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;select single VBELN POSNR
from LIPS
where VBELN = NAST-OBJKY(10)
and POSNR = NAST-OBJKY+10(6).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 03:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-offset-question/m-p/2502994#M565672</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-07-12T03:33:05Z</dc:date>
    </item>
  </channel>
</rss>

