<?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: Generate Dinamically Variables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566122#M255782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in a pbo module have the following:&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;screen_field&amp;gt;,&amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;lv_campo = 'P0000-BEGDA'.&lt;/P&gt;&lt;P&gt;create data dref type (lv_campo).&lt;/P&gt;&lt;P&gt;assign dref-&amp;gt;* to &amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;move '20060801' to &amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = lv_campo.&lt;/P&gt;&lt;P&gt;assign (lv_campo) to &amp;lt;screen_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;screen_field&amp;gt; = &amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Oct 2006 23:12:56 GMT</pubDate>
    <dc:creator>former_member186741</dc:creator>
    <dc:date>2006-10-04T23:12:56Z</dc:date>
    <item>
      <title>Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566116#M255776</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 wont generate dinamically some variables type ref Data Dictionary type.&lt;/P&gt;&lt;P&gt;And I wont move values in these variables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In what way can I do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Angela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 11:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566116#M255776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T11:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566117#M255777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for something like Field symbols?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA LETTER TYPE C. &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F&amp;gt; TYPE ANY. &lt;/P&gt;&lt;P&gt;ASSIGN LETTER TO &amp;lt;F&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field symbol has the type C and output length 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN LETTER TO &amp;lt;F&amp;gt; TYPE 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 11:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566117#M255777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T11:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566118#M255778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this out:&lt;/P&gt;&lt;P&gt;REPORT ZNRW_DYN_TAB_TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : P_TAB(30) DEFAULT 'VBAK'.&lt;/P&gt;&lt;P&gt;parameters p_recs(3) type n default 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : QUERY_TABLE(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUERY_TABLE = P_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA DREF TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;DATA tabDREF TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;struc&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;tab&amp;gt; TYPE table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA DREF TYPE (QUERY_TABLE).&lt;/P&gt;&lt;P&gt;ASSIGN DREF-&amp;gt;* TO &amp;lt;struc&amp;gt;.&lt;/P&gt;&lt;P&gt;CREATE DATA tabdref TYPE table OF (QUERY_TABLE).&lt;/P&gt;&lt;P&gt;ASSIGN tabDREF-&amp;gt;* TO &amp;lt;tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT single * UP TO p_recs ROWS FROM (QUERY_TABLE) INTO &amp;lt;struc&amp;gt; .&lt;/P&gt;&lt;P&gt;append &amp;lt;struc&amp;gt; to &amp;lt;tab&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 11:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566118#M255778</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-10-04T11:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566119#M255779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;But at the initialization of &amp;lt;struc&amp;gt;  I want that also the corresponding dynpro fields are initialized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the text field defined as P0000-BEGDA (it is a structure in Data Dictionary ) on the dynpro and I write the follow code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_campo = 'P0000-BEGDA'.&lt;/P&gt;&lt;P&gt;create data dref type (lv_campo).&lt;/P&gt;&lt;P&gt;assign dref-&amp;gt;* to &amp;lt;struc&amp;gt;.&lt;/P&gt;&lt;P&gt;move '20060801' to &amp;lt;struc&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this &amp;lt;struc&amp;gt; should update text field P0000-BEGDA on the dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In what way I can do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Angela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566119#M255779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566120#M255780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use FM dynpro_values_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 13:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566120#M255780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T13:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566121#M255781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;The FM Dynpro_Value_Update don't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Angela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 14:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566121#M255781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T14:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Dinamically Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566122#M255782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in a pbo module have the following:&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;screen_field&amp;gt;,&amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;lv_campo = 'P0000-BEGDA'.&lt;/P&gt;&lt;P&gt;create data dref type (lv_campo).&lt;/P&gt;&lt;P&gt;assign dref-&amp;gt;* to &amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;move '20060801' to &amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = lv_campo.&lt;/P&gt;&lt;P&gt;assign (lv_campo) to &amp;lt;screen_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;screen_field&amp;gt; = &amp;lt;work&amp;gt;.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 23:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generate-dinamically-variables/m-p/1566122#M255782</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-10-04T23:12:56Z</dc:date>
    </item>
  </channel>
</rss>

