Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Articles by Anvi Jain
Page 43 of 43
Difference between #include <filename> and #include "filename" in C/C++?
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 MoreHow Can we permanently define user-defined variable for a client in MySQL?
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 MoreHow to create a dialog with “yes” and “no” options in JavaScript?
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 MoreUsing SAP Web Service from SAP by PHP with parameters
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 MoreUsing SSIS 2014 with Visual Studio 2012 to integrate with SAP
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 MoreAutomating SAP Transactions/actions using SAP GUI
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 MoreError while connection SAP HANA with .NET
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