Ali has Published 32 Articles

Retrieving Idoc XML data from SAP system over HTTPS

Ali

Ali

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

636 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 filter an array in Java

Ali

Ali

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

7K+ 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

339 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

384 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

240 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

1K+ 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

What happens when you do not declare a variable in JavaScript?

Ali

Ali

Updated on 13-Jun-2020 09:23:31

282 Views

Yes, this can be done. When you have a global scope, you can use a variable without declaring it. The following “no var” variable “points” will look at the scope chain, wince var keyword isn’t use −                    var rank = ... Read More

How to declare numbers in JavaScript?

Ali

Ali

Updated on 13-Jun-2020 07:43:55

5K+ Views

JavaScript is 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 keyword. Whether it is a number or string, use the var keyword for declaration.Here’s how you can declare numbers in JavaScript −var ... Read More

Advertisements