본문 바로가기

SAP UI5

Connect Remote Systems in SAP Web IDE Personal Edition(orion 에 abap repository연동)

 

참고 URL : Connect Remote Systems in SAP Web IDE Personal Edition | SAP Help Portal

 

SAP Help Portal

 

help.sap.com

 

 

C:\SAPWebIDE\eclipse\config_master\service.destinations\destinations  폴더로 이동하여 자신의 SAP시스템 SID를딴 파일을 만든다. (확장자 제외)

 

작성한 파일을 열고 다음 구성을 추가하여 자리 표시자를 시스템 고유의 값으로 바꿉니다.

 

 

Description=<mysystem> description
Type=HTTP
TrustAll=true
Authentication=NoAuthentication
Name=<mysystem>
ProxyType=Internet
URL=https\://<host>\:<port>
WebIDEUsage=<add a value according to the table below>
WebIDESystem=<mysystem>
WebIDEEnabled=true
sap-client=<SAP client number for ABAP systems only. Delete this line if you are not using an ABAP system.>

 

 

WebIDEUsage 에는 아래정보를 필요한것을 넣는다.

  • odata_abap:For the OData functionality of Gateway (corresponds to URL path /sap/opu/odata)
  • odata_gen:For generic OData functionality (service URL must be provided manually in the New Project wizard)
  • ui5_execute_abap:For executing SAPUI5 applications from the SAPUI5 ABAP repository (corresponds to URL path /sap/bc/ui5_ui5)
  • dev_abap:For extensibility scenarios and developing or deploying to the SAPUI5 ABAP repository (corresponds to URL path /sap/bc/adt)
  • bsp_execute_abap:For working with fact sheets (corresponds to URL path /sap/bc/bsp)
  • odata_xs:For SAP HANA XS OData services (corresponds to URL path/sap/hba)

 

나의 설정샘플

Description=WAL description
Type=HTTP
TrustAll=true
Authentication=NoAuthentication
Name=WAL
ProxyType=Internet
URL=https\://s42022.server.com\:44371
WebIDEUsage=odata_abap,odata_gen,ui5_execute_abap,dev_abap,bsp_execute_abap,odata_xs
WebIDESystem=WAL
WebIDEEnabled=true
sap-client=220

 

포트는 FIORI를 사용하는 포트를 넣으면된다.

이후 ABAP REPOSITORY를 연동하니 잘된다. 끝

 

'SAP UI5' 카테고리의 다른 글

UI5 생명주기 (Life Cycle)  (0) 2024.05.01
UI5 모델바인딩  (0) 2024.05.01
SAP UI5 버전 업 하기 ( On-premise )  (0) 2024.05.01
UI5 프로젝트 생성시 폴더구조 및 기능  (0) 2024.05.01
UI5 Hello Wold 테스트  (0) 2024.05.01