SAP Expert has Published 132 Articles

Adding PUBLIC role to restricted user in SAP HANA

SAP Expert

SAP Expert

Updated on 21-Feb-2020 08:10:48

219 Views

It is not possible to add PUBLIC profile to a restricted user. When a restricted user is created, it doesn’t have PUBLIC profile.

Creating a Standard user in SAP HANA system using SQL

SAP Expert

SAP Expert

Updated on 21-Feb-2020 08:06:19

319 Views

This can be created using following SQL query −CREATE USER TEST_122 PASSWORD Pass123$$

Viewing information in M_PASSWORD_POLICY System View in SAP HANA

SAP Expert

SAP Expert

Updated on 21-Feb-2020 08:05:07

290 Views

M_PASSWORD_POLICY System View contains several lines of information about the current password policy.>Select * from M_PASSWORD_POLICY

How can I upload a Google doc from SAP

SAP Expert

SAP Expert

Updated on 17-Feb-2020 10:32:34

311 Views

This can be done by exporting SAP table as csv file and it can be automatically converted to Google Spreadsheet. Also there are various Google drive API’s that can be used to achieve this programmatically.With use of Google Drive REST API, you can download and upload files in Google drive. ... Read More

Adding a field to SAP RFC table using .NET Connector 3.0

SAP Expert

SAP Expert

Updated on 17-Feb-2020 10:30:55

439 Views

Note that it is not possible to append table’s column as fields are already defined. You can only enter a row to the table and populate fields to that row. Below code should work −IRfcTable ITEMDATATable = BapiIncomingInvoiceGetDetail.GetTable("ITEMDATA"); ITEMDATATable.Append(); ITEMDATATable.SetValue("SKU_ATM",myItemData.SKU_AMT);

Generating result of SAP transaction automatically

SAP Expert

SAP Expert

Updated on 17-Feb-2020 10:30:07

85 Views

There are different approaches that you can follow −First approach would be that you schedule a job and send the result to a mailbox instead of printing it. Then you can use any programming code to read that email and export in desired format.Other approach would be to check available ... Read More

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

SAP Expert

SAP Expert

Updated on 17-Feb-2020 10:18:46

58 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 ... Read More

Getting information in MS SharePoint workflow from SAP

SAP Expert

SAP Expert

Updated on 17-Feb-2020 10:17:12

77 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 ... Read More

Align items to center not working in SAPUI5

SAP Expert

SAP Expert

Updated on 17-Feb-2020 10:15:27

757 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 ... Read More

Consuming Web Service in C# application (SAP)

SAP Expert

SAP Expert

Updated on 12-Feb-2020 11:23:52

474 Views

This error occurs when remote server doesn’t provide a response to your request and connection is broken before request is complete. To fix this issue, first setup a request that includes QaaWsHeader and ReportBlock configuration, then create the Request and in last using ServicesSoapClient, you can make method to send ... Read More

Previous 1 ... 7 8 9 10 11 ... 14 Next
Advertisements