<?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: Passing variable type c length 64 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312411#M506657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yvalues type char64.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform fcc_values using yvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fcc_values using xvalu es type char64.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2007 15:55:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-14T15:55:57Z</dc:date>
    <item>
      <title>Passing variable type c length 64</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312407#M506653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to pass a variable of length 64 and char type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently this is what I have, but it should be yvalues(64) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: yvalues type c.

perform fcc_values using yvalues.

FORM fcc_values using xvalues type c.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 15:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312407#M506653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T15:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Passing variable type c length 64</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312408#M506654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Megan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the issue? Is your program dumping? Is it not compiling? Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 15:51:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312408#M506654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T15:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Passing variable type c length 64</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312409#M506655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: yvalues(64) type c value 'test123'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform fcc_values using yvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fcc_values using xvalues type char64.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: xvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 15:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312409#M506655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T15:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Passing variable type c length 64</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312410#M506656</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;Not sure what you are looking for..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But try this..You can use CHAR64 data element..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: yvalues TYPE CHAR64.

PERFORM fcc_values USING yvalues.

FORM fcc_values USING xvalues TYPE char64.
....
ENDFORM.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 15:55:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312410#M506656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T15:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Passing variable type c length 64</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312411#M506657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yvalues type char64.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform fcc_values using yvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fcc_values using xvalu es type char64.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 15:55:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312411#M506657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T15:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Passing variable type c length 64</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312412#M506658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to do this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: xvalues(64) type c.

perform fcc_values using xvalues.
write:/ xvalues.

FORM fcc_values using xvalues.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 16:04:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-variable-type-c-length-64/m-p/2312412#M506658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T16:04:06Z</dc:date>
    </item>
  </channel>
</rss>

