<?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>Question Re: Adobe Form - xfa....explaination in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857647#M1502201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Liem,&lt;/P&gt;&lt;P&gt;xfa is used as accessor  of form properties. For example xfa.record accesses a record say in a table, xfa.layout access the layout of an UI element, xfa.form accesses the form properties, xfa.datasets.data represents the root of the data model and so on.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Similar to these following are also some accessors:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(To see it correctly go to designer help and search with keyword xfa and choose accessor syntex).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Accessor syntax&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;The following table outlines the correct syntax for all accessors. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Notation Description &lt;/P&gt;&lt;P&gt;$ (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this (JavaScript) &lt;/P&gt;&lt;P&gt; Refers to the current field or object. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ = "Tony Blue"&lt;/P&gt;&lt;P&gt;this.rawValue = "Tony Blue"&lt;/P&gt;&lt;P&gt;The above examples set the value of the current field or object to Tony Blue using both FormCalc and JavaScript. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:      These accessors must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;! &lt;/P&gt;&lt;P&gt; Represents the root of the data model, xfa.datasets. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!dbresults&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.datasets.dbresults&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$data (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.datasets.data (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the data model, xfa.datasets.data. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$data.purchaseOrder.total&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.datasets.data.purchaseOrder.total&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$template (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.template&lt;/P&gt;&lt;P&gt;(JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the template model, xfa.template. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$template.purchaseOrder.item[1]&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.template.purchaseOrder.item[1]&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$form (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.form (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the form model, xfa.form. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$form.purchaseOrder.tax[0]&lt;/P&gt;&lt;P&gt;is equivalent to stating: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.form.purchaseOrder.tax[0]&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$layout (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.layout (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the layout model, xfa.layout. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$layout.purchaseOrder.tax[0]&lt;/P&gt;&lt;P&gt;is equivalent to stating: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.layout.purchaseOrder.tax[0] &lt;/P&gt;&lt;P&gt;$record (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.record (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the current record of a collection of data, such as from an XML file. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$record.header.txtOrderedByCity&lt;/P&gt;&lt;P&gt;references the txtOrderedByCity node within the header node of the current XML data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$event (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.event (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the current form object event. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$event.name&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.event.name&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period.&lt;/P&gt;&lt;P&gt;For more information see About the event accessor. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;$host (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.host (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the host object. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$host.name&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.host.name&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period.&lt;/P&gt;&lt;P&gt;For more information, see About the host accessor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vaibhav Tiwari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 03:29:11 GMT</pubDate>
    <dc:creator>vaibhav_tiwari</dc:creator>
    <dc:date>2008-05-15T03:29:11Z</dc:date>
    <item>
      <title>Adobe Form - xfa....explaination</title>
      <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaq-p/3857646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very new to ADOBE forms and need some explainations please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in Javascript, please tell me the what are the difference in "xfa.record..", "xfa.layout..", "xfa.form...", "xfa.datasets..", "xfa.data.."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am reading Adobe pdf manual but can't seem to find the answer.. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded for any reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 00:29:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaq-p/3857646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T00:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe Form - xfa....explaination</title>
      <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857647#M1502201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Liem,&lt;/P&gt;&lt;P&gt;xfa is used as accessor  of form properties. For example xfa.record accesses a record say in a table, xfa.layout access the layout of an UI element, xfa.form accesses the form properties, xfa.datasets.data represents the root of the data model and so on.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Similar to these following are also some accessors:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(To see it correctly go to designer help and search with keyword xfa and choose accessor syntex).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Accessor syntax&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;The following table outlines the correct syntax for all accessors. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Notation Description &lt;/P&gt;&lt;P&gt;$ (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this (JavaScript) &lt;/P&gt;&lt;P&gt; Refers to the current field or object. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ = "Tony Blue"&lt;/P&gt;&lt;P&gt;this.rawValue = "Tony Blue"&lt;/P&gt;&lt;P&gt;The above examples set the value of the current field or object to Tony Blue using both FormCalc and JavaScript. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:      These accessors must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;! &lt;/P&gt;&lt;P&gt; Represents the root of the data model, xfa.datasets. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!dbresults&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.datasets.dbresults&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$data (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.datasets.data (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the data model, xfa.datasets.data. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$data.purchaseOrder.total&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.datasets.data.purchaseOrder.total&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$template (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.template&lt;/P&gt;&lt;P&gt;(JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the template model, xfa.template. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$template.purchaseOrder.item[1]&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.template.purchaseOrder.item[1]&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$form (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.form (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the form model, xfa.form. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$form.purchaseOrder.tax[0]&lt;/P&gt;&lt;P&gt;is equivalent to stating: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.form.purchaseOrder.tax[0]&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$layout (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.layout (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the root of the layout model, xfa.layout. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$layout.purchaseOrder.tax[0]&lt;/P&gt;&lt;P&gt;is equivalent to stating: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.layout.purchaseOrder.tax[0] &lt;/P&gt;&lt;P&gt;$record (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.record (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the current record of a collection of data, such as from an XML file. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$record.header.txtOrderedByCity&lt;/P&gt;&lt;P&gt;references the txtOrderedByCity node within the header node of the current XML data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period. &lt;/P&gt;&lt;P&gt;$event (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.event (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the current form object event. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$event.name&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.event.name&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period.&lt;/P&gt;&lt;P&gt;For more information see About the event accessor. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;$host (FormCalc) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.host (JavaScript) &lt;/P&gt;&lt;P&gt; Represents the host object. For example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$host.name&lt;/P&gt;&lt;P&gt;is equivalent to: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xfa.host.name&lt;/P&gt;&lt;P&gt;Note:      This accessor must appear at the beginning of a hierarchy reference, that is, before the first period.&lt;/P&gt;&lt;P&gt;For more information, see About the host accessor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vaibhav Tiwari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 03:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857647#M1502201</guid>
      <dc:creator>vaibhav_tiwari</dc:creator>
      <dc:date>2008-05-15T03:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe Form - xfa....explaination</title>
      <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857648#M1502202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Liem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont know if you have the below guide or not, It might be very helpful for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf" target="test_blank"&gt;http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arafat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 04:10:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857648#M1502202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T04:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe Form - xfa....explaination</title>
      <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857649#M1502203</link>
      <description>&lt;P&gt;dead link &lt;A href="http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf" target="_blank"&gt;http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 10:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857649#M1502203</guid>
      <dc:creator>clemenssss</dc:creator>
      <dc:date>2023-07-18T10:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe Form - xfa....explaination</title>
      <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857650#M1502204</link>
      <description>&lt;P&gt;anyone got the actual link?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 21:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857650#M1502204</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2023-08-25T21:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe Form - xfa....explaination</title>
      <link>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857651#M1502205</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;clemens.li&lt;/SPAN&gt; I would use either this html version: &lt;A href="https://help.adobe.com/en_US/livecycle/11.0/DesignerScriptingRef/index.html"&gt;https://help.adobe.com/en_US/livecycle/11.0/DesignerScriptingRef/index.html&lt;/A&gt; or this PDF version that can be downloaded (I prefer this so I can save a long term reference): &lt;A href="https://helpx.adobe.com/pdf/aem-forms/6-3/scripting-reference.pdf"&gt;https://helpx.adobe.com/pdf/aem-forms/6-3/scripting-reference.pdf&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 22:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/adobe-form-xfa-explaination/qaa-p/3857651#M1502205</guid>
      <dc:creator>Ryan-Crosby</dc:creator>
      <dc:date>2023-08-25T22:47:19Z</dc:date>
    </item>
  </channel>
</rss>

