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
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
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
As you need to make some changes to happen when an activity gets completed in SAP, I would suggest you to go for services. Services are the best way to communicate when you are dealing with two discrete systems.Firstly you need to create a program on SAP side which can ... Read More
I have gone through your code and it looks your list binding is incorrect. When you bind your data, your data should be in a JSON array format. Please find below the updated working code.Examplevar oModelData = [ {Animal: "Kangaroo", Zoo: "Sydney"}, {Animal: "Tiger", Zoo: "Melbourne"}, {Animal: ... Read More
You are making a basic mistake over here. A VORA virtual table does not support the traditional INSERT or UPDATE or DELETE statements. If you are planning to make any modification to data from VORA itself, then you need to use the APPEND command to add data or files to ... Read More
As you had already mentioned that extended services are natively integrated with HANA, so it’s going to be easier to use against HANA but as it is native to HANA only it can’t be used elsewhere. It will be faster when you compare it against ODBC because the extra step ... Read More
Yes, there exists an equivalent. You can go for using SAP HANA Smart Data Integration also known as SDI. It is a standard offering of SAP for data integration. You don’t require any additional infrastructure for this, like a separate server or other. There are lots of blogs and online ... Read More