SAP Articles

Page 36 of 91

SAP doesn’t accept extension tags generated from wsdl for Web Services

SAP Expert
SAP Expert
Updated on 17-Feb-2020 218 Views

Note that when you map XML schema to C#, it is recommended to map this to class inheritance. As per my understanding, you want to copy extended properties to generated classes however I don’t think you can find any tool to achieve this.I think this should be handled by transforming XML schema to a structure that you want and then use the schema to C# tool. One of the most common way to perform this is via XSLT.XSL (eXtensible Stylesheet Language) is a styling language for XML and it stands for XSL Transformations. XSLT provides the ability to transform XML ...

Read More

Getting information in MS SharePoint workflow from SAP

SAP Expert
SAP Expert
Updated on 17-Feb-2020 183 Views

There are many tools which offer this function for SharePoint. Try using BCS Business Connectivity Service and LINQ to get data from SAP to SharePoint list and then use that data in workflow.To write your own custom workflow, you can check this link:Custom Activity Workflow for implementing Item Level Security in SharePoint Designer 2007Workflow LinkTo create a Visual Studio 2008 Workflow Activity Library project, you need to follow below steps:First is to open Visual Studio 2008.Navigate to File menu, point to New, and then click Project.Next step is to navigate under the Workflow Project Type and select the Workflow Activity ...

Read More

Align items to center not working in SAPUI5

SAP Expert
SAP Expert
Updated on 17-Feb-2020 1K+ Views

If you want a quick solution then you can use basic CSS properties like padding for left or right to align the content. Use relative percentages so that it works in both the views.Other way which looks ideal is that define a custom CSS. Then you need to add this custom CSS to manifest."resources": {     "css": [         {             "uri": "css/style.css"         }     ] }Set the concerned property like Margin: 0 auto; which will help you to set the contents to center.

Read More

Automating SAP Purchase Request via Eclipse with use of QTP10

SAP ABAP Expert
SAP ABAP Expert
Updated on 17-Feb-2020 203 Views

Note that Eclipse UI is JAVA based so you can automate Eclipse using QTP Java add-ins.To perform QTP Java add-in, Go to Control Panel → Add or Remove Programs and select Quickest Professional from the list. Click on Change button.To perform add-in installation, click on small black down arrow next to the cross button for Java Add-in. Clicking on it would show a small menu with 3 options as shown in the below image.

Read More

Triggering outbound shipment IDoc on change data in SAP

SAP ABAP Expert
SAP ABAP Expert
Updated on 17-Feb-2020 2K+ Views

You need to ensure that Output Type has got "Multiple issuing" checkbox ticked in T-code: V/82. This is available in “General data" section of your message type.It seems to be a configuration issue. You should try checking this:Go to SPRO → Logistic execution → Transportation → Basic Transportation Functions → Output control → Maintain Output determination for shipments → Maintain Output Determination procedure.You can refer this SAP Thread for more details:SAP ThreadRefreshing list viewer data selectively in SAP ABAP

Read More

Can we create multiple database in SAP HANA system?

Monica Mona
Monica Mona
Updated on 17-Feb-2020 463 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.

Read More

Use of SPATIAL function in SAP HANA

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 17-Feb-2020 308 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

Read More

How to check modules, functions, and tables in SAP ERP system.

Samual Sam
Samual Sam
Updated on 17-Feb-2020 1K+ Views

For searching within RFC modules, you can use the transaction BAPI (Business Application Programming Interface) for searching modules. The advantage of this approach is that they are completely documented and available on SAP website with sample usage examples. Also, SAP provides support for the same and in case you are stuck somewhere, SAP support will be a good hand for guidance.Also, you can use transaction SE80, SE84 to query for modules, programs. Search using this supports the search for names, id, and descriptions.You can also use RS_ABAP_SOURCE_SCAN for searching across ABAP programs. It works fine with sub-system search but for ...

Read More

How to Find out the source code of a transaction in SAP?

SAP
Lakshmi Srinivas
Lakshmi Srinivas
Updated on 17-Feb-2020 4K+ Views

First, go to System → Status to find the program name. Now use the transaction SE38 or SE80 to view the source code.Alternatively, you can activate the debugging mode before running your transaction by keying in /h.

Read More

What is the use of Custom Extractor in SAP R/3 system?

Monica Mona
Monica Mona
Updated on 17-Feb-2020 428 Views

In order to extract data from tables, you need to follow steps:Create a View of the required table from where the data needs to be extracted or view over multiple joined tablesNavigate to Transaction SE11 and Select option 'View'. It will ask for a name, name it something like 'View_TableName'.Select which all the fields of the tables needs to be extracted and click on activateGo to Transaction RS02 and create a transaction extractor and name it something like 'Trans_TableName'Specify the position of the created extractor in the component hierarchy.If you want to provide descriptions, add it. Specify the view name ...

Read More
Showing 351–360 of 902 articles
« Prev 1 34 35 36 37 38 91 Next »
Advertisements