<?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: Problem with amount in Background scheduling in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868118#M1138145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move the currency field to Character field using Write statement and pass it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2008 15:58:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-20T15:58:26Z</dc:date>
    <item>
      <title>Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868116#M1138143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am tryng to execute a BDC in background, when I am trying to place amount in the amount filed I am getting an error ' Formatting error in the field ANBZ-NAFAV ; input should be in the form ___.___.___.__~,___V'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what could be the probable wrong witht his?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 15:50:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868116#M1138143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T15:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868117#M1138144</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;Use WRITE statament in order to transfer the value in the right format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: CHAR_VALUE(20) TYPE C.

ANBZ-NAFAV

WRITE ANBZ-NAFAV CURRENCY ANBZ-WAERS TO CHAR_VALUE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So transfer the CHAR_VALUE to BDC 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>Thu, 20 Nov 2008 15:56:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868117#M1138144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T15:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868118#M1138145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move the currency field to Character field using Write statement and pass it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 15:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868118#M1138145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T15:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868119#M1138146</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;thanks for the reply,&lt;/P&gt;&lt;P&gt;I have done whatever yu said, but when I execute the following code with respect that field, the properties of 'fval'  field are appying to that, FVAL field length is 132, as the field is P type, its getting right justified.&lt;/P&gt;&lt;P&gt;and when its placed in the screen fields, it saying 'Field ANBZ-NAFAV. input value is longer than screen field'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_field USING fnam fval.&lt;/P&gt;&lt;P&gt;  IF fval &amp;lt;&amp;gt; nodata.&lt;/P&gt;&lt;P&gt;    CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;    bdcdata-fnam = fnam.&lt;/P&gt;&lt;P&gt;    bdcdata-fval = fval.&lt;/P&gt;&lt;P&gt;    APPEND bdcdata.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sujatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 16:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868119#M1138146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T16:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868120#M1138147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to condence the value or shift the value deleting leading spaces. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 16:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868120#M1138147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T16:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868121#M1138148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done this, &lt;/P&gt;&lt;P&gt;but when it is moved to Packed field, we cant apply condense function on it, so the problem is here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sujatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2008 05:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868121#M1138148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-23T05:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with amount in Background scheduling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868122#M1138149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue is solved....for your information, I am posting the solution here,&lt;/P&gt;&lt;P&gt;I have left justified the currnecy field content &amp;amp; appended the value to the BDCDATA table. this solved my prroblem.&lt;/P&gt;&lt;P&gt;Pls find the same in bold letters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_field USING fnam fval.&lt;/P&gt;&lt;P&gt;  IF fval &amp;lt;&amp;gt; nodata.&lt;/P&gt;&lt;P&gt;    CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;IF fnam = 'ANBZ-NAFAV'.   " The currency field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      bdcdata-fnam = fnam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE : fval TO bdcdata-fval LEFT-JUSTIFIED.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        write: p_value to i_bdc-fval left-justified.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      bdcdata-fnam = fnam.&lt;/P&gt;&lt;P&gt;      bdcdata-fval = fval.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND bdcdata.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your support&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sujatha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sujatha Reddy on Nov 23, 2008 8:14 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2008 07:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-amount-in-background-scheduling/m-p/4868122#M1138149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-23T07:14:05Z</dc:date>
    </item>
  </channel>
</rss>

