proxy
[SAP EAI] SAP PO(Process Integration) - SOAP Adapter 타임아웃 파라메터 세팅(Timeout parameters in SOAP Sender/Receiver Adapter)
SAP PO의 SOAP Sender/Receiver Adapter의 Timeout 파라메터 세팅 방법 SOAP의 경우 일반적으로 Proxy 세팅또한 SOAP Adapter를 사용하여 Proxy 세팅을 한다. 때문에 Proxy 통신에 대한 파라메터 세팅의 경우에도 동일한 방식을 활용하여 세팅하면 된다. 1. SOAP Sender Setting 방법 1) Integration Directory에서 Timeout 세팅하고자 하는 SOAP Communication Channel을 연다. 2) SOAP Communication Channel의 Module 탭을 클릭한다. 3) Module Configuration 항목에 캡쳐화면에 나온것처럼 parameter 값을 넣어준다. 참고사항 - 매개변수의 이름은 SOAP..
[ABAP] ERROR - CX_SY_CONVERSION_OVERFLOW
인터페이스받은 PROXY에서 해당 에러가 발생하는 경우는 주로 받아온 값이 선언되어져 있는 값보다 클경우에 발생하는 자릿수 초과 에러라고 보시면 됩니다. Error during proxy processing An exception with the type CX_SY_CONVERSION_OVERFLOW occurred, but was neither handled locally, nor declared in a RAISING clause Overflow converting from 'XXXXX' 이러한 경우에는 필드의 값이 들어갈 수 있게 해당 필드의 크기를 늘리거나 전문을 보내주는 곳의 필드값을 줄여주면 해당 에러를 잡을 수 있습니다. 참고 URL: answers.sap.com/questions/63572..