일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- .orelseThrow
- memory 정리
- MVC
- n+1
- 신문법 abap
- controller
- value base corresponding
- sap memory
- SpringMVC
- mapping corresponding
- jpa
- spring MVC
- springSecurityFilterChain 오류
- abap memory
- new syntax
- memory변수명 변경
- abap value in field Data Class error
- @Controller
- SAP
- Testcode
- abap면접
- application-properties
- abap
- 김영한
- for all entries in
- spring
- 구글 보안 api 활용
- Validation
- optional
- BindingResult
- Today
- Total
목록[SAP]ABAP (55)
SAP공장

1. for all enties 사용 방법 DATA : lt_sflight TYPE TABLE OF slfight, lt_sbook TYPE TABLE OF sbook. REFRESH : lt_sflight, lt_sbook. SELECT carrid connid fldate price currency planetype INTO CORRESPONDING FIELDS OF TABLE lt_sflight FROM sflight WHERE carrid = 'AA' AND connid = 17. *----------------------------------------------------------------------* * For All entries 사용하기 위한 선제조건 * Sort 필수 * 중복제거 필..

예시 REF_TABLE , REF_FIELD를 연관된 ELEMENT를 넣어서 알아서 SETTING해주도록 한다. @beforeEach 처럼 실행시 변수 값을 미리 대입해주는 역할 = initialization. //error '필드 카탈로그를 찾을 수 없습니다'. 아래 함수 모듈을 사용하여 fieldcatalog를 생성하는 경우 ZSTRUCT가 DataDictionary 객체여야 합니다. TYPES 문을 사용하여 ZSTRUCT를 로컬 구조로 생성하면 오류가 발생합니다. 출저 : https://sapdreamzone.blogspot.com/2017/03/field-catalog-not-found-in-sap-abap.html Field catalog not found in SAP ABAP When we a..

Screen 속에 컨테이너 속에 ALV라는 class를 주입한다. Screen 은 첫 숫자는 100번 부터 시작한다. static 선언 cl_demo_output=>display( itab) Data : lcl_out type ref of cl_demo_output. lcl_out->display( itab ) custom container 를 docking container Call-Screen # 꼭 저기 위에 있는 Module 주석 처리 제거하고 더블 클릭해서 생성하자. 추가 FORM set_fcat_layout . gs_layout-zebra = 'X'. gs_layout-sel_mode = 'D'. gs_fcat-fieldname = 'CARRID'. "carrid필드만 나오게 하는 기능 gs_..

1> program 만들기 include 된 table 생성 됬으니 main package 인 zc5r070011_test2로 간다. 주석 해제된 zc5r070011_test_f01 을 주석해제후 더블클릭해서 생성하자. save = > local object save 마무리. 만약 잘못 만들었다면 다음과 같이 se38에서 확인후 delete 하기 Error SELECTION-SCREEN statements can only be used between selection-screen begin and end of screen (program type is not "1") is not 1"1"). module pool 이이 아니라 execute table. -All in One- *&--------------..
1> binary search를 하기 위해서는 sort가 꼭 되야한다. sort 의 carrid carrname 의 순서와 with key 다음의 carrid carrname의 순서는 일치해야 한다. * 꼭 binary search를 해야한다면 sort를 꼭 하자. *sort lt_data by carrid carrname. * * *read table lt_data with key carrid ='' * carrnaem = '' * binary search. ********************************************************************** 2> 정렬 sorted table 과 hashed table 이 존재한다. *************************..
#주의 occurs 0은 table of를 대체할 떄 사용하는 문법이다. 절대 with header line의 기능을 함축하고 있지 않다! 1> table을 header를 추가해서 사용하는 방법. + with header line # 사용하지는 말자. ********************************************************************** "with header line 을 사용하면 sturcture 과 같이 work area로 사용할수 있다. "하지만 header line을 없이 코딩하는 습관을 기르자. DATA : lt_data TYPE TABLE OF sbuspart WITH HEADER LINE. 2> data: begin of + occurs 0으로 tabl..