
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1039 Articles for SAP

454 Views
The possible solution could be to update policy tag like thisUpdate the policy tag like this:And try the serviceAnother possible option is to change /ws_policy/ to /standard/ and you will be able to use PHP Soap Client to consume Web Service.Go to Web Service Administration in your SAP ECC system using SOAMANAGER -> SOA-ManagementIn URL of the browser, you can see the “ws_policy” tag -> replace this with “standard” and you will have WSDL without policy tag.

216 Views
It is advisable to use functions to pass such filter conditions in CR. Also try changing the order of your condition like −({PR.cov} = "A" and {PR.cov}="B") or {PR.cov} = "A" Try using function like this: {@A}:if {PR.cov} = "A" then 1 else 0To create custom functions in Crystal Report, navigate to Report Menu → Formula Expert → Right Click on Custom Functions → NewIt is advisable to use custom functions when you have multiple parameters to pass in the condition. You can also use the following when you have two string parameters −( 'A' IN {?cov} OR {PR.cov} IN ... Read More

331 Views
If you ImgData includes an image in Data URI format base64 then add the below line to Imgvalue to convert it to ImgData:var imgData = JSON.stringify(ImgValue);I suggest you to use AJAX to post image through OData as shown in below code:OData.request ({ requestUri:"http://test.test1.net:8081/sap/opu/odata/sap/ SALES_VRS/DailySalesSet", method: "GET", headers: { -Requested-With": "XMLHttpRequest", "Content-Type": "application/atom+xml", "DataServiceVersion": "2.0", "X-CSRF-Token":"Fetch" } ... Read More

548 Views
Try to use “shellHash” property instead of “semanticObject” like below:-------------------------------------------------------- sap.ushell.Container.getService("CrossApplicationNavigation").toExternal({ target: { shellHash: "#" } }); --------------------------------------------------------

336 Views
To check if an element has a certain class name with jQuery, use the hasClass() method. You can try to run the following code to check if an element has a certain class name i.e. 'myclass' in the following example:ExampleLive Demo $(document).ready(function(){ $("button").click(function(){ alert($("h2").hasClass("myclass")); }); }); .myclass { color: blue; } Heading This is demo text. Check: The h2 element has 'myclass' class?

353 Views
Your INCLUDE should only contain definitions of constants nothing else and then the answer is straightforward.Select Goto → Class - whichever local definition and then add an INCLUDE statement. This will expose all the constants “INCLUDE” in your implementation.