<?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: How to read screen field values from PT60 into custom time function program SAP ABAP ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135335#M1975498</link>
    <description>&lt;P&gt;Hi Dairo,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;I am trying to get the end date as follows but is giving dump saying field symbol not assigned.&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: LV_ENDDA LIKE RPTAXXXX-ENDDA,
      L_VAR_NAME(16)TYPECVALUE'(RPTIME00)ENDDA'.

FIELD-SYMBOLS:&amp;lt;L_FS&amp;gt;TYPEANY,

              &amp;lt;WA&amp;gt;TYPE RESBB.

ASSIGN(L_VAR_NAME)TO&amp;lt;L_FS&amp;gt;.
LV_ENDDA =&amp;lt;L_FS&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 04 Feb 2020 06:10:37 GMT</pubDate>
    <dc:creator>former_member396057</dc:creator>
    <dc:date>2020-02-04T06:10:37Z</dc:date>
    <item>
      <title>How to read screen field values from PT60 into custom time function program SAP ABAP ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135333#M1975496</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I am working on custom time function.I need the screen field values entered on the selection screen of standard program RPTIME00 ( Tcode : PT60 ) into my custom time function program.&lt;/P&gt;
  &lt;P&gt;How to read the values ?&lt;/P&gt;
  &lt;P&gt;Screenshot attached.&lt;A href="https://answers.sap.com/storage/temp/1778636-time-evaluation-pt60.png"&gt;time-evaluation-pt60.png&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
  &lt;P&gt;Shabbir&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 10:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135333#M1975496</guid>
      <dc:creator>former_member396057</dc:creator>
      <dc:date>2020-01-29T10:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to read screen field values from PT60 into custom time function program SAP ABAP ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135334#M1975497</link>
      <description>&lt;P&gt;Hi.&lt;BR /&gt;&lt;BR /&gt;You can use field symbols to read the value of any variable in another program. This example fetchs value from parameter SCHEMA in RPTIME00.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: LV_SCHEMA LIKE RPTAXXXX-RSCHEMA,
      L_VAR_NAME(16) TYPE C VALUE '(RPTIME00)SCHEMA'.

FIELD-SYMBOLS: &amp;lt;L_FS&amp;gt; TYPE ANY,
               &amp;lt;WA&amp;gt;  TYPE RESBB.

ASSIGN (L_VAR_NAME) TO &amp;lt;L_FS&amp;gt;.
LV_SCHEMA = &amp;lt;L_FS&amp;gt;.
&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jan 2020 16:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135334#M1975497</guid>
      <dc:creator>dairolozano</dc:creator>
      <dc:date>2020-01-29T16:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to read screen field values from PT60 into custom time function program SAP ABAP ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135335#M1975498</link>
      <description>&lt;P&gt;Hi Dairo,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;I am trying to get the end date as follows but is giving dump saying field symbol not assigned.&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: LV_ENDDA LIKE RPTAXXXX-ENDDA,
      L_VAR_NAME(16)TYPECVALUE'(RPTIME00)ENDDA'.

FIELD-SYMBOLS:&amp;lt;L_FS&amp;gt;TYPEANY,

              &amp;lt;WA&amp;gt;TYPE RESBB.

ASSIGN(L_VAR_NAME)TO&amp;lt;L_FS&amp;gt;.
LV_ENDDA =&amp;lt;L_FS&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Feb 2020 06:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-screen-field-values-from-pt60-into-custom-time-function-program/m-p/12135335#M1975498</guid>
      <dc:creator>former_member396057</dc:creator>
      <dc:date>2020-02-04T06:10:37Z</dc:date>
    </item>
  </channel>
</rss>

