SAP Expert has Published 132 Articles

SAP ABAP: Using Elementary data type and reference type with keyword VALUE

SAP Expert

SAP Expert

Updated on 12-Feb-2020 10:28:09

199 Views

It is not possible. Check this link for details:ABAP DocumentationThe correct way for using “VALUE” with elementary data type is by assigning initial value and you should use NEW operator to assign initial value.DATA(l_value) = NEW char4( 'AAA' ).

Data Replication from SAP PO to SQL Server

SAP Expert

SAP Expert

Updated on 12-Feb-2020 10:24:40

348 Views

Note that SAP PO is not a data source but middleware so it doesn’t contain any data. You can extract data from SQL Server using JDBC.SAP PI/XI enables you to set up cross system communication and integration and allows you to connect SAP and non-SAP systems based on different programming ... Read More

How to create a list in SAPUI5?

SAP Expert

SAP Expert

Updated on 12-Dec-2019 10:41:05

780 Views

I have gone through your code and it looks your list binding is incorrect. When you bind your data, your data should be in a JSON array format.  Please find below the updated working code.Examplevar oModelData = [   {Animal: "Kangaroo", Zoo: "Sydney"},   {Animal: "Tiger", Zoo: "Melbourne"},   {Animal: ... Read More

How can I update a third party database outside SAP after completing a Transaction?

SAP Expert

SAP Expert

Updated on 12-Dec-2019 10:36:51

83 Views

As you need to make some changes to happen when an activity gets completed in SAP, I would suggest you to go for services. Services are the best way to communicate when you are dealing with two discrete systems.Firstly you need to create a program on SAP side which can ... Read More

SAP BI retrieving PDF from Web Service

SAP Expert

SAP Expert

Updated on 04-Dec-2019 06:47:15

226 Views

Try using REST SDK to retrieve document and convert it in to PDF. Follow below steps:Logon: POST /biprws/logon/longGet the doc's prompts (if any) GET /biprws/raylight/v1/documents/5690743/parametersPass the correct values for the prompts (if any) and refresh the document: PUT /biprws/raylight/v1/documents/5690743/parametersExport as PDF GET /biprws/raylight/v1/documents/5690743In end you need to pass Accept: application/pdf ... Read More

Connecting PHP directly to SAP Business One

SAP Expert

SAP Expert

Updated on 04-Dec-2019 06:44:38

510 Views

I would suggest you using DI Server instead of DI API as DI API is more recommended for .NET platform however you are using PHP so it may run into compatibility issue.Also 0 means you are connected successfully.Note that DI Server (Data Interface Server) is a Component Object Model service ... Read More

Disadvantages of using row based tables in SAP HANA

SAP Expert

SAP Expert

Updated on 30-Jul-2019 22:30:22

130 Views

Row based tables are used when only one record has to be processed at a time. Row based table doesn’t support aggregations and fast searching.When your application needs to access a complete record or a complete row it is recommended to use row based tables.

Different SAP HANA Administration tools

SAP Expert

SAP Expert

Updated on 30-Jul-2019 22:30:22

150 Views

There are various tools but most commonly includes HANA Studio and HANA Cockpit. Following are common HANA Administration Tools −SAP HANA CockpitThis is an administration tool to manage your SAP HANA system and is based on SAP Fiori Launchpad based navigation to access long range of HANA applications. SAP HANA ... Read More

Adding system archive link in SAP HANA Studio

SAP Expert

SAP Expert

Updated on 30-Jul-2019 22:30:21

173 Views

To allow users who work in the SAP HANA studio to connect efficiently to multiple SAP HANA systems, you can manage a list of all systems in a centrally-accessible archive. Users can then simply link to this archive.

Information exported using export system in SAP HANA Studio

SAP Expert

SAP Expert

Updated on 30-Jul-2019 22:30:21

148 Views

When you use export option from main menu, it also exports the list of systems and their properties (name, description, host name, instance, and so on) is exported as an XML file to the specified location.

Advertisements