<?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: Smartforms - runtime errors call_function_parm_missing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877978#M1960397</link>
    <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/303802/dipaknakum.html"&gt;DIPAK NAKUM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;you define it in import tab but you call it under table parameter so you got dump.&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2019 06:44:06 GMT</pubDate>
    <dc:creator>DoanManhQuynh</dc:creator>
    <dc:date>2019-03-26T06:44:06Z</dc:date>
    <item>
      <title>Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877972#M1960391</link>
      <description>&lt;P&gt;REPORT ZTEST.&lt;BR /&gt; TABLES : LFA1,LFBK,ACDOCA.&lt;BR /&gt; &lt;/P&gt;
  &lt;P&gt;TYPES : begin of TY_FINAL,&lt;BR /&gt; DATE type LFA1-ERDAT,&lt;BR /&gt; BENIF_NAME TYPE LFA1-NAME1,&lt;BR /&gt; BENIF_ACNO TYPE LFBK-BANKN,&lt;BR /&gt; CONF_BENIF_ACNO TYPE LFBK-BANKN,&lt;BR /&gt; BENIF_BANK TYPE LFA1-NAME1,&lt;BR /&gt; BENIF_BRANCH TYPE LFA1-NAME1,&lt;BR /&gt; BENIF_IFSC TYPE LFBK-BANKL,&lt;BR /&gt; BENIF_CITY TYPE LFA1-ORT01,&lt;BR /&gt; BENIF_AMT_RS TYPE PC207-BETRG,&lt;BR /&gt; BENIF_AMT_WRD(100) TYPE c,&lt;BR /&gt; end of TY_FINAL.&lt;BR /&gt; &lt;BR /&gt; DATA : IT_FINAL TYPE TABLE OF TY_FINAL,&lt;BR /&gt; WA_FINAL TYPE TY_FINAL.&lt;/P&gt;
  &lt;P&gt;DATA: FNAME TYPE rs38l_fnam.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;SELECTION-SCREEN:BEGIN OF BLOCK TEST2 WITH FRAME TITLE text-002.&lt;BR /&gt; PARAMETERS : P_DATE TYPE LFA1-ERDAT,&lt;BR /&gt; P_B_NAME TYPE LFA1-NAME1,&lt;BR /&gt; P_ACNO TYPE LFBK-BANKN,&lt;BR /&gt; P_CACNO TYPE LFBK-BANKN,&lt;BR /&gt; P_BANK TYPE LFA1-NAME1,&lt;BR /&gt; P_BRAN TYPE LFA1-NAME1,&lt;BR /&gt; P_IFSC TYPE LFBK-BANKL,&lt;BR /&gt; P_CITY TYPE LFA1-ORT01,&lt;BR /&gt; P_AMRRS TYPE PC207-BETRG.&lt;BR /&gt; SELECTION-SCREEN : END OF BLOCK TEST2.&lt;/P&gt;
  &lt;P&gt;AT SELECTION-SCREEN.&lt;BR /&gt; &lt;BR /&gt; IF NOT P_ACNO EQ P_CACNO.&lt;BR /&gt; MESSAGE 'Beneficiary A/C Number &amp;amp; Confirm A/c Number Not Same !!!' TYPE 'E'.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; DATA WORDS(100) TYPE C.&lt;BR /&gt; CALL FUNCTION 'HR_IN_CHG_INR_WRDS'&lt;BR /&gt; EXPORTING&lt;BR /&gt; AMT_IN_NUM = P_AMRRS&lt;BR /&gt; IMPORTING&lt;BR /&gt; AMT_IN_WORDS = WORDS&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; DATA_TYPE_MISMATCH = 1&lt;BR /&gt; OTHERS = 2.&lt;BR /&gt; &lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt; WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; WA_FINAL-DATE = P_DATE.&lt;BR /&gt; WA_FINAL-BENIF_NAME = P_B_NAME.&lt;BR /&gt; WA_FINAL-BENIF_ACNO = P_ACNO.&lt;BR /&gt; WA_FINAL-CONF_BENIF_ACNO = P_CACNO.&lt;BR /&gt; WA_FINAL-BENIF_BANK = P_BANK.&lt;BR /&gt; WA_FINAL-BENIF_BRANCH = P_BRAN.&lt;BR /&gt; WA_FINAL-BENIF_IFSC = P_IFSC.&lt;BR /&gt; WA_FINAL-BENIF_CITY = P_CITY.&lt;BR /&gt; WA_FINAL-BENIF_AMT_RS = P_AMRRS.&lt;BR /&gt; WA_FINAL-BENIF_AMT_WRD = WORDS.&lt;BR /&gt; &lt;BR /&gt; INSERT WA_FINAL INTO TABLE IT_FINAL.&lt;BR /&gt; &lt;BR /&gt; *WA_FINAL-BENIF_AMT_RS = P_AMRRS.&lt;BR /&gt; &lt;BR /&gt; CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;BR /&gt; EXPORTING&lt;BR /&gt; FORMNAME = 'ZRTGS_PRINTING'&lt;BR /&gt; * VARIANT = ' '&lt;BR /&gt; * DIRECT_CALL = ' '&lt;BR /&gt; IMPORTING&lt;BR /&gt; FM_NAME = FNAME&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; NO_FORM = 1&lt;BR /&gt; NO_FUNCTION_MODULE = 2&lt;BR /&gt; OTHERS = 3.&lt;BR /&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;BR /&gt; * Implement suitable error handling here&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; CALL FUNCTION FNAME&lt;BR /&gt; * EXPORTING&lt;BR /&gt; * WA_FINAL = WA_FINAL&lt;BR /&gt; TABLES&lt;BR /&gt; LT_FINAL = IT_FINAL&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; FORMATTING_ERROR = 1&lt;BR /&gt; INTERNAL_ERROR = 2&lt;BR /&gt; SEND_ERROR = 3&lt;BR /&gt; USER_CANCELED = 4&lt;BR /&gt; OTHERS = 5.&lt;BR /&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;BR /&gt; * Implement suitable error handling here&lt;BR /&gt; ENDIF.&lt;/P&gt;
  &lt;P&gt;IN THE STAMART FORMS I HAD JUST ADDED :&lt;/P&gt;
  &lt;P&gt;FORM INTERFACE-&amp;gt;IMPORT&lt;/P&gt;
  &lt;P&gt;IT_FINAL LIKE ZRTGS&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 12:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877972#M1960391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-22T12:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877973#M1960392</link>
      <description>&lt;P&gt;Where exactly are you getting this issue? It could be simple mistake, if you debug or by looking at the FM import/tables parameters you could solve it yourself.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 13:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877973#M1960392</guid>
      <dc:creator>srikanthnalluri</dc:creator>
      <dc:date>2019-03-22T13:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877974#M1960393</link>
      <description>&lt;P&gt;dump's screen shoots&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1646555-err1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1646556-err2.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Mar 2019 03:35:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877974#M1960393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-23T03:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877975#M1960394</link>
      <description>&lt;P&gt;it said parameter missing, did you check your smartform interface yet?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 01:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877975#M1960394</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-03-25T01:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877976#M1960395</link>
      <description>&lt;P&gt;I had import Internal table in form interface import tab.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1644588-e1.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 03:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877976#M1960395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-03-25T03:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877977#M1960396</link>
      <description>&lt;P&gt;You declared the parameter as 'Import' and not as 'table', adapt your call. &lt;/P&gt;&lt;P&gt;e.g. Find generated FM name in Smartforms and use it as a pattern in your code, then replace the generated name with the correct variable..&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 10:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877977#M1960396</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2019-03-25T10:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - runtime errors call_function_parm_missing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877978#M1960397</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/303802/dipaknakum.html"&gt;DIPAK NAKUM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;you define it in import tab but you call it under table parameter so you got dump.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 06:44:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-runtime-errors-call-function-parm-missing/m-p/11877978#M1960397</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-03-26T06:44:06Z</dc:date>
    </item>
  </channel>
</rss>

