<?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: uncaught_exception cx_sy_ref_is_initial in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922947#M1964048</link>
    <description>&lt;P&gt;+ attach short dump as text zipped&lt;/P&gt;&lt;P&gt;+ search SAP notes first&lt;/P&gt;</description>
    <pubDate>Sat, 20 Apr 2019 12:49:11 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-04-20T12:49:11Z</dc:date>
    <item>
      <title>uncaught_exception cx_sy_ref_is_initial</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922945#M1964046</link>
      <description>&lt;P&gt;i am getting error &lt;STRONG&gt;uncaught_exception cx_sy_ref_is_initial &lt;/STRONG&gt;while export to excel format, code is as below:&lt;/P&gt;
  &lt;P&gt;SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L0S31 { font-style: italic; color: #808080; } .L0S32 { color: #3399FF; } .L0S33 { color: #4DA619; } .L0S52 { color: #0000FF; } .L0S55 { color: #800080; } .L0S70 { color: #808080; }&lt;/P&gt;
  &lt;P&gt;FORM DISPLAY.&lt;BR /&gt; gt_fieldcat = VALUE #(&lt;BR /&gt; &lt;BR /&gt; ( fieldname = 'MATNR' OUTPUTLEN = '12' seltext_l = 'ParentCode' tabname = 'IT_STDBOM' )&lt;BR /&gt; ( fieldname = 'OJTXB' OUTPUTLEN = '50' seltext_l = 'ParentCodeDesc' tabname = 'IT_STDBOM' )&lt;BR /&gt; ( fieldname = 'IDNRK' OUTPUTLEN = '12' seltext_l = 'ChildCode' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'OJTXP' OUTPUTLEN = '50' seltext_l = 'ChildCodeDesc' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'MTART' OUTPUTLEN = '5' seltext_l = 'MTGroup' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'DISMM' OUTPUTLEN = '5' seltext_l = 'MRPType' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'MATMK' OUTPUTLEN = '5' seltext_l = 'MatSubType' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'MNGLG' OUTPUTLEN = '20' seltext_l = 'CompQty' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'FPINHOUSEC' OUTPUTLEN = '20' seltext_l = 'Parent.InHouseCost' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'FPBOUGHTC' OUTPUTLEN = '20' seltext_l = 'Parent.BoughtOutCost' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'FPINFOREC' OUTPUTLEN = '20' seltext_l = 'Parent.InfoRec' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'FINHOUSEC' OUTPUTLEN = '20' seltext_l = 'InHouseCost' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'FBOUGHTC' OUTPUTLEN = '20' seltext_l = 'BoughtOutCost' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'FINFOREC' OUTPUTLEN = '20' seltext_l = 'InfoRec' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ( fieldname = 'TOTALCOST' OUTPUTLEN = '20' seltext_l = 'TotalCost' DO_SUM = 'X' tabname = 'IT_STDBOM')&lt;BR /&gt; ).&lt;BR /&gt; &lt;BR /&gt; wasort-spos = 1.&lt;BR /&gt; wasort-fieldname = 'MATNR'.&lt;BR /&gt; wasort-UP = 'X'.&lt;BR /&gt; wasort-subtot = 'X'.&lt;BR /&gt; APPEND wasort TO itsort.&lt;BR /&gt; &lt;BR /&gt; gs_layout-colwidth_optimize = 'X'.&lt;BR /&gt; CLEAR ALV_HEADING.&lt;BR /&gt; CONCATENATE 'Standard BOM Costing : ' P_MATNR INTO alv_heading.&lt;BR /&gt; CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;BR /&gt; EXPORTING&lt;BR /&gt; * I_INTERFACE_CHECK = ' '&lt;BR /&gt; * I_BYPASSING_BUFFER = ' '&lt;BR /&gt; * I_BUFFER_ACTIVE = ' '&lt;BR /&gt; I_CALLBACK_PROGRAM = 'ZCLASS_STD_COST_NEW'&lt;BR /&gt; * I_CALLBACK_PF_STATUS_SET = ' '&lt;BR /&gt; * I_CALLBACK_USER_COMMAND = ' '&lt;BR /&gt; * I_CALLBACK_TOP_OF_PAGE = ' '&lt;BR /&gt; * I_CALLBACK_HTML_TOP_OF_PAGE = ' '&lt;BR /&gt; * I_CALLBACK_HTML_END_OF_LIST = ' '&lt;BR /&gt; * I_STRUCTURE_NAME =&lt;BR /&gt; * I_BACKGROUND_ID = ' '&lt;BR /&gt; I_GRID_TITLE = alv_heading&lt;BR /&gt; * I_GRID_SETTINGS =&lt;BR /&gt; IS_LAYOUT = gs_layout&lt;BR /&gt; IT_FIELDCAT = gt_fieldcat&lt;BR /&gt; * IT_EXCLUDING =&lt;BR /&gt; * IT_SPECIAL_GROUPS =&lt;BR /&gt; IT_SORT = itsort[]&lt;BR /&gt; * IT_FILTER =&lt;BR /&gt; * IS_SEL_HIDE =&lt;BR /&gt; * I_DEFAULT = 'X'&lt;BR /&gt; I_SAVE = 'X'&lt;BR /&gt; * IS_VARIANT = g_variant&lt;BR /&gt; * IT_EVENTS =&lt;BR /&gt; * IT_EVENT_EXIT =&lt;BR /&gt; * IS_PRINT =&lt;BR /&gt; * IS_REPREP_ID =&lt;BR /&gt; * I_SCREEN_START_COLUMN = 0&lt;BR /&gt; * I_SCREEN_START_LINE = 0&lt;BR /&gt; * I_SCREEN_END_COLUMN = 0&lt;BR /&gt; * I_SCREEN_END_LINE = 0&lt;BR /&gt; * I_HTML_HEIGHT_TOP = 0&lt;BR /&gt; * I_HTML_HEIGHT_END = 0&lt;BR /&gt; * IT_ALV_GRAPHICS =&lt;BR /&gt; * IT_HYPERLINK =&lt;BR /&gt; * IT_ADD_FIELDCAT =&lt;BR /&gt; * IT_EXCEPT_QINFO =&lt;BR /&gt; * IR_SALV_FULLSCREEN_ADAPTER =&lt;BR /&gt; * IMPORTING&lt;BR /&gt; * E_EXIT_CAUSED_BY_CALLER =&lt;BR /&gt; * ES_EXIT_CAUSED_BY_USER =&lt;BR /&gt; TABLES&lt;BR /&gt; T_OUTTAB = it_stdbom&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; program_error = 1&lt;BR /&gt; OTHERS = 2.&lt;BR /&gt; .&lt;BR /&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;BR /&gt; * Implement suitable error handling here&lt;BR /&gt; ENDIF.&lt;BR /&gt; ENDFORM.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 06:54:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922945#M1964046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-04-20T06:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: uncaught_exception cx_sy_ref_is_initial</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922946#M1964047</link>
      <description>&lt;P&gt;A Form? They're obsolete. And the fm for ALV? Use cl_salv_table. Much easier. &lt;/P&gt;&lt;P&gt;Also, you'll get more help if you post your code using the code button in the editor. And right click, post as plain text. &lt;/P&gt;&lt;P&gt;Finally, this is a question asked about once a week. Try searching. &lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 11:47:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922946#M1964047</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2019-04-20T11:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: uncaught_exception cx_sy_ref_is_initial</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922947#M1964048</link>
      <description>&lt;P&gt;+ attach short dump as text zipped&lt;/P&gt;&lt;P&gt;+ search SAP notes first&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2019 12:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uncaught-exception-cx-sy-ref-is-initial/m-p/11922947#M1964048</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-04-20T12:49:11Z</dc:date>
    </item>
  </channel>
</rss>

