1. 발생시점 : include가 포함된 테이블에 string 타입의 필드를 추가하려고 할때.. – Enhancement Category 정보 : http://www.sapks.com/2012/04/enhancement-category-for-table-missing.html 2. 해결책 : Enhancement Category 변경. – 오류메시지 – Enhancement Category 메뉴. – 적절한 카테고리로 변경.
1. 발생시점 : include가 포함된 테이블에 string 타입의 필드를 추가하려고 할때.. – Enhancement Category 정보 : http://www.sapks.com/2012/04/enhancement-category-for-table-missing.html 2. 해결책 : Enhancement Category 변경. – 오류메시지 – Enhancement Category 메뉴. – 적절한 카테고리로 변경.
T527X : 조직 단위 (HR)
1. 목적 : 팝업창을 띄우고, 버튼눌러 저장하고 버튼눌러 팝업창 닫기를 한번에 하고 싶었음. 2. 방법 1 가. 팝업창은 동일하게 띄움. 나. 저장+닫기 버튼을 생성 다. OnInputprocessing에서 close 페이지 navigation->goto_page() 로 이동 라. close page에서 onLoad시 window.close() 스크립트 실행 마. 추가로 상태 업데이트를 위해, Opener 페이지 reload 시켜 줌. [#M_Close 페이지 소스|접기| <html> <head> <title>Close</title> </head> <body onload=“reload();window.close();”></body> </html> <script language=“javascript”> function reload() { try{ opener.reload(); }catch(e){} }</script>_M#] [#M_Close […]
Main Class : CL_HTTP_UTILITY 1. Encoding : http://wiki.scn.sap.com/wiki/display/Snippets/Encoding+BASE64+in+ABAP 2. Decoding : http://wiki.scn.sap.com/wiki/display/Snippets/Decoding+BASE64+in+ABAP
htmlb Element와 Attribue 상세 설명되어 있음. – SAP HTMLB Guidelines : http://sapdesignguild.org/resources/htmlb_guidance/index.html – 관련 링크 : SAP UEC(User Experience Community) : https://experience.sap.com/
1. Layout에 tableView htmlb 태그로 구현 – 장점 : Iterator 필요없음 – 단점 : 다양한 컬럼 Element 사용 못함(Dropdownlistbox, Inputfield…) 2. Iterator의 column_definitions Method에 oncellclick으로 구현 – 장점 : oncellclick에 Event명으로 간단히 구현 – 단점 : 구현된 컬럼이 링크표시 안됨(밑줄,글자색깔..) – 해결방안 : 출력 데이터에 태그 추가(<font color=blue><u>Link Text</u></font> 3. Iterator의 render_cell_start에 p_replacement_bee로 구현 – 장점 : 다양한 link속성 지정가능 – 단점 : 링크 클릭한 […]
1. Building Webservice with SAP Application Server and ABAP cfile25.uf.24404E42536C937F1EE527.pdf 2. 관련 링크 – http://www.architectsap.com/blog/sap-abap/sap-abap-enterprise-services-best-practice/
Docking Container 검색조건 때문에, SAPGUI 화면 해상도까지 찾아보게 됨. +_+ 1. SAPGUI 해상도 확인하는 Source Code. DATA: lo_consumer TYPE REF TO cl_gui_props_consumer, lo_factors TYPE cntl_metric_factors. lo_consumer = cl_gui_props_consumer=>create_consumer( ). lo_factors = lo_consumer->get_metric_factors( ). WRITE:/ ‘가로 해상도:’, lo_factors-screen-x. WRITE:/ ‘세로 해상도:’, lo_factors-screen-y. 1.1. 더 간단한 소스 data: ls_factors type cntl_metric_factors. ls_factors = cl_gui_cfw=>get_metric_factors( ). or CALL METHOD cl_gui_cfw=>get_metric_factors […]