Anvi Jain

Anvi Jain

427 Articles Published

Articles by Anvi Jain

Page 43 of 43

Difference between #include <filename> and #include "filename" in C/C++?

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 3K+ Views

The difference between the two forms is in the location where the preprocessor searches for the file to be included.#include The preprocessor searches in an implementation-dependent manner, it searches directories pre-designated by the compiler. This method is usually used to include standard library header files.#include "filename"The preprocessor searches in the same directory as the file containing the directive. If this fails, then it starts behaving like the #include form. This method is usually used to include your own header files.

Read More

How Can we permanently define user-defined variable for a client in MySQL?

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 343 Views

In MySQL, it is not possible that a client can hold user variable permanently. It is because all the variables for a given client connection are automatically freed when that client exits.

Read More

How to create a dialog with “yes” and “no” options in JavaScript?

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 3K+ Views

No, you cannot create a dialog box with “yes” or “no”. A confirmation dialog box in JavaScript has “Ok” and “Cancel” button.To create a dialog with “yes” or “nor”, use a custom dialog box.ExampleLive Demo                          function functionConfirm(msg, myYes, myNo) {             var confirmBox = $("#confirm");             confirmBox.find(".message").text(msg);             confirmBox.find(".yes, .no").unbind().click(function() {                confirmBox.hide();             });         ...

Read More

Using SAP Web Service from SAP by PHP with parameters

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 492 Views

Possible reason would be that SAP is case sensitive. Please try using HeadData instead of HEADDATA. Take a look at WSDL - all members inside “StandardMaterialSaveData” are option and SOAP is case sensitive so try using HeadData instead of HEADDATA

Read More

Using SSIS 2014 with Visual Studio 2012 to integrate with SAP

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 269 Views

You made a small mistake but a mistake having a big impact. SSIS 2014 does not support VS 2012 in your case. Just switch to VS 2013, your problem will be resolved.

Read More

Automating SAP Transactions/actions using SAP GUI

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 967 Views

You can use SAP GUI. It has built-in tool which can record and playback activity that can be utilized for automation and automated jobs. In case, the values or inputs are not changing then you can use the same script on each occasion.It lies within the main menu of the GUI window, within Customize layout -> Script recording and playback.

Read More

Error while connection SAP HANA with .NET

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 241 Views

You would require installing both the 32 bit and 64 bit SAP HANA client software as Microsoft Visual operates on a 32 bit application.

Read More
Showing 421–427 of 427 articles
« Prev 1 39 40 41 42 43 Next »
Advertisements