Ali has Published 39 Articles

Retrieving Idoc XML data from SAP system over HTTPS

Ali

Ali

Updated on 04-Mar-2024 13:25:54

565 Views

You can read HTTP using file_get_contents("php://input")Try using this link-https://www.php.net/manual/en/reserved.variables.php

How to declare String Variables in JavaScript?

Ali

Ali

Updated on 14-Sep-2023 02:41:32

30K+ Views

JavaScript is an untyped language. This means that a JavaScript variable can hold a value of any data type. To declare variables in JavaScript, you need to use the var, let, or const keyword. Whether it is a string or a number, use the var, let, or const keyword for ... Read More

What are class variables, instance variables and local variables in Java?

Ali

Ali

Updated on 13-Sep-2023 15:19:58

43K+ Views

A variable provides us with named storage that our programs can manipulate. Java provides three types of variables. Class variables − Class variables also known as static variables are declared with the static keyword in a class, but outside a method, constructor or a block. There would only be ... Read More

How to filter an array in Java

Ali

Ali

Updated on 17-Jun-2020 11:30:58

6K+ Views

You can use List.removeAll() method to filter an array. exampleimport java.util.ArrayList; import java.util.List; public class Tester {    public static void main(String[] args) {       List list = new ArrayList();       list.add("A");       list.add("B");       list.add("C");       list.add("D");       ... Read More

How do I print a message to the error console using JavaScript?

Ali

Ali

Updated on 16-Jun-2020 13:52:32

293 Views

To print a message to the error console, use the console object. Here’s an example −The following will show a red error message −console.error(message);The following gives you the default message −console.log(message);The following gives you the warning message −console.warn(message);The following gives an information message −console.info(message);Add CSS to the log message −console.log('%c ... Read More

How do I print debug messages in the Google Chrome JavaScript Console?

Ali

Ali

Updated on 16-Jun-2020 13:35:05

314 Views

To print debug messages in the Google Chrome JavaScript Console, write a script, which is not creating console functions if they do not exist −if (!window.console) console = {}; console.log = console.log || function(){}; console.warn = console.warn || function(){}; console.error = console.error || function(){};Above you can see the following functions ... Read More

How to design a modern Website?

Ali

Ali

Updated on 15-Jun-2020 08:43:09

193 Views

Modern websites are responsive and the design works fine on multiple devices such as Desktop, Tablet, and Mobile. Also, websites these days do not follow the old font styles, many of them use Google fonts since it’s easy to find a font-face matching your website's content and Google provides a ... Read More

How to make a Website step by step?

Ali

Ali

Updated on 15-Jun-2020 08:33:11

802 Views

A website is a group of a web page, which has content, images, videos, header, etc. It is with a unique domain name and published on the web server.DomainA domain is what you type on the web browser to open a website. For example www.tutorialspoint.com, etc. The domain is uniquely ... Read More

Everything is stored in database in SAP system

Ali

Ali

Updated on 15-Jun-2020 06:51:36

1K+ Views

Note that it is easy to store data in form of SAP database tables as compared to files. You can also access files in SAP system but they are available on file system of SAP Application server and not easy to use with.With use of ABAP, you can easily raise ... Read More

What are Variable Naming Conventions in JavaScript

Ali

Ali

Updated on 13-Jun-2020 09:28:57

1K+ Views

While naming your variables in JavaScript, keep some rules in mind. The following are the variable naming conventions in JavaScript −You should not use any of the JavaScript reserved keywords as a variable name. These keywords are mentioned in the next section. For example, break or boolean variable names are not valid.JavaScript ... Read More

Advertisements