Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
SAP Articles
Found 902 articles
Difference between an SAP ERP system and DBMS
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 MoreRetrieving Idoc XML data from SAP system over HTTPS
You can read HTTP using file_get_contents("php://input")Try using this link-https://www.php.net/manual/en/reserved.variables.php
Read MoreIntegrating .NET application with SAP system and using best practices
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 MoreError Failed to load resource in SAPUI5 application
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 MoreDifference Between BDC and Call Transaction
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 MoreDifference Between Great Plains and SAP
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 MoreUsing SAP JCO to connect SAP server to JAVA application
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 MoreHandling String localization hardcoding issue in ERP like SAP, Dynamic, etc.
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 MoreAdding millisecond to date in SAP HANA
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 MoreConverting BLOB to Char in SAP HANA using SQL
You can perform varchar casting using following query:SELECT TO_ALPHANUM(col) FROM ......
Read More