메뉴 건너뛰기

SAP 한국 커뮤니티

report zunicode_034.

sapjoy 2008.11.21 16:26 조회 수 : 2734


report  zunicode_034.


data : seltab  type table of rsparams with header line.


data : begin of struc,
        text(3) type c,
        int type i,
       end of struc.


 


data: buffer type xstring,
      buffer2 type xstring,
      p_buf1(100) type c,
      p_buf2(100) type c,


      conv type ref to cl_abap_conv_out_ce,
      view type ref to cl_abap_view_offlen.



  view = cl_abap_view_offlen=>create_legacy_view( struc ).
  conv = cl_abap_conv_out_ce=>create(
                              encoding = '8500'
                              endian = 'B' ).


 struc-text = '가나다'.
 struc-int  = strlen( struc-text ).



  conv->convert_struc( exporting data = struc
                                 view = view
                       importing buffer = buffer ).



data p_buffer(100) type c.
p_buf1 = buffer.
*P_BUF2 = BUFFER2.



clear seltab.
seltab-selname = 'P_BUF1'.
seltab-kind    =  'P'.
seltab-sign    = 'I'.
seltab-option  = 'EQ'.
seltab-low     = p_buf1.
append seltab.



*CLEAR seltab.
*seltab-selname = 'P_BUF2'.
*seltab-kind    =  'P'.
*seltab-sign    = 'I'.
*seltab-option  = 'EQ'.
*seltab-low     = P_BUF2.
*APPEND seltab.
**
*
*
submit zunicode_035
       with selection-table seltab 
       via selection-screen
 and return.

번호 제목 글쓴이 날짜 조회 수
390 report zunicode_010. sapjoy 2008.11.21 2281
389 report zunicode_011. sapjoy 2008.11.21 2173
388 report zunicode_012. sapjoy 2008.11.21 2217
387 report zunicode_013. sapjoy 2008.11.21 2208
386 report zunicode_014. sapjoy 2008.11.21 1735
385 report zunicode_015. sapjoy 2008.11.21 2226
384 report zunicode_016. sapjoy 2008.11.21 2301
383 report zunicode_018. sapjoy 2008.11.21 2224
382 report zunicode_019. sapjoy 2008.11.21 2323
381 report zunicode_017. sapjoy 2008.11.21 2810
380 report zunicode_022. sapjoy 2008.11.21 2611
379 report zunicode_025. sapjoy 2008.11.21 2489
378 report zunicode_026. sapjoy 2008.11.21 2782
377 report zunicode_027. [4] sapjoy 2008.11.21 6262
376 report zunicode_030. sapjoy 2008.11.21 2416
375 report zunicode_031. sapjoy 2008.11.21 2684
374 report zunicode_032. sapjoy 2008.11.21 2634
» report zunicode_034. [1] sapjoy 2008.11.21 2734
372 report zunicode_035. sapjoy 2008.11.21 2541
371 REPORT ZSMARTFORMS_01. sapjoy 2008.11.26 2582