CLEAR bdc_tabbdc_tab[].

  DATAbdc_opts   LIKE ctu_params.
  bdc_opts-dismode 'E'.
  bdc_opts-updmode 'S'.
  bdc_opts-NOBINPT 'X'.

  PERFORM bdc_dynpro USING :
      'SAPMQSDA'            '0100'              'X',
      'BDC_OKCODE'          '/00'               '',
      'QPMK-WERKS'          gs_alv-werks        '',
      'QPMK-MKMNR'          gs_alv-mkmnr        '',
*      'QPMK-GUELTIGAB'      gs_alv-datuv        '',

      'SAPMQSDA'            '0101'              'X',
      'BDC_OKCODE'          '/00'               ''.

  CALL TRANSACTION 'QS24' USING bdc_tab
                      OPTIONS FROM bdc_opts
                      MESSAGES INTO messtab.

'SAP Program > ABAP' 카테고리의 다른 글

CTE Open sql  (0) 2017.10.12
so_object_send를 이용한 mail 전송  (0) 2017.10.11
Smartforms Barcode  (0) 2017.09.01
SAP Memory ID 확인  (0) 2017.09.01
Field-Symbol 관련 예제 프로그램  (0) 2017.08.18

설정

트랙백

댓글


https://wiki.scn.sap.com/wiki/display/Snippets/Step-by-step+New+Barcode+Technology+for+Smart+Forms

설정

트랙백

댓글



http://blog.daum.net/rightvoice/82

'SAP Program > ABAP' 카테고리의 다른 글

QM QS24 Call transaction 이용한 조회가 안될경우  (0) 2017.09.13
Smartforms Barcode  (0) 2017.09.01
Field-Symbol 관련 예제 프로그램  (0) 2017.08.18
ABAP Editor 사용방법  (0) 2017.08.04
SAPLINK 설치관련  (0) 2017.08.04

설정

트랙백

댓글

Field-Symbol 관련 예제 프로그램



NUGG_ZQMR0002_FIELD_SYMBOL.nugg


'SAP Program > ABAP' 카테고리의 다른 글

Smartforms Barcode  (0) 2017.09.01
SAP Memory ID 확인  (0) 2017.09.01
ABAP Editor 사용방법  (0) 2017.08.04
SAPLINK 설치관련  (0) 2017.08.04
Checkpoint group  (0) 2017.08.03

설정

트랙백

댓글

http://www.sapyard.com/lazy-and-smart-abapers/

'SAP Program > ABAP' 카테고리의 다른 글

SAP Memory ID 확인  (0) 2017.09.01
Field-Symbol 관련 예제 프로그램  (0) 2017.08.18
SAPLINK 설치관련  (0) 2017.08.04
Checkpoint group  (0) 2017.08.03
Table control column enable/disable 하는 방법  (0) 2017.06.13

설정

트랙백

댓글

http://boy0.tistory.com/96

'SAP Program > ABAP' 카테고리의 다른 글

Field-Symbol 관련 예제 프로그램  (0) 2017.08.18
ABAP Editor 사용방법  (0) 2017.08.04
Checkpoint group  (0) 2017.08.03
Table control column enable/disable 하는 방법  (0) 2017.06.13
암호화된 ABAP source 해제하기  (0) 2017.06.12

설정

트랙백

댓글

설정

트랙백

댓글



    LOOP AT TC_8459-cols INTO cols.
      COLS-INVISIBLE = '1'.
      MODIFY TC_8459-cols FROM cols INDEX sy-tabix.
    ENDLOOP.
    MODIFY SCREEN.
    LOOP AT TC_8459-cols INTO cols > 0.
      COLS-INVISIBLE = '1'.
      MODIFY TC_8459-cols FROM cols INDEX sy-tabix.
    ENDLOOP.
    MODIFY SCREEN.


'SAP Program > ABAP' 카테고리의 다른 글

SAPLINK 설치관련  (0) 2017.08.04
Checkpoint group  (0) 2017.08.03
암호화된 ABAP source 해제하기  (0) 2017.06.12
HANA 프로젝트 이슈 : select 구문 에러 관련(HANA, NW7.4이후버젼)  (0) 2017.06.08
New Open sql  (0) 2017.06.08

설정

트랙백

댓글

https://www.daniel-berlin.de/devel/sap-dev/decompress-abap-source-code/
Decompress ABAP source code from table REPOSRC

Howdy!
If you ever wondered, where SAP stores your report source code, you probably came across table REPOSRC – but the source code is stored in a compressed format, so there's no way to get hold of it directly.
I've been trying to figure out, how this compression works for some time now… fortunately, several people dealt with the SAP DIAG protocol recently – which got me off the ground.

Algorithm

The DIAG protocol uses a form of the Lempel-Ziv (LZ) compression algorithm and a bold attempt confirmed that this is also true for the source code compression.

The code stored in REPOSRC-DATA is actually compressed using the LZH algorithm (Lempel-Ziv plus Huffman coding), which is used by the SAP DB MaxDB database too (thanks to Dennis Yurichev for the idea).

Knowing this, I wrote a decompression tool around a small portion of the MaxDB code, which also takes care of some SAP specialties:

  • The 1st byte of the compressed data seems to be junk (or might have a special meaning !?)
  • The first 2 bytes of the decompressed source are junk, too ?!
  • Lines are terminated with character code 0xFF, which has to be adjusted
  • The 1st, 3rd, 5th … decompressed byte contains NUL (not sure, why !)

The decompressed source code has a fixed line length of 255 characters (blank-padded).

Usage

  1. Download this archive (it contains the decompressor tool compiled for Win32 and an ABAP report to dump the binary source code). The source code is available here; you can easily compile it on Linux/BSD/Unix/Windows using the enclosed build script.
  2. To extract the compressed source code from SAP, use the report "ZS_REPOSRC_DOWNLOAD". It reads the DATA field from table REPOSRC for a given report and stores it in a binary file on your workstation.
  3. Decompress the file on the command line.

PS: Works for Kernel 7.x, no guarantee for older releases.
PS 2: The functionality on non-Unicode systems is unknown… I'll check this later.

설정

트랙백

댓글

테이블에 SINGLE 이라는 컬럼이 있을 경우, NW7.4 이젼 버젼에서는 문제 없이 동작했는데

NW7.4에서는 시스템 명령어로 등록되어 에러가 발생함


SELECT burks single from ~~


! 기호를 추가하여 다음과 같이 수정하면 에러가 발생하지 않음

SELECT burks !single from ~~



'SAP Program > ABAP' 카테고리의 다른 글

Table control column enable/disable 하는 방법  (0) 2017.06.13
암호화된 ABAP source 해제하기  (0) 2017.06.12
New Open sql  (0) 2017.06.08
HANA에서 DB LINK 이슈 해결책  (0) 2017.06.08
HANA 주소 데이타  (0) 2017.05.19

설정

트랙백

댓글