1. BSP로 치자면, 해당 BSP가 수행된 Instance를 AL08에서 찾는다. 2. SM51에서 해당 Instance를 선택하면 RFC로 연결됨 3. 대상 Instance에 디버깅등을 걸면됨.
1. BSP로 치자면, 해당 BSP가 수행된 Instance를 AL08에서 찾는다. 2. SM51에서 해당 Instance를 선택하면 RFC로 연결됨 3. 대상 Instance에 디버깅등을 걸면됨.
1. Driver : http://www.ibmfiles.com/pages/sk88xx.htm 2. SK-8845 Driver – 설치파일 : http://support.lenovo.com/hk/zh/downloads/ds004171 – 버전 : 하단에 9.1.2.0 버전인 v2kyb03us17.exe 파일을 다운로드 해서 실행 – 설치 : 압축 풀린 폴더 ( C:\swtools\drivers\KYB\v2kyb03us17\WinWDF\x64 )로 직접 가서 setup.exe 우클릭하여 속성 -> 호환성 -> 호환모들를 ‘Windows Vista’로 선택하여 설치 – 출처 : http://tpholic.com/xe/?_filter=search&mid=ibmmaniapds&search_target=title&search_keyword=sk-8845&document_srl=11186425 3. Keyboard Customizer : http://itpe.me/480
1. 이슈 : textEdit으로 입력한 longtext를 스마트폼으로 출력시, 줄바꿈(CR_LF)이 ##으로 그대로 표시됨 2. 해결방법 : 함수 “CONVERT_STREAM_TO_ITF_TEXT”을 이용해 Internal Table로 사전 구성해 출력. DATA: lt_lines TYPE string_table. DATA: lv_znote TYPE string. DATA: lt_znote TYPE TABLE OF TLINE. APPEND lv_znote TO lt_lines. CLEAR: lt_znote. CALL FUNCTION ‘CONVERT_STREAM_TO_ITF_TEXT’ EXPORTING stream_lines = lt_lines language = sy-langu lf […]
1. 헤더 <bsp:findAndReplace find = “<input” find1 = “urEdf2TxtEnbl” replace = “<input readonly” replace1 = “urEdf2TxtRead” > […]
– 브라우저 창닫으면 onbeforeunload로 이벤트를 Catch하여 BTN_CLOSE 버튼 이벤트를 발생시켜 줌. <%– 팝업창 닫기 액션 : 닫기버튼 이벤트 발생–%> function fn_onClose(){ document.getElementById(“BTN_CLOSE”).click(); } <script language=”javascript”> window.onbeforeunload = fn_onClose; </script>
– inputField Readonly 필드가 Backspace 버튼이 작동함. function disableBack(e){ var key=e.keyCode; if (key==8){ <%– 8 is for Backspace –%> e.returnValue = false; } } <script for=”if_bldat” event=”onkeydown” type=”text/javascript”> disableBack(event); </script>
– event는 onblur, onkeydown 등 적용가능. – 스크립트는 form안에서 구현. – if_bldat는 inputField ID <script for=”if_bldat” event=”onkeydown” type=”text/javascript”> <%– 증빙일 –%> disableBack(event); </script>
lv_find = ‘<input’ . lv_replace = `<input style = ‘ime-mode:active;’`.
1. 나눔고딕코딩 : https://github.com/naver/nanumfont 2. D2Coding : https://github.com/naver/d2codingfont 3. Source Code Pro : Download , https://github.com/adobe-fonts/source-code-pro