Found 1044 Articles for SAP

Integrating SAP with PHP

Sravani S
Updated on 30-Jul-2019 22:30:20

2K+ Views

Out of several ways to connect SAP to PHP - Web services and RFC (Remote Function Calls) are more used by developers. SAPRFC is an extension module for PHP 4 and PHP 5. With SAPRFC it is possible to call ABAP function modules in SAP R/3 from PHP scripts. You can use PHP language to create web applications or interface programs with connectivity to the SAP R/3. You can also write RFC server program in PHP and call PHP functions from SAP R/3.

Using clients in SAP ERP

Ramu Prasad
Updated on 16-Dec-2019 09:58:35

391 Views

Several independent companies or subsets of one company can be present in one SAP system. The client separates these companies and their relevant data. Client serves as a key to most of the SAP database tables and used customizing, transactional and master data. To summarise client serves as unique database key for each company. Client concept comes with the following advantages −You can share the same resources with multiple users.You can manage SAP system landscape as you can create multiple clients for DEV, QA and PROD team.You can share your SAP system with a large number of users. You can create clients in an ... Read More

Transporting SAP standard text

Govinda Sai
Updated on 16-Dec-2019 09:20:04

7K+ Views

STEP 1: Create Standard Text. To create standard text, you have to use T-Code SO10.In next window, pass the Text Name -> Click on CREATE Push Button. This will open a new window where you can save the TEXT.Next step is to create the TRANSPORT REQUEST to transport the TEXT. This can be done using T-Code: SE09. Go to Home screen and run T-Code SE09.To create Transport request, you have to click on CREATE button at the top. This will open Transport Organizer as below:This will open Create Request window. Enter the Short Description, Project and click on Save button as ... Read More

Difference between SAP PI/PO and ESB

Nikitha N
Updated on 12-Mar-2020 10:22:32

767 Views

SAP PI/PO is more relevant to use when your entire landscape is of SAP modules. SAP Process Integration is a part of the SAP NetWeaver platform. It is called SAP NetWeaver Exchange Infrastructure XI in NetWeaver 7.0 ehp2 and older versions. SAP NetWeaver Process Integration is a part of the NetWeaver software component and is used for the exchange of information in company’s internal system or with external parties.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 a different programming language like Java and SAP ABAP. It ... Read More

Using BU, ZK code in SAP Macros

Abhinaya
Updated on 16-Dec-2019 08:46:53

805 Views

OK CODE – In SAP, an OK code is used for any functionality. The OK code is used to perform an action executed or will be executed (save, back, exit) etc. BU – This OK function is used to perform SAVE function in an MM01 transaction.ZK – This code is used to get the additional information. To find out a function of each button, you have to navigate to System -> Status -> Double click on GUI Status.

Moving SAP client from one system to other

Ankitha Reddy
Updated on 30-Jul-2019 22:30:20

839 Views

You can also create a copy of the existing clients between local and remote system IDs. Follow the below steps to create a copy of existing clients − Step 1 − To create a copy of a client in local SID, the transaction code is SCCL. Step 2 − Enter the following details − Select your desired profile, enter source client, and enter description. Step 3 − By default, the client copy is executed in a single process and you can distribute the workload on multiple processes to reduce time for copying. Step 4 − Copying a ... Read More

Decoding SAP text from STXL.CLUSTD table

Abhinanda Shri
Updated on 30-Jul-2019 22:30:20

934 Views

Accessing cluster tables in SAP is not recommended. If you set a direct access underlying database in SAP R/3 system, this option is not recommended as it will bypass all the security features in ERP system and open security threats the structural changes of the database. This also results in performance issues in SAP R/3 system. Also note that when you read the content of the mentioned table, it is required to know original source data structure.

Turnoff redirect to mobile pages in SAP Hybris

Srinivas Gorla
Updated on 16-Dec-2019 08:44:44

64 Views

To start with, first, you need to turn off the cookies on a mobile device. Next is to run the following command to the “project.properties” file of your storefront extension. Example# disabling the mobiles redirects:# uiexperience.level.supported.b2ctelco=DESKTOP uiexperience.level.supported=DESKTOPWhen this function is used, it communicates to SAP Hybris system that only DESKTOP based support is required.

Using SAP Gateway service in SAP Web project

Nikitha N
Updated on 18-Feb-2020 07:25:04

206 Views

Please executes the below steps to get the services added −Define service in your manifest.json file?"sap.app": {    [...],    "dataSources": {       "mainService": {           "uri": "Path of your service",           "type": "OData",          "settings": {             "odataVersion": "X.X",             "localUri":             "localService/metadata.xml"          }       } }, [...]The model definition should be implemented in your manifest.json file?"models": {    [...],    "": {       "dataSource": "mainService",       "settings": {          "metadataUrlParams": {             "sap-documentation": "heading"          },         "defaultBindingMode": "TwoWay"       }    } },

Changing program title in SAP

Priya Pallavi
Updated on 18-Feb-2020 07:26:15

588 Views

SET TITLEBAR function should be called from a module that is called from PBO of your screen.The title which you are providing should be active. This can be checked by loading your program in SE80 and check the program information in the tree to the right.

Advertisements