일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 쿠키의 정의
- 필터vs인터셉터
- 쿠키란
- 인터셉터의 정의
- 세션의 정의
- abap value in field Data Class error
- application-properties
- jpa
- @Controller
- 필터의 정의
- BindingResult
- java.lang.AssertionError
- 유연한 컨트롤러1 - v5
- MVC
- Validation
- 구글 보안 api 활용
- 김영한
- SpringMVC
- 세션vs쿠키
- 세션이란
- .orelseThrow
- Testcode
- n+1
- springSecurityFilterChain 오류
- spring MVC
- optional
- spring
- filter vs interceptor
- 401오류
- controller
- Today
- Total
목록[SAP]ABAP/ABAP 강의 SYNC (31)
ABAP DUMP ERROR 24시
#주의 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..

message 'data not found' type 's' display like 'v' 실제로는 SUCCESS 기능이 아노지만 display에서는 v 라고 나와주세요. 출처 :https://help.sap.com/doc/saphelp_nw75/7.5.5/en-US/4e/c24da36e391014adc9fffe4e204223/content.htm?no_cache=true T- CODE SE91 에서 MESSAGE CLASS 생성이 가능하다. REPORT zc5r070007 MESSAGE-ID OO. MESSAGE S001. // MESSAGE-ID 는 OO꺼를 사용하고 MESSAGE TYPE 은 S이며 001번을 사용하겠다. *******************************************..

join SAP 에서는 IF문 대신에 CASE 문을 써주기. 1) read table 에서 with key로 pk를 불러오자. DATA: BEGIN OF ls_data, carrid TYPE sflight-carrid, connid TYPE sflight-connid, fldate TYPE sflight-fldate, currency TYPE sflight-currency, planetype TYPE sflight-planetype, seatsocc_b TYPE sflight-seatsocc_b, END OF ls_data, lv_ct(100) TYPE i, lt_data LIKE TABLE OF ls_data. CLEAR : ls_data. REFRESH lt_data. SELECT carrid con..
data : lv_cnt(5) type p. DO lv_cnt TIMES. WRITE : 'a', /. ENDDO. **************************************** *lines 를 사용하면 data의 갯수를 확인해준다. .count() *describe table x lines y x의 데이터 값을 y에 할당해주세요. if sy-subrc eq 0. lv_ct = lines(lt_data). DESCRIBE TABLE lt_data lines lv_cnt. ENDIF **************************************** 특정 index를 읽기 = > read table x into y index z **********************************..
1> if endif 문 정리 *********************************************************** *DATA : BEGIN OF ls_data, * MTART TYPE t134-MTART, * MTREF TYPE t134-MTREF, * MBREF TYPE t134-MBREF, * PSTAT TYPE t134-PSTAT, * VMTPO TYPE t134-VMTPO, * * END OF ls_data, * * lt_data LIKE TABLE OF ls_data. * *SELECT MTART MTREF MBREF FLREF ARDEL * INTO CORRESPONDING FIELDS OF TABLE lt_data * FROM t134 * WHERE mtref = 'H..

********************************************************************************** *header 가 없을 경우 table 과 sturcture 를 날릴떄 사용 방법: DATA : ls_mara TYPE mara, lt_mara like table of mara. * CLEAR ls_mara, * internal table이 가지고 있는 data를 나렬버린다. REFRESH lt_mara ls_mara-matnr = 'AA'. ls_mara-mtart = 'bb'. APPEND ls_mara TO lt_mara. ls_mara-mtart = 'cc'. APPEND ls_mara TO lt_mara. BREAK-POINT. **********..