<?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: F1 Function (technical information) at runtime for a parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853913#M1958461</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Sandra! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Aug 2016 12:29:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-08-30T12:29:45Z</dc:date>
    <item>
      <title>F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853908#M1958456</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;I have created a program which generates a selection screen dynamically and then runs it via submit. &lt;/P&gt;&lt;P&gt;I would like to get the technical information of a parameter &lt;SPAN style="font-size: 13.3333px;"&gt;at runtime in the called program. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;F&lt;/SPAN&gt;or exapmle: The technical information I want for P_123 is SPFLI-CONNID.&lt;/P&gt;&lt;P&gt;I do not want the RTTI method describe_by_data solution, as it returns only the absolute_name, type_kind (C), length(16), decimals(0), which is not useful to me. I need smth like the F1 help, TABLENAME-FIELD.&lt;/P&gt;&lt;P&gt;Is there any function to do this? Or some FIND FIRST OCCURRENCE OF p_123 IN (top_include instead of table)?&lt;/P&gt;&lt;P&gt;Thank you guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Matei&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 09:14:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853908#M1958456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-30T09:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853909#M1958457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At runtime your P_123 has the type S_CONN_ID (data element from the ABAP Dictionary) and that is returned by the RTTI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you need to know more? Normally, it is not relevant how the type was defined, but what the type is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really need to know how it was defined, let' say by "TYPE spfli-connid" or by "TYPE s_conn_id" or ..., I'm afraid you have in fact to do some static code analysis, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ REPORT top_include INTO prog.&lt;/P&gt;&lt;P&gt;CONCATENATE LINES OF prog INTO str.&lt;/P&gt;&lt;P&gt;CONDENSE str.&lt;/P&gt;&lt;P&gt;FIND REGEX 'p_123 TYPE (...)' IN str IGNORING CASE SUBMATCHES ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use the SCAN command or ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Horst&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 10:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853909#M1958457</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-08-30T10:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853910#M1958458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your quick answer Horst, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already started debugging to see what happens at F1 help &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt; Was also useful&lt;/P&gt;&lt;P&gt;I need to know the tablename and the field of the parameter as they are in the F1 help, because I need to save them in a database which contains a rsparams kind of structure.&lt;/P&gt;&lt;P&gt;For example: I EQ MARA MATNR 1000036&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I EQ MARC WERKS 1000 ...&lt;/P&gt;&lt;P&gt;These will be used later in order to update those fields.&lt;/P&gt;&lt;P&gt;I will test your solution in a few moments.&lt;/P&gt;&lt;P&gt;Thank you again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 10:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853910#M1958458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-30T10:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853911#M1958459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also started debugging F1 and also played with &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'DYNPRO_FIELD_GET' .... &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact, somewhere there must be a function module that fills the structure that is used for the technical information after F1. Some more debugging should find it. In the end, I guess better than my above "solution". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above I forgot that it is about Dynpro-Fields, where the relevant information is in fact stored somewhere. This is different to pure ABAP fields, where you don't have the information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 10:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853911#M1958459</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-08-30T10:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853912#M1958460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are a few function modules (not released) to retrieve selection screen parameters and their "ddic type". For instance, RS_REPORTSELECTSCREEN_INFO, SELOPTS_AND_PARAMS. RTTI does not retain the table/structure and component, only the underlying type (data element S_CONN_ID in your case)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 12:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853912#M1958460</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-08-30T12:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853913#M1958461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Sandra! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 12:29:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853913#M1958461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-30T12:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853914#M1958462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may use the secret help-id statement:&lt;/P&gt;&lt;P&gt;DATA: lv_help_id TYPE string.&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD p_123 HELP-ID lv_help_id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 11:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853914#M1958462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-31T11:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853915#M1958463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that should do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And not secret. There's even an example under &lt;A href="http://help.sap.com/abapdocu_750/en/index.htm?file=abapdescribe_field.htm"&gt;DESCRIBE FIELD&lt;/A&gt;. &lt;SPAN __jive_emoticon_name="blush" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/blush.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought that would return the name of the DE too, but no it doesn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the points to Shai, no wait, I'm close to diamond ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 12:06:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853915#M1958463</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-08-31T12:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Function (technical information) at runtime for a parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853916#M1958464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Horst Keller wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I thought that would return the name of the DE too, but no it doesn't.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;That's the reason it's secret... &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 12:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-function-technical-information-at-runtime-for-a-parameter/m-p/11853916#M1958464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-31T12:39:03Z</dc:date>
    </item>
  </channel>
</rss>

