메뉴 건너뛰기

SAP 한국 커뮤니티

Short text
    Field symbol has not yet been assigned.


 


What happened?
    Error in the ABAP Application Program


    The current ABAP program "SAPLSLVC" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.


 


Error analysis
    You attempted to access an unassigned field symbol
    (data segment 32821).


    This error may occur if
    - You address a typed field symbol before it has been set with
      ASSIGN
    - You address a field symbol that pointed to the line of an
      internal table that was deleted
    - You address a field symbol that was previously reset using
      UNASSIGN or that pointed to a local field that no
      longer exists
    - You address a global function interface, although the
      respective function module is not active - that is, is
      not in the list of active calls. The list of active calls
      can be taken from this short dump.


Trigger Location of Runtime Error
    Program                                 SAPLSLVC
    Include                                 LSLVCF36
    Row                                     3,267
    Module type                             (FORM)
    Module Name                             FILL_DATA_TABLE
Source Code Extract


Line  SourceCde


 3237                               alv_style_align_center_top.
 3238         endif.
 3239
 3240         append ls_lvc_data to ct_lvc_data.
 3241       endif.
 3242
 3243 ************************************
 3244 * Column per Fieldcat Entry
 3245 ************************************
 3246       loop at it_fcat_local assigning <ls_fcat>.
 3247         clear: ls_lvc_data-href_hndl,
 3248                ls_lvc_data-drdn_hndl,
 3249                ls_lvc_data-style,
 3250                ls_lvc_data-style2,
 3251                ls_lvc_data-style3,
 3252                ls_lvc_data-style4,
 3253                ls_lvc_data-maxlen.
 3254
 3255         clear: lt_color_lvc, lt_color_slis.
 3256
 3257         add 1 to ls_lvc_data-col_pos.
 3258
 3259         if not <ls_fcat>-indx_field is initial.
 3260           assign component <ls_fcat>-indx_field
 3261                            of structure <ls_data> to <l_field_value>.
 3262         else.
 3263           assign component <ls_fcat>-fieldname
 3264                            of structure <ls_data> to <l_field_value>.
 3265         endif.
>>>>>         macro_cell_data_get
 3268           <ls_fcat>
 3269           <ls_data>
 3270           <l_field_value>
 3271           ls_lvc_data-value.
 3272
 3273 *>>> new API
 3274         if ir_salv_adapter is bound.
 3275           clear ls_lvc_data-style.
 3276
 3277 * color
 3278           if g_gui_type ne 1.
 3279             if <ls_fcat>-key eq abap_true.
 3280               ls_lvc_data-style = alv_style_color_int_key.
 3281             elseif l_style_color is initial
 3282                   and ( <ls_fcat>-emphasize is initial or
 3283                         <ls_fcat>-emphasize = '$' ).
 3284               if <ls_stin>-counter is initial.
 3285                 ls_lvc_data-style = alv_style_color_normal.
 3286               else.


 


이것이 무슨 문제때문에 생기는건지.. 알수있을까요

번호 제목 글쓴이 날짜 조회 수
6387 <img src=3.gif>Runtime Error->OBJECTS_OBJREF_NOT_ASSIGNED [2] 써언 2011.02.09 5381
6386 <img src=3.gif>alv 테이블 필드 숨기기에 대해 질문드립니다. [4] 유정a 2010.10.20 5375
6385 [질문] transporting의 역활 좀 알고 싶습니다. [3] 나도아밥퍼 2007.06.13 5353
6384 ALV 프로그램에서 어플리케이션 툴바에 행추가 버튼을 추가하고자 합니다. [2] 초보생 2007.07.24 5347
6383 [요청]BAPI BAPI_GOODSMVT_CREATE 펑션의 기본적인 사용법 [1] 댕댕 2008.05.04 5304
6382 <b>[완료]</b><b>[완료]</b>질문이 있습니다. 로미오 2006.12.29 5303
6381 [ERROR] READ_REPORT_LINE_TOO_LONG 해결 방법좀 알려주세요. [7] file D.Y.Kim 2007.07.24 5279
6380 [요청]BAPI_SALESORDER_CREATEFROMDAT2 에서 가격조건(세금부분, 정가) 부분의 값을 가져오지 못합니다. [2] file 효방 ^-^ 2008.12.19 5252
6379 <img src=3.gif>엑셀 다운로드 질문 엑셀 열리지 않고 자동으로 되도록. [5] 돌맹이 2010.10.28 5245
6378 <b>[완료]</b><b>[완료]</b>[BAPI_TRANSACTION_COMMIT] commit work 와 commit and wait 의 차이점 문의 [5] SUGI 2008.01.28 5226
6377 <img src=3.gif>BDC 프로그램 CALL Transaction 옵션 중에서 RACOMMIT 옵션이 하는 역할이 무엇인가요? [8] 카루이안 2009.10.07 5223
6376 [요청]insert 로 db테이블에 데이터를 저장할때.... [4] bizarre 2008.05.19 5189
6375 <img src=3.gif>GUI_DOWNLOAD 로 다운받은 파일에서 한글이 [3] 하오 2010.01.08 5185
6374 <b>[완료]</b>ALV이벤트 핸들러선언부분에서 별도로 register_edit_event 하는 이유 & ALV스탠다드툴바 명령어 변수 알아내는 법 [13] 하오 2008.07.16 5184
6373 [요청][초급] 테이터 중에 내가 원하는 문자를 찾기 !!!!!! [6] 사상화 2008.08.28 5169
6372 <img src=2.gif>금액필드에서 콤마(,) 를 제거 하고 싶습니다. [3] 하하하하 2010.12.08 5166
6371 <b>[완료]</b>개인pc에 SAP NetWeaver 2004s 설치방법에 질문입니다. [5] file 로미오 2006.12.24 5165
» <img src=3.gif>runtime error문제입니다. 무슨 말인지 잘 모르겠어요. 좀 알려주실수있을까요 [2] 쭈니 2010.09.15 5138
6369 [re] BAPI에 대해 [5] sapjoy 2007.03.28 5133
6368 <img src=3.gif border=0>대소문자 구분없이 쿼리 하는 법 [8] woong 2009.08.26 5116