<?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: how to write the syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307696#M1223956</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nayar , try this logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if (&amp;lt;sales_order-field name&amp;gt; NQ &amp;lt;offer_date-field name&amp;gt; and flag = 1.)
exit.
else.
INSERT into &amp;lt;z03_sd_idx_ccli&amp;gt; from &amp;lt; source_name&amp;gt;.
INSERT into &amp;lt;z03_sd_data_ccli&amp;gt; from &amp;lt; source_name&amp;gt;.
if sy-subrc eq 0.
 flag = 1.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Mar 2009 13:35:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-04T13:35:55Z</dc:date>
    <item>
      <title>how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307690#M1223950</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;can anybody provide me the what is the syntax for below description??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the sales order is not at offer date, then table z03_sd_idx_ccli and z03_sd_data_ccli must not be updated. (If they were updatings, they could not be chosen again) &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;navketan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307690#M1223950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T10:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307691#M1223951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Navketan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      You can write your logic something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If sales_order eq offer_date &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update z03_sd_idx_ccli and z03_sd_data_ccli&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;Much Regards,&lt;/P&gt;&lt;P&gt;Amuktha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307691#M1223951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T10:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307692#M1223952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can somebody send more elaborately&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 11:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307692#M1223952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T11:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307693#M1223953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If salesorder eq offerdate &lt;/P&gt;&lt;P&gt;modify z03_sd_idx_ccli and z03_sd_data_ccli&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u use modify statement then system itself checks in the table that the partcicular entry is already exist or not.if this  entry doest exist then only it will create the entry.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 11:28:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307693#M1223953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T11:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307694#M1223954</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;Instead of telling   " if both the dates are not equal.....do not update."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write   " If both the dates are equal...then update".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If    date1 = date2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2009 04:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307694#M1223954</guid>
      <dc:creator>Sathya_Gunasekaran</dc:creator>
      <dc:date>2009-03-03T04:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307695#M1223955</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;If So_date = Offer_date.&lt;/P&gt;&lt;P&gt;modify z03_sd_idx_ccli  from wa.&lt;/P&gt;&lt;P&gt;modify z03_sd_data_ccli from wa1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;write code for next time could not be chosen again.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 07:01:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307695#M1223955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T07:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to write the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307696#M1223956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nayar , try this logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if (&amp;lt;sales_order-field name&amp;gt; NQ &amp;lt;offer_date-field name&amp;gt; and flag = 1.)
exit.
else.
INSERT into &amp;lt;z03_sd_idx_ccli&amp;gt; from &amp;lt; source_name&amp;gt;.
INSERT into &amp;lt;z03_sd_data_ccli&amp;gt; from &amp;lt; source_name&amp;gt;.
if sy-subrc eq 0.
 flag = 1.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 13:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-the-syntax/m-p/5307696#M1223956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T13:35:55Z</dc:date>
    </item>
  </channel>
</rss>

