본문 바로가기
  • 노란색 세상은 어디에 있을까?
  • 봄이 오면 여기에 있겠지.
  • 잠시나마 유유자적 하겠네.

전체 글93

[ 프로파일 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 시스템관리 ] 프로파일 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bsys.sys_profile_s; create sequence bsys.sys_profile_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 or.. 2024. 4. 7.
[ 국가 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 시스템관리 ] 국가 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bsys.sys_country_s; create sequence bsys.sys_country_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 orde.. 2024. 4. 7.
[ BHRM] 오라클 사용자를 생성합니다. BHRM 사용자를 생성합니다. -- ------------------------------------------------------------------------------------------------ -- 사용자 접속 system/****@vis1229; -- ------------------------------------------------------------------------------------------------ show user; set trimspool on; set timing on; set heading on; set linesize 205; set pagesize 20; -- ----------------------------------------------------.. 2024. 4. 7.
[ BCOM] 오라클 사용자를 생성합니다. BCOM 사용자를 생성합니다. -- ------------------------------------------------------------------------------------------------ -- 사용자 접속 system/****@vis1229; -- ------------------------------------------------------------------------------------------------ show user; set trimspool on; set timing on; set heading on; set linesize 205; set pagesize 20; -- ----------------------------------------------------.. 2024. 4. 7.
[ 삭제취소 ] 버튼을 아래와 같이 추가합니다. Interactive Gird를 대상으로 "삭제취소" 버튼을 추가합니다. ● Identification - Button Name: CAN_ROW - Label: 삭제취소 ● Appearance - Button Template: Text with Icon - CSS Classes: b_can_row_css - Icon: fa-repeat ● Behavior - Action: Defined by Dynamic Action ● Identification - Name: 삭제취소-처리 - Action: Execute JavaScript Code ● Settings - Code: apex.region("GRID_COM_AUTH").widget().interactiveGrid("getActions").invoke(".. 2024. 4. 7.
[ 행삭제 ] 버튼을 아래와 같이 추가합니다. Interactive Gird를 대상으로 "행삭제" 버튼을 추가합니다. - 삭제하기전 "시스템 등록 데이터" 삭제 불가 메시지를 출력합니다. - 그외 데이터는 선택된 행을 삭제합니다. - 저장 버튼을 클릭합니다. ● Identification - Button Name: DEL_ROW - Label: 행삭제 ● Appearance - Button Template: Text with Icon - CSS Classes: b_del_row_css - Icon: fa-minus ● Behavior - Action: Defined by Dynamic Action ● Identification - Name: 행삭제-확인 - Action: Alert ● Settings - Title: [ 자료삭제 ] - Message.. 2024. 4. 7.
[ 행추가 ] 버튼을 아래와 같이 추가합니다. Interactive Gird를 대상으로 "행추가" 버튼을 추가합니다. ● Identification - Button Name: ADD_ROW - Label: 행추가 ● Appearance - Button Template: Text with Icon - CSS Classes: b_add_row_css - Icon: fa-plus ● Behavior - Action: Defined by Dynamic Action ● Identification - Name: 행추가-처리 - Action: Execute JavaScript Code ● Settings - Code: apex.region("GRID_COM_AUTH").widget().interactiveGrid("getActions").invoke("selec.. 2024. 4. 6.
[ 그리드 헤더 ] 필수항목 '*' 표기 및 폰트색상 붉은색 처리 Interactive Grid ● 그리드 선택 > Advanced - Static ID: GRID_COM_AUTH ● 페이지 선택 > CSS - Inline /* 그리드 헤더 필수항목 '*' 표기 */ #GRID_COM_AUTH_ig th[data-idx="2"]::before, th[data-idx="3"]::before, th[data-idx="4"]::before, th[data-idx="5"]::before, th[data-idx="6"]::before { content: '* '; color: red; } 그리드 헤더 필수항목 기능 테스트 결과입니다. 2024. 4. 6.
[ 필수 ] 필수 항목을 검증합니다. 필수 항목을 검증하기 위하여 하기 내용을 수정합니다. ● 검증할 항목을 선택 후 오른쪽 마우스 메뉴에 "Create Validation" 이벤트를 추가합니다. ● Heading - Heading: 사용자코드 ● Settings - Trim Spaces: Leafing and Trailing (좌우 공백 제거) - Text Case: Upper (대문자) ● Validation - Value Required: No (Yes: 표준에 오류를 표기함, No: 개발자가 직접 오류를 작성 및 표기함) ● Identification - Name: 필수-사용자코드 ● Validation - Type: Column is NOt NULL ● Error - Error Message: #COLUMN_HEADER# 필수 항목.. 2024. 4. 5.