메뉴 건너뛰기

SAP 한국 커뮤니티

메뉴바가 안나와서 STATUS를 만들고 처리하니 데이터가 안나오네여 메뉴바도 생기기만하고 작동은 안하거염 무엇이 문제인지 좀 알려주세여. STATUS 만들기 전에는 데이터는 나왔는데 지금은 안되네여.


include ztest_129top.
include ztest_129o1.
include ztest_129f1.



start-of-selection.



  select * from zfited301 into table gt_alv
  where corp >= p_1.



  call screen '0200'.


 


*&---------------------------------------------------------------------*
*&  Include           ZTEST_129TOP
*&---------------------------------------------------------------------*


*tables zfited301.
*----------------------------------------------------------------------*
*  TYPE-POOLS
*----------------------------------------------------------------------*
type-pools: slis.


selection-screen begin of block b1.
parameters: p_1 like zfited301-corp.
selection-screen end of block b1.


data: con1_ref type ref to cl_gui_custom_container.


data: gv_title    type char100,
      gv_tabname  type char100,
      gv_perio    type jahrper.



data: grid1 type ref to cl_gui_alv_grid,
      gt_alv type table of zfited301,
       gs_layo type  lvc_s_layo,
      gt_fieldcat     type  lvc_t_fcat    with header line,
      gt_sort     type  lvc_t_sort    with header line,
      gs_fieldcat type lvc_s_fcat.


*&---------------------------------------------------------------------*
*&  Include           ZTEST_129O1
*&---------------------------------------------------------------------*
*&---------------------------------------------------------------------*
*&      Module  STATUS_0100  OUTPUT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module status_0200 output.
  set pf-status 'STATUS_0200'.
  set titlebar 'TITLE_0200' with gv_title.


endmodule.                 " STATUS_0200  OUTPUT


module init_alv output.


  if con1_ref is initial.
    create object con1_ref
      exporting
        container_name = 'CON1'.


    create object grid1
      exporting
        i_parent = con1_ref.



    perform set_grid_layout.
    perform set_set_sorting_fields.
    perform set_alv_fieldcat.


    call method grid1->set_table_for_first_display
      exporting
        i_buffer_active               = 'X'
        i_bypassing_buffer            = 'X'
        i_save               = 'A'
        is_layout            = gs_layo
              changing
        it_outtab                     = gt_alv[]
        it_fieldcatalog               = gt_fieldcat[]
        it_sort                       = gt_sort[]
      exceptions
        invalid_parameter_combination = 1
        program_error                 = 2
        too_many_lines                = 3
        others                        = 4.


 


  endif.
endmodule.                    "init_con OUTPUT


 


*&---------------------------------------------------------------------*
*&  Include           ZTEST_129F1
*&---------------------------------------------------------------------*


*&---------------------------------------------------------------------*
*&      Form  SET_GRID_LAYOUT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  -->  p1        text
*  <--  p2        text
*----------------------------------------------------------------------*
form set_grid_layout .
clear:gs_layo.


  gs_layo-zebra = 'X'.


endform.                    " SET_GRID_LAYOUT
*&---------------------------------------------------------------------*
*&      Form  SET_SET_SORTING_FIELDS
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  -->  p1        text
*  <--  p2        text
*----------------------------------------------------------------------*
form set_set_sorting_fields .
clear: gt_sort, gt_sort[].


  gt_sort-fieldname = 'CORP'.
  gt_sort-up        = 'X'.
  append  gt_sort.



  clear  gt_sort.


endform.                    " SET_SET_SORTING_FIELDS
*&---------------------------------------------------------------------*
*&      Form  SET_ALV_FIELDCAT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  -->  p1        text
*  <--  p2        text
*----------------------------------------------------------------------*
form set_alv_fieldcat .
clear: gs_fieldcat.  refresh : gt_fieldcat.


  perform set_fieldcat using :
   'CORP'  'X' '회사고유코드' 'S' 'C' '14' '' '' '' '' '' '' '',
   'CORPNM' '' '회사명칭' 'S' 'R' '18' '' '' '' '' '' '' '',
   'STCD' '' '사업자등록번호' 'S' 'R' '20' '' '' '' '' '' '' '',
   'ADDR1' '' '주소1(도시)' 'S' 'R' '12' '' '' '' '' '' '' '',
   'ADDR2'  '' '주소2(나머지)' 'S' 'R' '24' '' '' '' '' '' '' '',
   'PRES' '' '대표자명' 'S' 'R' '16' '' '' '' '' '' '' '',
   'EMPN' '' '직원수' 'S' 'R' '18' '' '' '' '' '' '' ''.


endform.                    " SET_ALV_FIELDCAT


*&---------------------------------------------------------------------*
*&      Form  SET_FIELDCAT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      -->P_0035   text
*      -->P_0036   text
*      -->P_0037   text
*      -->P_0038   text
*      -->P_0039   text
*      -->P_0040   text
*      -->P_0041   text
*      -->P_0042   text
*      -->P_0043   text
*      -->P_0044   text
*      -->P_0045   text
*      -->P_0046   text
*      -->P_0047   text
*----------------------------------------------------------------------*
form set_fieldcat  using    pv_fname
                            pv_key
                            pv_scrtext
                            pv_selddictxt
                            pv_just
                            pv_outputlen
                            pv_hotspot
                            pv_sum
                            pv_curr
                            pv_edit
                            pv_dec
                            pv_checkbox
                            pv_icon.


  gs_fieldcat-fieldname    = pv_fname.
  gs_fieldcat-key          = pv_key.
  gs_fieldcat-selddictxt      = pv_selddictxt.


  gs_fieldcat-just         = pv_just.
  gs_fieldcat-scrtext_l    = pv_scrtext.
  gs_fieldcat-scrtext_m   = pv_scrtext.
  gs_fieldcat-scrtext_s    = pv_scrtext.


  gs_fieldcat-outputlen    = pv_outputlen.
  gs_fieldcat-hotspot      = pv_hotspot.
  gs_fieldcat-do_sum       = pv_sum.
  gs_fieldcat-cfieldname   = pv_curr.
  gs_fieldcat-edit         = pv_edit.
  gs_fieldcat-decimals_o = pv_dec.


  gs_fieldcat-checkbox     = pv_checkbox.
  gs_fieldcat-icon         = pv_icon.


  append gs_fieldcat  to gt_fieldcat.
  clear gs_fieldcat.


endform.                    " SET_FIELDCAT

번호 제목 글쓴이 날짜 조회 수
5432 <img src=3.gif>long text의 저장 및 수정 작업에 관한 질문이에요 [3] file 유정a 2010.10.27 2447
5431 [re] <img src=2.gif>long text의 저장 및 수정 작업에 관한 질문이에요 file 버미! 2010.10.27 1354
5430 <img src=3.gif>안녕하세요^^ type m 값뿌려주기 질문입니다..^^ [5] file labap 2010.10.27 1218
5429 <img src=3.gif>alv 새창의 저장기능 구현에 대해 질문드려요 [2] file 유정a 2010.10.27 1025
5428 [re] <img src=1.gif>alv 새창의 저장기능 구현에 대해 질문드려요 [1] file 버미! 2010.10.27 1164
5427 <img src=3.gif>대입문에서 텍스트 데이터 뒤에 붙는 ()의 의미 좀 알려주세요. [5] 페르츠 2010.10.26 1318
5426 <img src=1.gif>엑셀 다운로드 시, 필드 타입 지정이 가능한가요?(ws_excel 사용) sayRaiN♬ 2010.10.26 1795
5425 <img src=3.gif>alv 저장 기능 구현 및 저장후 filedname 변경에 관해서 질문드립니다. [4] file 유정a 2010.10.26 1654
» <img src=3.gif>메뉴바가 안나와서 STATUS를 만들고 처리하니 데이터가 안나오네여 메뉴바도 생기기만하고 작동은 안하거염 무엇이 문제인지 좀 알려주세여 [11] 꼬마호랑이 2010.10.26 1599
5423 <img src=2.gif>[ NATIVE SQL ] sap에서 native sql 로직 확인 할수 있나요? [6] 맹꽁이 2010.10.26 1823
5422 <img src=2.gif>신호등(상태표시등)아이콘 관련 질문드려요~ ^-^* [1] ymjeong 2010.10.26 4970
5421 <img src=3.gif>스마트폼에서 페이지에 관해 문의드립니다... [1] prt 2010.10.25 1296
5420 <img src=2.gif>CBO테이블 데이터 저장 후 BDC 업로드 성공시에만 COMMIT을 하고 싶습니다. [4] dusrude 2010.10.25 1964
5419 <img src=2.gif>권한설정에 관련해서 질문드릴꼐요~~~~~ [2] hsh1002 2010.10.25 1388
5418 <img src=2.gif>[ deadlock ] 데드락 걸렸데여..어떻게 해야 하나요? [4] 맹꽁이 2010.10.25 2274
5417 <img src=1.gif>선택화면의 실행버튼('ONLI') 의 이름을 바꾸는 것과 바꾸지 않는것의 차이 [2] .... 2010.10.25 1830
5416 <img src=3.gif>안녕하세용~sap 로그인관련 질문입니다~~ [3] hsh1002 2010.10.25 1325
5415 <img src=3.gif>SCREEN 1000번에 관한 질문입니당. [3] ASDF 2010.10.25 2449
5414 <img src=3.gif>[기초] 모듈풀과 실행가능 프로그램의 차이가 무엇인가요 ?? [8] 촌놈악마 2010.10.25 3899
5413 <img src=2.gif>에러내용에 대해 질문이 있습니다. [3] 로미오 2010.10.25 1424