Found 1044 Articles for SAP

Is it required a configuration in SAP SM59?

Swarali Sree
Updated on 15-Jun-2020 06:54:12

290 Views

If you are only calling a Remote Function Module in SAP system, you don’t require any configuration in SM59.Considering a scenario where your SAP system has to call a function in the C# application, then you need to configure RFC destination using SM59. You can Transaction for defining HTTP destinations- SM59.There are two types of HTTP connection:HTTP connection to an external server (connection type G)HTTP connection to an ABAP system (connection type H) Note that both the connection types differ from each other in terms of logon procedures. The technical settings are same for both connections.Read More

I have SAP UI5 application that I am not able to start after adding to SAP Fiori Launchpad.

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:20

168 Views

This problem can be fixed by adding a / before application URL like this/sap/bc/ui5_ui5/sap/zstest/Ztest- shows name of application

Use of SPATIAL function in SAP HANA

Lakshmi Srinivas
Updated on 17-Feb-2020 08:11:42

194 Views

In SAP HANA, geospatial data types are not defined as such and you need to use scalar values like a.ST_X().You can create a table like this −CREATE COLUMN TABLE MYSCHEMA.SpatialShapes_GEOMETRIES (    ShapeID integer,    SHAPE1 ST_Point,    SHAPE2 ST_GEOMETRY );SAP provides a complete guide to handle Geospatial data in applications. You can refer this link for more details:https://help.sap.com/doc/PRODUCTION/9db42d044f8e415180d4a4475873b50a/2.0.00/en-US/SAP_HANA_Spatial_Reference_en.pdf

I want to limit SAP user access to Transaction Code- SOST.

Samual Sam
Updated on 30-Jul-2019 22:30:20

575 Views

You can make use of T-code: SU24 and check objects related to SOST T-code. These are authorization objects for this Transaction - S_OC_DOC; S_OC_ROLE; S_OC_SEND; S_OC_SOSG; S_OC_TCD

Is it possible to exclude subclasses from the results displayed in backoffice in SAP?

karthikeya Boyini
Updated on 30-Jul-2019 22:30:20

64 Views

You can uncheck the option - Include subtypes in a search bar and this will only give you the results of the parent type.

Can we create multiple database in SAP HANA system?

Monica Mona
Updated on 17-Feb-2020 08:16:55

236 Views

In SAP HANA, you don’t have a concept of creating multiple databases in one container. To create a separate container for your database objects, you can create the schema in HANA db.To create a schema, you can use below SQL query −CREATE SCHEMA schema nameYou can also define as owner name while defining a schema.CREATE SCHEMA [OWNED BY ]If it is not defined, the system takes the current user as the owner of the schema.

Can anyone help me about integration of Hybris with SAP ERP?

Monica Mona
Updated on 26-Feb-2020 06:12:28

64 Views

Many companies have an on-premise solution that contains master data, customer and product information, and pricing data. Details from SAP ECC system is required when opportunities are won and the sales order is generated.Following are the key reasons why an integration is required with SAP ERP and CRM system −To provide an organization level solution for all sales, marketing and service activities including all subsidiaries, sales offices.Many companies prefer as SAP Cloud solution for customer user experience that helps sales representatives to provide outstanding customer experience and SAP CRM as back-end system to support key activities.An organization wants to extend ... Read More

Can we get same features in SAP ABAP as they are in VS?

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:20

62 Views

If you want to show all the occurrences of a variable in an ABAP program, you can use a shortcut- ctrl+shift+F3 or you can also make use of Yellow icon at the top.

Passing multiple parameters in SAP BO Webi report

Johar Ali
Updated on 26-Feb-2020 06:11:12

841 Views

An open document URL is constructed as follow −http://:/OpenDocument/opendoc/?&&...&With use of SAP Business Objects API, you can query each prompt- single value or multiple value. When you build URL, you may have to include parameter types.You can join parameters with the ampersand (&) and you shouldn’t use space with & ampersand. Example − sType=wid&sDocName=Sales2003https://URL_path/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&sType=wid&sRefresh=Y&iDocID=AUcrjvCCPOVHtSvXJV9Qs0k&lsMYBO_BU=B;B&lsSYBO_CALYEAR=201710&lsSYBO_CRNCY=USDIn this URL, you can see single value variable YBO_CALYEAR and value is passed in YYYYMM format&lsSYBO_CRNCY=USD, you can see single value variable and I am passing value “USD”When you run the report, you can define a report level variable or use report-level function to capture multiple ... Read More

How can I check the list of existing authority objects in SAP system?

Monica Mona
Updated on 30-Jul-2019 22:30:20

379 Views

To maintain authorization objects, you can use T-code: SU21 in SAP ECC system.You can all authorization objects including S_CARRID is located inside the different class like - BC_C object class.

Advertisements