<?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: Why Elements are not showing on Script (SAP Cloud Application Studio - 1705) in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488621#M87276</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Please verify if "Mass" check box is unmarked while you generate script files. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/54281-cusersi336320desktopcheckbox.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Or else, Please use following code to access ID.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt; this.GetFirst().ID.content&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;
  &lt;P&gt;Saurabh&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jul 2017 16:33:48 GMT</pubDate>
    <dc:creator>former_member226</dc:creator>
    <dc:date>2017-07-14T16:33:48Z</dc:date>
    <item>
      <title>Why Elements are not showing on Script (SAP Cloud Application Studio - 1705)</title>
      <link>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaq-p/488620</link>
      <description>&lt;P&gt;Hi There.&lt;/P&gt;
  &lt;P&gt;I have created an extended element as bellow&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;import AP.Common.GDT;
import AP.CRM.Global;

[Extension] businessobject AP.CRM.Global:CustomerQuote {
        // You must activate this business object before you can access the extension fields
        // or messages in script files, forms, and screens.
   	    node Item {
		[Label("Long Description")] 
		element ZLongDesc : LANGUAGEINDEPENDENT_EXTENDED_Text;
   	         		
            node ItemEntitledProduct {
      	    } 
        } 
       		node ServiceReferenceObject {
   	    } 
}
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;All works find and Activates without any issue. However this element is not showing under the script file (not even the standard ones).&lt;/P&gt;
  &lt;P&gt;Under Item.node Event-AfterModify.absl no element is available to code&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;import ABSL;

this.ZLongDesc = "-- Winter is Coming --";
var b = this.ID;
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;what am I missing ?&lt;/P&gt;
  &lt;P&gt;I can Activate the Extension but not with the event. &lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/52268-elementissue.jpg" /&gt;&lt;/P&gt;
  &lt;P&gt;Than you all in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 08:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaq-p/488620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-07-14T08:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Why Elements are not showing on Script (SAP Cloud Application Studio - 1705)</title>
      <link>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488621#M87276</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Please verify if "Mass" check box is unmarked while you generate script files. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/54281-cusersi336320desktopcheckbox.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Or else, Please use following code to access ID.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt; this.GetFirst().ID.content&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;
  &lt;P&gt;Saurabh&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 16:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488621#M87276</guid>
      <dc:creator>former_member226</dc:creator>
      <dc:date>2017-07-14T16:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why Elements are not showing on Script (SAP Cloud Application Studio - 1705)</title>
      <link>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488622#M87277</link>
      <description>&lt;P&gt;Thanks Saurabah.&lt;/P&gt;
  &lt;P&gt;I can now access as you requested but:&lt;/P&gt;
  &lt;P&gt;Does this.GetFirst().ZLongDesc = "Thank you" will save the information into the element ?&lt;/P&gt;
  &lt;P&gt;If Yes, what else do I need to do for ZLongDesc be available at XML Data (OutputHistory) for Quotes ?&lt;/P&gt;
  &lt;P&gt;Thank you, I really appreciate your help.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jul 2017 02:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488622#M87277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-07-15T02:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why Elements are not showing on Script (SAP Cloud Application Studio - 1705)</title>
      <link>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488623#M87278</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Yes, You text will be saved into the element but to store the value for each element then you have to use FOREACH to access/update all the elements of BO collection.&lt;/P&gt;
  &lt;P&gt;Coming to your question about making this field available into the XML, Please create a "Process Extension Scenario" and choose the specific one and then field shoul be available in the XML.&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;
  &lt;P&gt;Saurabh&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jul 2017 14:26:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/why-elements-are-not-showing-on-script-sap-cloud-application-studio-1705/qaa-p/488623#M87278</guid>
      <dc:creator>former_member226</dc:creator>
      <dc:date>2017-07-15T14:26:42Z</dc:date>
    </item>
  </channel>
</rss>

