Questions tagged [sap-gateway]

Use this tag when the question involves implementing OData-compliant REST APIs in SAP Gateway, and everything about SAP Gateway Foundation: OData service implementation, proxy classes for OData services, REST messages (GET, PUT, POST, DELETE), etc.. NOT to be confused with "SAP Gateway for Microsoft" [sap-gwm].

SAP Gateway (Formerly known as "SAP NetWeaver Gateway") is a technology that allows connecting different platforms and environments based on open standards like .

It provides tools and environment for development OData services for connecting SAP and non-SAP systems. SAP Gateway can be deployed either standalone or on top of ECC system by installing SAP_GWFND component.


Official community page: https://community.sap.com/topics/gateway

190 questions
0
votes
0 answers

Skip & Top parameters do not pass to the backend

Submitting the request below from to my Server having put a break-point at the beginning of my GET_ENTITYSET method (just pay attention to the skip/top params at the beginning) GET…
Greg
  • 91
  • 1
  • 16
0
votes
1 answer

Create deep entity without deep structure

I want to pass an amount of storage units in one step. I need all storage units at once in the CREATE_ENTITY method in my OData service implementation (CREATE_ENTITY, or CREATE_DEEP_ENTITY, or...?), because I have to make a comparison of some…
Julia
  • 49
  • 1
  • 1
  • 9
0
votes
1 answer

Error Log Transformation could not be executed

We have a transactional App of SAP Fiori Element and the app is working fine in the DEV environment. but in Quality /n/iwfnd/error_log it is giving an error ..ERROR_INFO The transformation /1IWST/AAGTVCXNHUPOVLGMOY6T37L could not be executed I…
Abhi
  • 433
  • 2
  • 7
  • 17
0
votes
1 answer

How to generate system alias in /iwfnd/maint_service?

I have following problem: I created an app and the according oData in frontend system. Everything worked fine. Then I was taught, that this was not correct and I have to create the oData in backend system. So I made this. I created just the same…
Julia
  • 49
  • 1
  • 1
  • 9
0
votes
1 answer

SAP Gateway - Unexpected text for XML-ABAP transformation

URL Call from Gateway:…
Adam Harkus
  • 2,050
  • 2
  • 36
  • 64
0
votes
1 answer

Calling expand entity from SAP Gateway Client

I try to call a GET_EXPANDED_ENTITYSET method of SRA020_PO_TRACKING Project, po tracking project. The following is the method: METHOD /iwbep/if_mgw_appl_srv_runtime~get_expanded_entityset. DATA: lv_ponumber TYPE bapiekko-po_number, …
ethereal1m
  • 171
  • 1
  • 3
  • 12
0
votes
1 answer

SAP SICF - odata service nodes not created

I've created a new odata service and a new SAPUI5 project in Eclipse. I've shared the project in Eclipse with the backend server via the Teams -> Share Project -> Submit function, but somehow the node /sap/bc/ui5_ui5/sap/ is not created. Checking…
susosaurus
  • 459
  • 10
  • 28
0
votes
0 answers

Azure Data Factory SAP ECC OData connection parameters

I try to connect to a OData service available in an SAP ECC system with client number as parameter: https://system:port/sap/opu/odata/sap/srv_name/?sap-client=100. The url mentioned in the official documentation is without parameters:…
0
votes
2 answers

SAPUI5 POST Requests always result in 500 Server Error (OData)

I'm currently trying to learn the basics of SAPUI5 and OData. I'm building a simple application where employee data is displayed in a table and you can add a new employee whose data will be written to the SAP backend. All the GET requests work, the…
susosaurus
  • 459
  • 10
  • 28
0
votes
3 answers

Find system date-time format from SAP GUI and use it in frontend

I have a SAPUI5 free-style app, where I display the date in a smart-table, in format DD/MM/YYYY. However, in the frontend system in SAP GUI, my date format is MM-DD-YYYY. Is there a way to find this GUI date format and send it to the frontend app,…
Code_Tech
  • 775
  • 13
  • 42
0
votes
2 answers

How to load ODATA in Python dataframe?

I am trying to read data from ODATA and later on create dataframes using python. import requests import pyodata import json import pandas as pd When using pyodata Method 1 SERVICE_URL = 'https://xxx/sap/opu/odata/sap/Table_0001' or SERVICE_URL =…
Bruno05
  • 21
  • 1
  • 2
0
votes
0 answers

UI5 OData for a flat structure

In my company we started using UI5 and I've already done 2 simple reports. When I created the OData for the report I imported it from a function that exported a table type. Now I've created a Function that imports 2 RANGES and exports a flat…
Assaf
  • 63
  • 4
  • 11
0
votes
1 answer

PATCH Call with $batch changeset

How does the SAP NetWeaver GateWay know which row in a table to update using PATCH? Let's say I have a form, and update the 'description' for an item, how would SAP know to update the description for the item the form is for? The form has the KEY…
Fishrage_
  • 31
  • 6
0
votes
1 answer

SAPUI5 App without destination(cloudconnector)

i have a question.. for example i dont want to use the sap cloud and want to deploy my app on a sap gatewayserver so what do i have to change? my app works trough the cloud platform with a destination (cloudconnector).. but i dont want this way…
Mo Fug
  • 67
  • 6
0
votes
0 answers

How to send a multiple post request in a single batch?

I am trying to send multiple POST requests in a single batch. With these 3 requests we are setting the status on the Notification and Order --> Work Is Done, Complete and Close Report. Like FIORI. But in the SAP Gateway Client, only requests 1 and 3…