<?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: Dynamic Field-Symbol assignment - Short Dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227014#M1009683</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe try LIKE this, it works in my (other) program &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....TYPE ANY..... or ANY TABLE ????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONSTANTS:&lt;/P&gt;&lt;P&gt;  c_xlikp(32) TYPE c VALUE '(SAPMV50A)XLIKP',              &lt;/P&gt;&lt;P&gt;  c_xlips(32) TYPE c VALUE '(SAPMV50A)XLIPS[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;   TYPE &lt;STRONG&gt;ANY&lt;/STRONG&gt;,                       "Structure             &lt;/P&gt;&lt;P&gt;   TYPE &lt;STRONG&gt;ANY TABLE&lt;/STRONG&gt;.            "Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN (c_xlikp) TO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 4:44 AM&lt;/P&gt;&lt;P&gt;Text formatting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 4:46 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2008 02:44:18 GMT</pubDate>
    <dc:creator>former_member190578</dc:creator>
    <dc:date>2008-08-12T02:44:18Z</dc:date>
    <item>
      <title>Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227004#M1009673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create three programs as mentioned:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;REPORT  zforms.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  form_fs_assign
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM form_fs_assign.
  FIELD-SYMBOLS &amp;lt;fs&amp;gt; TYPE table.
  DATA: fs_itab LIKE STANDARD TABLE OF tab_matnr WITH HEADER LINE.
  break-point.
  ASSIGN ('(ZPROGRAM1)ITAB[]') TO &amp;lt;fs&amp;gt;.
  IF sy-subrc EQ 0.
    fs_itab[] = &amp;lt;fs&amp;gt;[].
    LOOP AT fs_itab.
      WRITE / fs_itab-matnr.
    ENDLOOP.
  ELSE.
    Write:/ sy-repid, 'field-symbol not assigned'.
  ENDIF.
ENDFORM.                    "form_fs_assign&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;REPORT zprogram1.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: itab LIKE STANDARD TABLE OF tab_matnr WITH HEADER LINE.
itab-matnr = '1111'.
APPEND itab.
itab-matnr = '2222'.
APPEND itab.
WRITE:/ sy-repid.
PERFORM form_fs_assign IN PROGRAM zforms.
SUBMIT zprogram2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------" /&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;REPORT zprogram2.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;break-point.

*-- enter (ZPROGRAM1)ITAB[] in the variable and press enter
* the yellow icon stating that it doesn't exist appears
* but when the following form is called, it does checks
* the &amp;lt;fs&amp;gt; assign and doesnt gives any runtime error
* while in Pricing routine, the similar situation
* does gives the error

PERFORM form_fs_assign IN PROGRAM zforms.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Execute zprogram1 and debug, works fine..*&lt;/P&gt;&lt;P&gt;*Execute zprogram2, (ZPROGRAM1)ITAB[] doesn't exist, still it doesn't leads to short dump*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*BUT, a very similar situation in a Pricing Requirment Routine leads to a short dump:*&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;*Runtime Error          GETWA_NOT_ASSIGNED*&lt;/P&gt;&lt;P&gt;*ShrtText    Field symbol has not yet been assigned.*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Pricing Routine Code Snippet:*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- {3. -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;determine qualifying prior invoices in memory----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;fs_vbrk&amp;gt; TYPE table.
            FIELD-SYMBOLS: &amp;lt;fs_vbpa&amp;gt; TYPE table.
            FIELD-SYMBOLS: &amp;lt;fs_komv&amp;gt; TYPE table.

            DATA g_it_vbrk LIKE STANDARD TABLE OF vbrkvb WITH HEADER LINE.
            DATA g_it_vbpa LIKE STANDARD TABLE OF vbpavb WITH HEADER LINE.
            DATA g_it_komv LIKE STANDARD TABLE OF konv WITH HEADER LINE.

            DATA: l_vbrk_lines TYPE i.

            ASSIGN ('(SAPLV60A)XVBRK[]') TO &amp;lt;fs_vbrk&amp;gt;. &amp;lt;- "Error occurs here
            ASSIGN ('(SAPLV60A)XVBPA[]') TO &amp;lt;fs_vbpa&amp;gt;.
            ASSIGN ('(SAPLV60A)XKOMV[]') TO &amp;lt;fs_komv&amp;gt;.

            g_it_vbrk[] = &amp;lt;fs_vbrk&amp;gt;.
            g_it_vbpa[] = &amp;lt;fs_vbpa&amp;gt;.
            g_it_komv[] = &amp;lt;fs_komv&amp;gt;.

            DESCRIBE TABLE g_it_vbrk LINES l_vbrk_lines.
            READ TABLE g_it_vbrk INDEX l_vbrk_lines.
** remember to make vkorg and vtweg check for vbrk invoices
            DELETE g_it_vbrk WHERE vbeln = g_it_vbrk-vbeln.
            DELETE g_it_vbpa WHERE vbeln = g_it_vbrk-vbeln OR parvw &amp;lt;&amp;gt; 'WE'.
            DELETE g_it_komv WHERE knumv = g_it_vbrk-vbeln OR kschl &amp;lt;&amp;gt; 'ZF02' OR kbetr = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 07:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227004#M1009673</guid>
      <dc:creator>aabhas_wilmar</dc:creator>
      <dc:date>2008-08-08T07:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227005#M1009674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aabhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at note 721297. This might resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like incomplete customising &lt;/P&gt;&lt;P&gt;or ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then download the Short dump and create a help message with SAP and attach the Short dump. &lt;/P&gt;&lt;P&gt;Also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at Note 862548 - GETWA_NOT_ASSIGNED Dump in cvse_customizing.&lt;/P&gt;&lt;P&gt; I got this from this thread...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5837243"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;search &lt;/P&gt;&lt;P&gt;&lt;A href="http://service.sap.com/notes" target="test_blank"&gt;http://service.sap.com/notes&lt;/A&gt; on the specific package file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohinder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 04:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227005#M1009674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T04:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227006#M1009675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't get this dump when an assign fails.  You only get it when you try to access an unassigned field-symbol.  Try this code, and tell me if the problem goes away.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;fs_vbrk&amp;gt; TYPE table.
            FIELD-SYMBOLS: &amp;lt;fs_vbpa&amp;gt; TYPE table.
            FIELD-SYMBOLS: &amp;lt;fs_komv&amp;gt; TYPE table.
 
            DATA g_it_vbrk LIKE STANDARD TABLE OF vbrkvb WITH HEADER LINE.
            DATA g_it_vbpa LIKE STANDARD TABLE OF vbpavb WITH HEADER LINE.
            DATA g_it_komv LIKE STANDARD TABLE OF konv WITH HEADER LINE.
 
            DATA: l_vbrk_lines TYPE i.
 
            ASSIGN ('(SAPLV60A)XVBRK[]') TO &amp;lt;fs_vbrk&amp;gt;. &amp;lt;- "Error occurs here
            ASSIGN ('(SAPLV60A)XVBPA[]') TO &amp;lt;fs_vbpa&amp;gt;.
            ASSIGN ('(SAPLV60A)XKOMV[]') TO &amp;lt;fs_komv&amp;gt;.

* Add this code block
            IF &amp;lt;fs_vbrk&amp;gt; IS NOT ASSIGNED OR &amp;lt;fs_vbpa&amp;gt; IS NOT ASSIGNED OR &amp;lt;fs_komv&amp;gt; IS NOT ASSIGNED.
              EXIT.
            ENDIF.

            g_it_vbrk[] = &amp;lt;fs_vbrk&amp;gt;.
            g_it_vbpa[] = &amp;lt;fs_vbpa&amp;gt;.
            g_it_komv[] = &amp;lt;fs_komv&amp;gt;.
...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 08:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227006#M1009675</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-08-11T08:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227007#M1009676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply Matthew.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried the checks u mentioned, in fact i tried both the possible checks,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF &amp;lt;fs_vbrk&amp;gt; IS NOT ASSIGNED.
  EXIT.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF sy-subrc NE 0.
  EXIT.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned, the error occurs in the ASSIGN statement:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ASSIGN ('(SAPLV60A)XVBRK[]') TO &amp;lt;fs_vbrk&amp;gt;. &amp;lt;- "Run-time error occurs here
IF &amp;lt;fs_vbrk&amp;gt; IS NOT ASSIGNED.
  EXIT.
ENDIF&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It doesn't goes to the IF statement, the short dump occurs just before it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ref thread: &lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="993816"&gt;&lt;/SPAN&gt; SD-Pricing Routines - Invoice Split - Field Symbols Issue]&lt;/P&gt;&lt;P&gt;for actual scenario...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227007#M1009676</guid>
      <dc:creator>aabhas_wilmar</dc:creator>
      <dc:date>2008-08-11T15:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227008#M1009677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure why you are getting a dump when assigning, it should simply set SY-SUBRC to 4.  Anyway, you might want to try this instead, and see if the ASSIGN is successful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;fs_vbrk&amp;gt; TYPE table.

            data: Lv_itabname type string.

            lv_itabname = '(SAPLV60A)XVBRK[]'.
 
            ASSIGN (lv_itabname) TO &amp;lt;fs_vbrk&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:39:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227008#M1009677</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-08-11T15:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227009#M1009678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;XVBRK is not declared globally in the program SAPLV60A, which is a function group V60A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XVBRK is part of the TABLES parameters of the FM inside this function group. and I don't think we can access to the Function modules' parameter by ASSIGNING to the field symbol. This would work fine if XVBRK would have been global table (declared in LV60ATOP).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have to think on different way, instead of trying to access the parameter of FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 16:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227009#M1009678</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-11T16:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227010#M1009679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm.  Very odd.  I'll be interested in knowing what the answer is, but I can't think of anything else to try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 17:29:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227010#M1009679</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-08-11T17:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227011#M1009680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;ASSIGN ('(ZPROGRAM1)ITAB[]') TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZPROGRAM &lt;STRONG&gt;1&lt;/STRONG&gt; can't work in ZPROGRAM &lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN program Zprogram1: &lt;/P&gt;&lt;P&gt;PERFORM form_fs_assign IN PROGRAM zforms.  &lt;STRONG&gt;NO Error&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zprogram2.     &lt;STRONG&gt;Error, because your "Pointer" to point on "Zprogram1"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You know? Your assign so called in Germany "dirty assign"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 2:38 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 00:32:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227011#M1009680</guid>
      <dc:creator>former_member190578</dc:creator>
      <dc:date>2008-08-12T00:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227012#M1009681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;XVBRK is not declared globally in the program SAPLV60A, which is a function group V60A.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;´&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For globally declared variables or tables you don't need this "dirty assign".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose the coding &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ASSIGN ('(SAPLV60A)XVBRK[]') TO &amp;lt;fs_vbrk&amp;gt;. &amp;lt;- "Error occurs here
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is on the wrong place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 2:44 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 00:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227012#M1009681</guid>
      <dc:creator>former_member190578</dc:creator>
      <dc:date>2008-08-12T00:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227013#M1009682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Rich,&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;The piece of code you suggested didn't work, and still led to the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Naimesh,&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;I agree that XVBRK is not declared globally, and if it is a Table, and declared as global work area using Tables, we could have used it directly using ASSIGN (VBRK)...&lt;/P&gt;&lt;P&gt;But, since its not the case, I am not able to do so...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still, my requirement remains the same. I have to get the invoices created (in memory) but not saved during a collective billing run.&lt;/P&gt;&lt;P&gt;And the required data is available in the (SAPLV60A)XVBRK internal table, from which I am able to retrieve it for the first time, but clicking on the conditions tab in the item details leads to this short dump, becs (SAPLV60A)XVBRK[] isn't available at that moment. Still, if it is not available I suppose it should just set the sy-subrc to 4 instead of ending into a short-dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Jürgen Hartwig,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I know ZPROGRAM 1 can't work in ZPROGRAM 2, but it doesnt leads to the short dump either, does it? But in case of pricing it gives the run time error, this is exception I want to handle!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XVBRK is not declared globally, but since SAPLV60A calls a perform in SAPLV61A, it remains in the ABAP stack and we can access it using (SAPLV60A)XVBRK[] kind of assignment.&lt;/P&gt;&lt;P&gt;When the same is called during Item Conditions display, its PBO is in the stack but not other forms (in which it might have defined).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Rich,&lt;/STRONG&gt; is there a way to get all the variables available in scope at any instance during runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, &lt;STRONG&gt;Jürgen&lt;/STRONG&gt;, I though it Germany it was called "&lt;EM&gt;schmutzig zuweisen&lt;/EM&gt;" :-)... by the way, the same method has been used at several places in standard SAP programs with the sy-subrc check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Reference Data:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;when the &lt;STRONG&gt;assignment happens successfully&lt;/STRONG&gt;, the ABAP Stack looks similar to:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Call | Program   | Subroutine&lt;/U&gt;&lt;/P&gt;&lt;P&gt;10   | SAPLV61A  | some_subrountine&lt;/P&gt;&lt;P&gt;09   | SAPLV61A  | some_subrountine&lt;/P&gt;&lt;P&gt;08   | SAPLV61A  | some_subrountine&lt;/P&gt;&lt;P&gt;07   | SAPLV60A  | some_subrountine&lt;/P&gt;&lt;P&gt;06   | SAPLV60A  | some_subrountine&lt;/P&gt;&lt;P&gt;05   | SAPLV60A  | some_subrountine&lt;/P&gt;&lt;P&gt;04   | SAPLV60A  | some_subrountine&lt;/P&gt;&lt;P&gt;03   | SAPLV60A  | some_subrountine&lt;/P&gt;&lt;P&gt;02   | SAPLV60A  | some_XKOMV_AUBE..subrountine&lt;/P&gt;&lt;P&gt;01   | SAPLV60A  | PAI_some_subrountine&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;when the &lt;STRONG&gt;assignment doesnt happens&lt;/STRONG&gt;, the ABAP Stack looks similar to:&lt;/P&gt;&lt;P&gt;04   | SAPLV61A  | some_subrountine&lt;/P&gt;&lt;P&gt;03   | SAPLV61A  | some_subrountine&lt;/P&gt;&lt;P&gt;02   | SAPLV61A  | some_subrountine&lt;/P&gt;&lt;P&gt;01   | SAPLV60A  | PBO_some_subrountine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 02:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227013#M1009682</guid>
      <dc:creator>aabhas_wilmar</dc:creator>
      <dc:date>2008-08-12T02:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227014#M1009683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe try LIKE this, it works in my (other) program &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....TYPE ANY..... or ANY TABLE ????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONSTANTS:&lt;/P&gt;&lt;P&gt;  c_xlikp(32) TYPE c VALUE '(SAPMV50A)XLIKP',              &lt;/P&gt;&lt;P&gt;  c_xlips(32) TYPE c VALUE '(SAPMV50A)XLIPS[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;   TYPE &lt;STRONG&gt;ANY&lt;/STRONG&gt;,                       "Structure             &lt;/P&gt;&lt;P&gt;   TYPE &lt;STRONG&gt;ANY TABLE&lt;/STRONG&gt;.            "Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN (c_xlikp) TO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 4:44 AM&lt;/P&gt;&lt;P&gt;Text formatting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 4:46 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 02:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227014#M1009683</guid>
      <dc:creator>former_member190578</dc:creator>
      <dc:date>2008-08-12T02:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227015#M1009684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried it Jürgen with no luck... same run-time error!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess the problem is not with the TYPE becs it works fine on the first shot, the problem is with the existance of the data in scope... Should there be any means by which we could have checked the existance, the error could have been handled...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess SAP work debugger has that mechanism to know if a variable exists or not... like it shows the status using yellow icon stating that the variable doesn't exists when we put it in the variable list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In classical debugger the structure ABDBG contains this sort of data... but its an structure not the table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, I guess I m going to deep into ABAP, while problem lies at the higher level itself...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way I have a solution to my problem of avoiding the dump, but that will be worst of the coding... still it will work fine! And that solution is cheking the system variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-DYNGR = 'LIST' means the first screen&lt;/P&gt;&lt;P&gt;SY-DYNGR = 'ITEM' means the item screen (where assignment gives the error)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By writing the following code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF SY-DYNGR = 'LIST'.
"Assign field-symbols here
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I can avoid the run-time error... but this will be more dirty code... I can use several other system variables as well...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reference Data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__System variable__|______Value when no error____|_____Value when error occurs_____&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;SYCALLD_________|___X______________________|___X__________________________&lt;/P&gt;&lt;P&gt;SYDYNNR________|___102_____________________|___6002_______________________&lt;/P&gt;&lt;P&gt;SYDYNGR________|___LIST____________________|___ITEM_______________________&lt;/P&gt;&lt;P&gt;SYPFKEY________|___SM_____________________|___TPKO_______________________&lt;/P&gt;&lt;P&gt;SYUCOMM_______|___________________________|___PFKO_______________________&lt;/P&gt;&lt;P&gt;SYTITLE__________|___Create Billing Document___|___Invoice_(F2) Create: Item Data____&lt;/P&gt;&lt;P&gt;SYCPROG________|___SAPMV60A_____________|___SAPMV60A___________________&lt;/P&gt;&lt;P&gt;SYXPROG________|___SAPCNVE______________|___SAPCNVE____________________&lt;/P&gt;&lt;P&gt;SYMSGID________|___KM_____________________|________________________________&lt;/P&gt;&lt;P&gt;SYMSGTY________|___E______________________|___E____________________________&lt;/P&gt;&lt;P&gt;SYMSGNO________|___452____________________|___452__________________________&lt;/P&gt;&lt;P&gt;SYMSGV1_________|___PGLA_________________|___PGLA_________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 03:38:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227015#M1009684</guid>
      <dc:creator>aabhas_wilmar</dc:creator>
      <dc:date>2008-08-12T03:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227016#M1009685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you exactly try this with using STRING or CONSTANTS????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: Lv_itabname type string.
 
            lv_itabname = '(SAPLV60A)XVBRK[]'.
 
            ASSIGN (lv_itabname) TO &amp;lt;fs_vbrk&amp;gt;.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CONSTANTS:
c_xlips(32) TYPE c VALUE '(SAPMV50A)XLIPS[]'.

&amp;lt;fs_xlips&amp;gt; TYPE ANY TABLE. "Table

ASSIGN (c_xlips) TO &amp;lt;fs_xlips&amp;gt;.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe this "direct-assign" doesn't work???&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

ASSIGN ('(SAPLV60A)XVBRK[]') TO &amp;lt;fs_vbrk&amp;gt;. &amp;lt;- "Error occurs here

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 6:37 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jürgen Hartwig on Aug 12, 2008 6:38 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 04:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227016#M1009685</guid>
      <dc:creator>former_member190578</dc:creator>
      <dc:date>2008-08-12T04:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227017#M1009686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jürgen... &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; no luck even this time! I tried with constant, with string and with a beer too &lt;span class="lia-unicode-emoji" title=":winking_face_with_tongue:"&gt;😜&lt;/span&gt; it didn't work!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How about finding a way to get all the variables available in scope at any instance during runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the debugger has that mechanism to know if a variable exists or not.&lt;/P&gt;&lt;P&gt;It shows the status using yellow icon stating that the variable doesn't exists when we put it in the variable list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Aabhas K Vishnoi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 05:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227017#M1009686</guid>
      <dc:creator>aabhas_wilmar</dc:creator>
      <dc:date>2008-08-12T05:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227018#M1009687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Solution:&lt;/STRONG&gt; Delete the statements which cause problems &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&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;Well, a workaround worked...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the exit in RV60AFZZ to Export the internal tables XVBRK, XVBPA and XKOMV using the EXPORT ... TO MEMORY ID 'XXXXX' command, and imported the same in my routine using the IMPORT ... FROM MEMORY ID 'XXXXX'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked well, I thought of implementing this earlier... but... all laziness!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Still, the question remains in place, why ABAP leads to the short-dump!!&lt;/U&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;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Aabhas K Vishnoi&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 08:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227018#M1009687</guid>
      <dc:creator>aabhas_wilmar</dc:creator>
      <dc:date>2008-08-25T08:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field-Symbol assignment - Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227019#M1009688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a very old thread, but I just solved a similar issue.&amp;nbsp; Some of my explanation has been discussed already, but I will recap anyway.&amp;nbsp; The problem, in my case, was that the object I was trying to assign was recognized but just did not exist at that moment.&amp;nbsp; If you put a stop point and run your debugger, look at the ABAP stack (“Desktop 2” while in the debugger).&amp;nbsp; When the program you are trying to refer back to (i.e. SAPLV60A)&amp;nbsp; is not in that list, you will not be able to assign your field symbol.&amp;nbsp; Now you are thinking that I am overstating the obvious at this point, but stay with me.&amp;nbsp; Add the object to your variables in the “Desktop 1” …don’t forget to include the brackets “(SAPLV60A)”.&amp;nbsp; If the object is not in your ABAP stack, the value will be blank and the status column should be either a squiggly line “Invalid Variable” or a bell “Not Assigned”.&amp;nbsp; If the object is invalided, the assign command will simply return a sy-subrc value of 0 and continue, however, if the object is not assigned, the program will dump at the assign statement.&amp;nbsp; Therefore you can simply check that the object exists in the ABAP stack before the assignment of the field symbol.&amp;nbsp; Try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; field-symbols: &amp;lt;fs&amp;gt; type vbrkvb.&lt;/P&gt;&lt;P&gt;&amp;nbsp; data&amp;nbsp; fld1(15) type c value '(SAPLV60A)XVBRK'.&lt;/P&gt;&lt;P&gt;&amp;nbsp; data lt_callstack type&amp;nbsp; abap_callstack.&lt;/P&gt;&lt;P&gt;&amp;nbsp; data la_callstack type&amp;nbsp; abap_callstack_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; call function 'SYSTEM_CALLSTACK'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exporting&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max_level&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; importing&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callstack&amp;nbsp;&amp;nbsp;&amp;nbsp; = lt_callstack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; read table lt_callstack into la_callstack with key mainprogram&amp;nbsp; = 'SAPMV60A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; assign (fld1) to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit.&lt;/P&gt;&lt;P&gt;&amp;nbsp; endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 17:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-symbol-assignment-short-dump/m-p/4227019#M1009688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-03-24T17:53:17Z</dc:date>
    </item>
  </channel>
</rss>

