SAP Articles

Found 902 articles

Difference between an SAP ERP system and DBMS

Samual Sam
Samual Sam
Updated on 25-Jun-2024 3K+ Views

DBMS or Database Management system is basically the tool/interface required to manage the database.  For example, SQL server or a tool like MYSQL workbench is a DBMS. A DBMS is mainly used by or designed for technical people.ERP (Enterprise Resource Planning System) is a complete system with one database and number of function modules and has a number of inputs and output interfaces to be used by everyone. For example, there can be a user interface for customer or business people, another for technical people with various skills.So basically we can say that DBMS can be a subset of ERP.

Read More

Retrieving Idoc XML data from SAP system over HTTPS

Ali
Ali
Updated on 04-Mar-2024 637 Views

You can read HTTP using file_get_contents("php://input")Try using this link-https://www.php.net/manual/en/reserved.variables.php

Read More

Integrating .NET application with SAP system and using best practices

Giri Raju
Giri Raju
Updated on 04-Mar-2024 992 Views

To connect a .NET application with SAP system, there are different approaches that you can follow:Use of SAP PI middleware that offers different protocols and communication framework for integration of two systems. 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 language like Java and SAP ABAP. It provides an open source environment that is necessary in complex system landscape for the integration of systems and for communication.SAP Process Integration is a middleware to allow seamless integration between SAP and non-SAP application in a ...

Read More

Error Failed to load resource in SAPUI5 application

Anil SAP Gupta
Anil SAP Gupta
Updated on 04-Mar-2024 2K+ Views

It is clear from your error message: VisitorData.view.js is not found so you have to check if this view actually exists and there is no permission issues on this view.Try checking this to view list of deployed services − http://hanaservername.com:4000/ui_test/ui5_test/WebContent/resources/You have to add below in your web.xml −    com.sap.ui5.resource.DEV_MODE    true

Read More

Difference Between BDC and Call Transaction

Md. Sajid
Md. Sajid
Updated on 15-May-2023 2K+ Views

BDC (Batch Data Communication) and Call Transaction are two different methods for performing data entry operations in SAP. BDC is a method for uploading or updating huge amounts of data in SAP systems. Call Transaction is a method for automatically executing transaction codes in SAP. Read this article to find out more about BDC and Call Transaction and how they are different from each other. What is BDC? BDC (Batch Data Communication) is a SAP technique for automating the process of uploading or updating huge amounts of data in SAP systems. BDC can help with data migration, data maintenance, and ...

Read More

Difference Between Great Plains and SAP

Md. Sajid
Md. Sajid
Updated on 13-Feb-2023 1K+ Views

The business software industry is brimming with possibilities, each with its features and benefits. Great Plains and SAP are two of the most popular software packages. While both have a wide variety of capabilities, there are several major distinctions. Both Great Plains and SAP are enterprise resource planning (ERP) software. Microsoft created Great Plains, while a German corporation called SAP created SAP. Great Plains is for small to medium-sized organizations, whereas SAP is for large corporations. Great Plains is less expensive than SAP and can be installed more quickly, although it lacks several of SAP's sophisticated capabilities. Both ...

Read More

Using SAP JCO to connect SAP server to JAVA application

Prabhas
Prabhas
Updated on 25-Jun-2020 2K+ Views

I would suggest you to use below instead of JCO_AHOST and JCO_SYSNR:Use JCO_R3NAME with system ID of the target hostUse JCO_MSHOST with message server host name or IP addressUse JCO_MSSERV with message server port numberUse JCO_GROUP with the name of the logon groupYou can refer to below link to check a working example:https://sourceforge.net/p/rcer/git/ci/master/tree/net.sf.rcer.conn

Read More

Handling String localization hardcoding issue in ERP like SAP, Dynamic, etc.

SAP ABAP Expert
SAP ABAP Expert
Updated on 25-Jun-2020 295 Views

This can be handled by keeping value same and just change meaning as below:'Y'(Yes) or 'N'(No)Should be like this for German-'Y'(Ja) or 'N'(Nein)

Read More

Adding millisecond to date in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 844 Views

Try using ADD_SECONDS function as below:SELECT ADD_SECONDS (TO_TIMESTAMP('2017-07-15 02:17:15'), 0.1) FROM TESTThis will add seconds as fraction value as requested. Below is syntax and example:ADD_SECONDS SyntaxADD_SECONDS (t, n)DescriptionComputes the time t plus n seconds.Example:SELECT ADD_SECONDS (TO_TIMESTAMP ('2012-01-01 23:30:45'), 60*30) "add seconds" FROM DUMMY; add seconds2012-01-02 00:00:45.0To know more about ADD_SECONDS function, you can also refer this link:datetime function in SAP HANATo know more about SQL functions in SAP HANA system, you can also refer our HANA tutorial:SAP HANA SQL Functions

Read More

Converting BLOB to Char in SAP HANA using SQL

SAP Expert
SAP Expert
Updated on 25-Jun-2020 931 Views

You can perform varchar casting using following query:SELECT TO_ALPHANUM(col) FROM ......

Read More
Showing 1–10 of 902 articles
« Prev 1 2 3 4 5 91 Next »
Advertisements