본문 바로가기

IT31

[MS SQL] 특정 이름의 컬럼을 소유한 모든 테이블 검색 일일히 테이블에 접속해보지 않아도 컬럼 목록 및 내용 조회 가능3행만 바꿔주면 됨123456SELECT *FROM INFORMATION_SCHEMA.COLUMNSWHERE column_name like '%temp%' AND table_name IN (SELECT table_name FROM INFORMATION_SCHEMA.TABLES WHERE table_type = 'BASE TABLE')cs 2017. 2. 13.
W5D0 _ Adjustment of SAP Standard Software Unit 1 Adjustment of SAP Standard Software 2017. 1. 9.
W4DA _ Object-Oriented Programming Unit 1 Introduction to Object-Oriented Programming The Procedural Prog. Model Concepts of Object-Oriented Programming Model p 011 Encapsulation / Inheritance ( 상속 ) / Polymorphism for support of generic programming / Event Controlling Unit 2 Fundamental Object-Oriented Syntaxp 033Creating Local ClassesClass 에 선언할 수 없는 4가지 - p 37TABLES OCCURS 0WITH HEADER LINELIKE structure type ( data obj, syste.. 2017. 1. 2.
W3D5 _ Database Updates ( Unit 4 ~ ing ) Unit 1 Database Updates with ABAP Open SQL INSERT / UPDATE / DELETE // MODIFYsy-subrc : 작업 성공 여부 / sy-dbcnt : 작업 성공 횟수 INSERT ( INTO )123456DATA: wa1 TYPE zscarr_01. wa1-carrid = 'TJ'.wa1-carrname = 'TJ Airline'. INSERT INTO zscarr_01 VALUES wa1.csUPDATE ( SET )1234DATA: wa1 TYPE zscarr_01.UPDATE zscarr_01 SET currcode = 'KRW' url = '//Temp Url' WHERE carrid = 'TJ'.csDELETE ( FROM )1DELETE FORM .. 2016. 12. 29.
W3D2 _ ABAP List Viewer ( ALV ) Unit 1 Introduction to ABAP Reports ① ALV Grid Control and Classic ABAP List • ALV Grid Control : ALV는 SAP ABAP List Viewer의 줄임말, 하나의 record를 여러 줄로 표현하는 것만 빼고 다 가능 • Classic ABAP List : WRITE문으로 나타내는 것 ALV (ABAP List Viewer) 란? 필터링, 오름차순, 내림차순, 전체합, 셀렉트(범위 지정) 등의 다양한 기능들을 제공찾아가는 법 : setting -> User parameters -> ALV Grid Display기능상 안되는 것 1가지 : Allows the display of a single data record in multi-.. 2016. 12. 26.
W2D4 _ Unit 12~16 _ p380 _ The Program Interface / Simple Screen Elements ... Unit 12 The Program Interface • SET TITLEBAR '대문자' : 타이틀바 생성• SET PF-STATUS '대문자' : 타이틀바를 제외한 나머지 요소 생성 Unit 13 Simple Screen Elementsp 408 ① Text Fields • Text Field는 Screen에서 정의하고 ABAP 영역에 따로 선언할 필요 없음 ② Creating a Radio Button Group • Layout에서 Radio Button들 모두 블록 잡은 후 우클릭, Radio Button Group > Define 클릭 ③ Push Buttons • 반드시 Function Code를 명시해 주어야 함 Unit 14 Screen Error Handlingp 439 ① Paramet.. 2016. 12. 23.