<?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: Error Msg: Field is unknown in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556427#M1430544</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, need to revise my scenario again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Z_MATNR is a custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form Interface&lt;/P&gt;&lt;P&gt;IT_PRINT TYPE TABLE OF Z_MATNR&lt;/P&gt;&lt;P&gt;P_PAGE TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Definitions&lt;/P&gt;&lt;P&gt;GWA_PRINT TYPE Y_MATNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Definitions&amp;gt;Types Tab&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF Y_MATNR,&lt;/P&gt;&lt;P&gt;MATNR TYPE MATNR,&lt;/P&gt;&lt;P&gt;MAKTX TYPE MAKTX,&lt;/P&gt;&lt;P&gt;END OF Y_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Definitions&amp;gt;INITIALIZATION tab&lt;/P&gt;&lt;P&gt;Input Parameters: IT_IDPRINT (I also try to remove this one)&lt;/P&gt;&lt;P&gt;Output Parameters: IT_IDPRINT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a secondary window, inside it is a text node and code node.&lt;/P&gt;&lt;P&gt;In my code node, I have the following declared:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
READ TABLE IT_PRINT INTO GWA_PRINT INDEX 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my text node, I have&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;amp;GWA_PRINT-MATNR&amp;amp;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having an error:&lt;/P&gt;&lt;P&gt;After doing a code check in SF, I have the error:&lt;/P&gt;&lt;P&gt;The field IT_PRINT is unknown, but there is a field with the similar name GWA_PRINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the cause? I have them all declared already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jaime Cabanban on Feb 19, 2010 2:37 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Feb 2010 18:31:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-18T18:31:13Z</dc:date>
    <item>
      <title>SmartForms: Error Msg: Field is unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556425#M1430542</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;I have SmartForm(SF) with the following definition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Z_MATNR is a custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Form Interface&lt;/U&gt;&lt;/P&gt;&lt;P&gt;  P_PRINT TYPE Z_MATNR&lt;/P&gt;&lt;P&gt;  P_PAGE TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Global Definitions&lt;/U&gt;&lt;/P&gt;&lt;P&gt;  GWA_PRINT TYPE Y_MATNR&lt;/P&gt;&lt;P&gt;  IT_PRINT       TYPE TABLE OF Y_MATNR&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   &lt;U&gt;Global Definitions&amp;gt;Types Tab&lt;/U&gt;&lt;/P&gt;&lt;P&gt;     TYPES: BEGIN OF Y_MATNR,&lt;/P&gt;&lt;P&gt;                    MATNR TYPE MATNR,&lt;/P&gt;&lt;P&gt;                    MAKTX TYPE MAKTX,&lt;/P&gt;&lt;P&gt;                 END     OF Y_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a secondary window, inside it is a text node and code node. &lt;/P&gt;&lt;P&gt;In my code node, I have the following declared:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
READ TABLE IT_PRINT INTO GWA_PRINT INDEX 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my text node, I have&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;amp;GWA_PRINT-MATNR&amp;amp;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having an error:&lt;/P&gt;&lt;P&gt;After doing a &lt;STRONG&gt;code check in SF&lt;/STRONG&gt;, I have the error:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The field IT_PRINT is unknown, but there is a field with the similar name GWA_PRINT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the cause?  I have them all declared already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2010 17:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556425#M1430542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-18T17:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: SmartForms: Error Msg: Field is unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556426#M1430543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you entered IT_PRINT in import parameters.. in the program lines where you are reading the table..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2010 18:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556426#M1430543</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2010-02-18T18:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: SmartForms: Error Msg: Field is unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556427#M1430544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, need to revise my scenario again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Z_MATNR is a custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form Interface&lt;/P&gt;&lt;P&gt;IT_PRINT TYPE TABLE OF Z_MATNR&lt;/P&gt;&lt;P&gt;P_PAGE TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Definitions&lt;/P&gt;&lt;P&gt;GWA_PRINT TYPE Y_MATNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Definitions&amp;gt;Types Tab&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF Y_MATNR,&lt;/P&gt;&lt;P&gt;MATNR TYPE MATNR,&lt;/P&gt;&lt;P&gt;MAKTX TYPE MAKTX,&lt;/P&gt;&lt;P&gt;END OF Y_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global Definitions&amp;gt;INITIALIZATION tab&lt;/P&gt;&lt;P&gt;Input Parameters: IT_IDPRINT (I also try to remove this one)&lt;/P&gt;&lt;P&gt;Output Parameters: IT_IDPRINT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a secondary window, inside it is a text node and code node.&lt;/P&gt;&lt;P&gt;In my code node, I have the following declared:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
READ TABLE IT_PRINT INTO GWA_PRINT INDEX 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my text node, I have&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;amp;GWA_PRINT-MATNR&amp;amp;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having an error:&lt;/P&gt;&lt;P&gt;After doing a code check in SF, I have the error:&lt;/P&gt;&lt;P&gt;The field IT_PRINT is unknown, but there is a field with the similar name GWA_PRINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the cause? I have them all declared already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jaime Cabanban on Feb 19, 2010 2:37 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2010 18:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556427#M1430544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-18T18:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: SmartForms: Error Msg: Field is unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556428#M1430545</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;Have you also entered the table IT_PRINT in the input parameters of Code tab? if not entered, please enter and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 01:59:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556428#M1430545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-19T01:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: SmartForms: Error Msg: Field is unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556429#M1430546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaime,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You probably need to declare both variables you are using, in the Import &amp;amp; Export Parameters of your Coding Node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then You can get result of your below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;READ TABLE IT_PRINT INTO GWA_PRINT INDEX 3.**&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 10:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/6556429#M1430546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-20T10:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: SmartForms: Error Msg: Field is unknown</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/14218912#M2042470</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;BR /&gt;I'm facing same issue in my smartform.&lt;BR /&gt;Could you help, how you solve it.&lt;BR /&gt;I defined the field in input/output parameters as suggested. but still getting the error same as you for my field.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 14:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-error-msg-field-is-unknown/m-p/14218912#M2042470</guid>
      <dc:creator>Sunita101</dc:creator>
      <dc:date>2025-09-16T14:38:48Z</dc:date>
    </item>
  </channel>
</rss>

