<?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 modifying standard sap script in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855993#M669450</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;soled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2007 07:22:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-27T07:22:35Z</dc:date>
    <item>
      <title>problem with modifying standard sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855988#M669445</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;   CAN ANYONE help me on this issue i have modified my sap script form and added a field to it bur the value is not diaplaying, here is my subroutine pool program, name of program is zmm_rpt_challan and routine name is rate.i have define it as follows can anyboby please let me know the problem in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM RATE TABLES in_tab STRUCTURE itcsy&lt;/P&gt;&lt;P&gt;                               out_tab STRUCTURE itcsy.&lt;/P&gt;&lt;P&gt;TABLES:J_1IEXCDTL.&lt;/P&gt;&lt;P&gt;  DATA : V_INTNO(15) TYPE C.&lt;/P&gt;&lt;P&gt;  DATA : RATE TYPE J_1IEXCDTL-EXBAS.&lt;/P&gt;&lt;P&gt;  DATA : V_EXBAS TYPE J_1IEXCDTL-EXBAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE in_tab WITH KEY name = 'J_1IEXCDTL-EXNUM'.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  V_INTNO = in_tab-value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE SUM( EXBAS ) AS EXBAS FROM J_1IEXCDTL INTO             V_EXBAS WHERE EXNUM = V_INTNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF V_EXBAS IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;     V_EXBAS = V_EXBAS * '0.1648'.&lt;/P&gt;&lt;P&gt;  READ TABLE out_tab WITH KEY name = ' V_EXBAS'.&lt;/P&gt;&lt;P&gt;  out_tab-value = V_EXBAS.&lt;/P&gt;&lt;P&gt;  MODIFY out_tab INDEX sy-tabix.&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;my form definition i have define is:-&lt;/P&gt;&lt;P&gt;/E: REVERSAL_AMOUNT&lt;/P&gt;&lt;P&gt;/:   PERFROM RATE IN PROGRAM ZMM_RPT_CHALLAN&lt;/P&gt;&lt;P&gt;/:   USING &amp;amp;J_1IEXCDTL-EXBAS&amp;amp;&lt;/P&gt;&lt;P&gt;/:   CHANGING &amp;amp;V_EXBAS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I3  TOTAL REVERSAL AMOUNT IS: &amp;amp;V_EXBAS&amp;amp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 05:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855988#M669445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T05:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modifying standard sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855989#M669446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to pass the value of V_EXBAS from the driver program to SAP SCript.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the WRITE_FORM, add parameter V_EXBAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 05:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855989#M669446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T05:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modifying standard sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855990#M669447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I AM USING STANDARD DRIVER PROGRAM AND USING SUBROUTINE TO CALL IN FORM DIRECTLY WIDOUT CHANGING MY DRIVER PROGRAM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 06:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855990#M669447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T06:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modifying standard sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855991#M669448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may be a spacing issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ITCSY structure has a field value which is 255 characters long.  When you place a numeric value in this field, by default it is placed right justified (ie has 200+ leading spaces).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you include this in your script you only see the leading spaces unless your field is on a very long line, and the field may be truncated to a shorter length when moved into the target field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the ABAP form, try replacing out_tab-value = V_EXBAS. with:&lt;/P&gt;&lt;P&gt;out_tab-value+0(20) = V_EXBAS.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;write V_EXBAS to out_tab-value left-justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 06:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855991#M669448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T06:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modifying standard sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855992#M669449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;  i have solved it anyway there was problem with the select query.&lt;/P&gt;&lt;P&gt;                     thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 07:21:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855992#M669449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T07:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modifying standard sap script</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855993#M669450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;soled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 07:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modifying-standard-sap-script/m-p/2855993#M669450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T07:22:35Z</dc:date>
    </item>
  </channel>
</rss>

