<?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 Perform/Form using structures and illegal structure names in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093508#M978847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,i want to avoid false declarations and ask you how to work with the following statements when switching over to a unicode system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM xyz using Z-BLA&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;FORM xyz using Z-BLA&lt;/P&gt;&lt;P&gt;   Z-BLA=.....&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for what i understand PERFORM xyz using Z-BLA (structure element Z-BLA well defined) is ok,as i need to tell the form what data it has to work with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unfortunately the validator tells me that Z-BLA in FORM xyz using Z-BLA is not allowed because of the minus so i change it to Z_BLA.&lt;/P&gt;&lt;P&gt;so now for what me newbie does not know for sure: Do i have to change Z-BLA=..... to Z_BLA ? I ask because the validator does not tell me to change that!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be of course awarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2008 10:05:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-25T10:05:52Z</dc:date>
    <item>
      <title>Perform/Form using structures and illegal structure names</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093508#M978847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,i want to avoid false declarations and ask you how to work with the following statements when switching over to a unicode system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM xyz using Z-BLA&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;FORM xyz using Z-BLA&lt;/P&gt;&lt;P&gt;   Z-BLA=.....&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for what i understand PERFORM xyz using Z-BLA (structure element Z-BLA well defined) is ok,as i need to tell the form what data it has to work with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unfortunately the validator tells me that Z-BLA in FORM xyz using Z-BLA is not allowed because of the minus so i change it to Z_BLA.&lt;/P&gt;&lt;P&gt;so now for what me newbie does not know for sure: Do i have to change Z-BLA=..... to Z_BLA ? I ask because the validator does not tell me to change that!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be of course awarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 10:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093508#M978847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T10:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Perform/Form using structures and illegal structure names</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093509#M978848</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;     Declare the TYPE of datatype or structure in FORM and if Z_BLA is a structure then you can directly use the fields with the hyphen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;FORM form1 using VAR1 type &amp;lt;DATATYPE&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM form1 using &amp;lt;VALUE1&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 10:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093509#M978848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T10:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Perform/Form using structures and illegal structure names</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093510#M978849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the form you have to change it to Z_BLA. You could also name it z_bla_input if you want. It is just a mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you need to type it:&lt;/P&gt;&lt;P&gt;FORM xyz using z_bla_input type any. (or the exact type if it is known).&lt;/P&gt;&lt;P&gt;z_bla_input =.....&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Edwin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 10:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-form-using-structures-and-illegal-structure-names/m-p/4093510#M978849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T10:13:01Z</dc:date>
    </item>
  </channel>
</rss>

