Articles on Trending Technologies

Technical articles with clear explanations and examples

With use of SAP .NET Connector to perform an upgrade

Anil SAP Gupta
Anil SAP Gupta
Updated on 17-Feb-2020 422 Views

You have SAP Portal Development Kit PDK for .NET that can be used to connect SAP to Visual Studio 2003, 2005, 2008. SAP Portal Development Kit PDK for Microsoft.NET (PDK for .NET) is a set of tools that enables .NET developers to build portal content for SAP NetWeaver Portal. Using PDK for .NET allows organizations to leverage their existing investments in the Microsoft .NET technology and developer skills, as well as to take advantage of the SAP NetWeaver technology.SAP Portal Development Kit PDK for .NET package contains below components −PDK contains a Portal Add-in for Visual Studio VSIt also has ...

Read More

Demo version of SAP BW

Anil SAP Gupta
Anil SAP Gupta
Updated on 17-Feb-2020 543 Views

Note that SAP doesn’t provide demo version of BI tool. Only trial available is for SAP Basis and Java Stack and these doesn’t include any ERP modules. Without availability of any ERP module, it hardly makes sense to use SAP BW demo version as there won’t be any sensible scenario to be used in BI.I would suggest you to use IDES which comes with fully configured business scenarios and BW functionality for demo.To know more about SAP BI 7.0 IDES system, you can refer this SAP thread −SAP Thread

Read More

Count all sub-arrays having sum divisible by k

Ayush Gupta
Ayush Gupta
Updated on 17-Feb-2020 296 Views

In this tutorial, we will be discussing a program to find the number of sub-arrays having sum divisible by k.For this we will be provided with an array and a value k. Our task is to find the number of sub arrays that are having their sum as equal to the given value k.Example Live Demo#include using namespace std; //counting subarrays with k sum int count_subarray(int arr[], int n, int k){    int mod[k];    memset(mod, 0, sizeof(mod));    int cumSum = 0;    for (int i = 0; i < n; i++) {       cumSum += arr[i]; ...

Read More

How can I upload a Google doc from SAP

SAP
SAP Expert
SAP Expert
Updated on 17-Feb-2020 481 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. To know more about this, check out the below link −Google Link

Read More

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

SAP Expert
SAP Expert
Updated on 17-Feb-2020 674 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);

Read More

Generating result of SAP transaction automatically

SAP Expert
SAP Expert
Updated on 17-Feb-2020 171 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 BAPI’s. These BAPI’s can be called from an external program but for this you need to use SAP ABAP.Checkout this SAP blog that tells how to generate a report in background and send result to user email id −SAP blogYou can define distribution list in T-Code − SO23

Read More

Count all sorted rows in a matrix in C++

Ayush Gupta
Ayush Gupta
Updated on 17-Feb-2020 289 Views

In this tutorial, we will be discussing a program to find the number of all sorted rows in a matrix.For this we will be provided with m*n matrix. Our task is to count all the rows in the given matrix that are sorted either in ascending or descending order.Example Live Demo#include #define MAX 100 using namespace std; //counting sorted rows int count_srows(int mat[][MAX], int r, int c){    int result = 0;    for (int i=0; i

Read More

Count all the columns in a matrix which are sorted in descending in C++

Ayush Gupta
Ayush Gupta
Updated on 17-Feb-2020 213 Views

In this tutorial, we will be discussing a program to find the number of columns in a matrix which are sorted in descending.For this we will be provided with a matrix. Our task is to count the number of columns in the matrix having elements sorted in descending order.Example Live Demo#include #define MAX 100 using namespace std; //counting columns sorted in descending order int count_dcolumns(int mat[][MAX], int r, int c){    int result = 0;    for (int i=0; i0; j--)          if (mat[i][j-1] >= mat[i][j])             break;       if ...

Read More

Count all the numbers in a range with smallest factor as K in C++

Ayush Gupta
Ayush Gupta
Updated on 17-Feb-2020 208 Views

In this tutorial, we will be discussing a program to find the numbers in a range with the smallest factor as K.For this we will be provided with a range [a,b]. Our task is to count the numbers in the given range who have their smallest factor as K.Example Live Demo#include using namespace std; //checking if K is a prime bool if_prime(int k){    if (k

Read More

SAP doesn&rsquo;t accept extension tags generated from wsdl for Web Services

SAP Expert
SAP Expert
Updated on 17-Feb-2020 219 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
Showing 49591–49600 of 61,248 articles
Advertisements