<?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: Where-used of ABAP class inside Adobe form interface - Code initialization in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775638#M2023360</link>
    <description>&lt;P&gt;Approach of "not needing" a reference at first place is interesting &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; But still it is a method called from one (or more) places. And I think developer should be able to easily find where it is called?&lt;/P&gt;&lt;P&gt;Developing own "where-used" could be a way indeed. I am looking for some universal trick or something easily doable on any system.&lt;/P&gt;&lt;P&gt;I will mark the answer later. If nobody else have some other input to this. Thank you!&lt;/P&gt;</description>
    <pubDate>Tue, 12 Sep 2023 11:56:46 GMT</pubDate>
    <dc:creator>Tomas_Buryanek</dc:creator>
    <dc:date>2023-09-12T11:56:46Z</dc:date>
    <item>
      <title>Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775634#M2023356</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;we can put code in Adobe form interface (SFP t-code) - &lt;STRONG&gt;Code initialization&lt;/STRONG&gt; section.&lt;/P&gt;
  &lt;P&gt;Lets say we call a method &lt;EM&gt;zcl_adobe-initialization&lt;/EM&gt; there.&lt;/P&gt;
  &lt;P&gt;Now in SE24 it is unfortunately not possible to find where-used of class nor method. It is because form interface code is not the usual "generated" code.&lt;/P&gt;
  &lt;P&gt;Now if someone changes the class method, he/she does not know about the Adobe interface. Not even syntax check knows about the Adobe interface.&lt;/P&gt;
  &lt;P&gt;Does anyone have a trick how to at least reference/connect Adobe interface to ABAP object (Z class)?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 07:33:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775634#M2023356</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-09-12T07:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775635#M2023357</link>
      <description>&lt;P&gt;You mean, in addition to providing clear documentation at class and method level?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 08:53:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775635#M2023357</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-09-12T08:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775636#M2023358</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;raymond.giuseppi&lt;/SPAN&gt; yes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Docu/comments are already in class/method. But some kind of "where-used trick" is needed. To directly point to Adobe interface from class/method.&lt;/P&gt;&lt;P&gt;I do not want to rely on documentation being kept up-to date.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 09:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775636#M2023358</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-09-12T09:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775637#M2023359</link>
      <description>&lt;P&gt;I'm trying to think of some reason why someone might change the interface of&lt;EM&gt; zcl_adobe=&amp;gt;initialization&lt;/EM&gt;. I'm guess it's used by more than one Adobe form interface?&lt;/P&gt;&lt;P&gt;Are the parameters of the type of a data element or some other simple type? The solution there would be to define a structure for the parameter. Then instead of adding new parameters, you just add another field to the structure.&lt;/P&gt;&lt;P&gt;As for a where-used. The interface is stored in table FPINTERFACE. Field interface holds the interface definition as XML. (You can see it if you set a breakpoint at CL_FP_WB_OBJECT-&amp;gt;SAVE_OBJECT - just choose the XML view of the field). You could search the XML of each interface for a reference to the class.&lt;BR /&gt;&lt;BR /&gt;If you want to integrate that into the general where-used, then I guess there's somewhere in implicit enhancement point you could use, or even make a repair.&lt;/P&gt;&lt;P&gt;You could always ask SAP to add it to their where-used code. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 11:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775637#M2023359</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-09-12T11:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775638#M2023360</link>
      <description>&lt;P&gt;Approach of "not needing" a reference at first place is interesting &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; But still it is a method called from one (or more) places. And I think developer should be able to easily find where it is called?&lt;/P&gt;&lt;P&gt;Developing own "where-used" could be a way indeed. I am looking for some universal trick or something easily doable on any system.&lt;/P&gt;&lt;P&gt;I will mark the answer later. If nobody else have some other input to this. Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 11:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775638#M2023360</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2023-09-12T11:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775639#M2023361</link>
      <description>&lt;P&gt;Look at &lt;A href="https://influence.sap.com/sap/ino/#/"&gt;Customer Influence and Adoption&lt;/A&gt; to submit a new improvement request, you're not in too much of a hurry? &lt;/P&gt;&lt;P&gt;(Or go to enhancement of SAP where-used/X-ref tools as suggested by  &lt;SPAN class="mention-scrubbed"&gt;matthew.billingham&lt;/SPAN&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 12:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775639#M2023361</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-09-12T12:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Where-used of ABAP class inside Adobe form interface - Code initialization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775640#M2023362</link>
      <description>&lt;P&gt;So I suppose a &lt;A href="https://help.sap.com/docs/search?q=%22Knowledge%20Transfer%20Documents%22"&gt;Knowledge Transfer Documents&lt;/A&gt; won't either do the trick (even if this kind of document can be found in a where-used search from class or method, it wont jump to Adobe)&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 12:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-used-of-abap-class-inside-adobe-form-interface-code-initialization/m-p/12775640#M2023362</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-09-12T12:57:54Z</dc:date>
    </item>
  </channel>
</rss>

