Questions tagged [s4hana]

The tag is for question covering all topics related to S/4HANA: integration patterns of S/4HANA with other products, its programming and architecture principles, and development/extension of S/4HANA apps based on the Fiori and UI5 UI frameworks.

S/4HANA is SAP's new generation business suite that is based on HANA in-memory database and replaces the previous SAP ERP business suite based on ECC component.

S/4HANA exists in two flavours: SAP S/4HANA On-Premise and SAP S/4HANA Cloud and has a number of improvements over previous ECC-based suite, including but not limited to:

  • improved performance by the use of HANA in-memory computation
  • new and more optimized data dictionary structures
  • fast and customizable HTML5-based Fiori UI
  • wider set of predefined best-practice solutions and addons
  • better connectivity options
93 questions
0
votes
1 answer

Procesing big excel file with nodejs in SAP S/4Hana Application

I would like to ask for some help with solving the problem I'm facing (not a javascript developer, bare in mind. ). Any help would be grateful. Process: User uploads selected excel file from UI. In back-end we process file with xlsx/exceljs…
Ychdziu
  • 435
  • 5
  • 10
0
votes
1 answer

ABAP RAP Action button Error "Invalid Function Import Parameter"?

I have created a Fiori elements app using CDS annotations. My app contains multi-select list report. I created a Action button using lineItem annotation like below { type: #FOR_ACTION, position: 10, dataAction: 'que_post', label: 'tre',…
Piyush aggarwal
  • 750
  • 2
  • 14
  • 25
0
votes
0 answers

Extracting ASCII data from SAP to other systems

We are exporting some data from SAP to Azure. This includes a field containing URL information. SAP stores this in ASCII format. How this data can be converted to text data in this other system? Is there some standard code/libraries (e.g. Java,…
sdas
  • 23
  • 8
0
votes
0 answers

Optimal way to select from multiple tables

I want to report from a selection on multiple tables with filters to apply. Nothing new, but I'm wondering what is the best possible implementation (considering I'm using an S/4HANA system). Specification Data For example, we want to retrieve the…
depth1
  • 135
  • 10
0
votes
1 answer

azure APIM client certificate towards SAP gateway

We're trying to use a client certificate to authenticate when calling an OData service in SAP S/4HANA. And we're calling from an azure APIM instance. As certificate we've created a self-signed certificate and configured SAP S/4HANA according to this…
0
votes
0 answers

How to access REST API of S/4HANA Cloud

I have a S/4HANA Cloud trial account, and trying to access REST APIs. I am getting "401 Not Authorized" error. Is access to REST API not allowed for S/4HANA trial accounts? Is there a way to enable it? Or should I use some other userid for Basic…
sdas
  • 23
  • 8
0
votes
1 answer

How do I block storage bin for putaway in S4HANA?

I need to block a bin other than the bin determined during creation of the warehouse task - bin adjacent to the determined bin. I can manually block the storage bin for putaway via /SCWM/LS02 like below: However, I need to do this via enhancement…
erik
  • 1
0
votes
2 answers

Optimal way to transfer 4 Virtual SDA Tables in Hana DB

Problem: My team is currently undergoing an ERP migration from an ECC system to a new S/4 Hana System. As part of go-live, our team needs to replicate all of the tables out of the S/4 system and into our SLT schema which will host the data. A…
lildakota
  • 141
  • 3
  • 15
0
votes
1 answer

how can one querying sap s4 hana tables data from sap hana studio or third party tool

How do one can access/query SAP S/4HANA table data through E.g. select * from kn01 where client=100: SAP HANA STUDIO OBDC driver Oracle SQL developer Secondly I have a system access through HANA studio , but I can't see any application tables over…
0
votes
1 answer

Migration of KNKK select query to S/4HANA?

I have the following SELECT in one of my programs, and I need to modify it due a migration to SAP S/4HANA. SELECT kunnr klimk FROM knkk UP TO 1 ROWS INTO (knkk-kunnr,knkk-klimk) WHERE kunnr = p_kunnr. How can I modify that for it become…
schmelto
  • 427
  • 5
  • 18
0
votes
1 answer

How check if customer system is S/4 HANA Essentials (Multi Tenant)

Is it possible to determine via code if the current system is S/4HANA Cloud Essentials? I have a requirement in which I must only enable a field if it is not a S/4HANA Cloud Essentials system. I have found this question: How to programmatically tell…
Augusto Accorsi
  • 317
  • 5
  • 21
0
votes
1 answer

Error when trying to call SAP HANA stored procedure from service side

I am trying to call a SAP HANA hdbprocedure from my service side using below code. var con = ConLib.getHDBConnection(); var uploadStmt = con.loadProcedure("_SYS_BIC" , "procname"); var result = uploadStmt("samplefield1", "samplefield2",…
user1203259
  • 95
  • 1
  • 6
0
votes
1 answer

SAP Flexible Workflow pre-condition drop-down texts are not populated

I've created a new flexible workflow scenario and added some pre-conditions. One of the condition has a single parameter, with a data-element that has a domain with fixed values (YES and NO). The issue is, in the Fiori app "Manage Workflows", when I…
Mithun
  • 55
  • 1
  • 1
  • 10
0
votes
0 answers

Target host is not specified exception while calling BAPI from Java using SAP Cloud SDK version 3.0

I am working on a POC currently where I need to call a BAPI inside S/4HANA On-Premise from a cloud application using Java. For this I am using SAP Cloud SDK. For initial setup I followed these steps from the guide "Set Up Your Local Infrastructure…
arunava04
  • 67
  • 9
0
votes
1 answer

Spring Boot Application with S/4Hana On-Premise using Cloud SDK 3.9.0

I am trying to write a Spring Boot application (Gradle), which will query data via cloud connector from a S/4Hana on-premise system. Just fyi: I already have Java (Maven) application (example from SAP) running, which is working fine. So my cloud…
Billy
  • 1