Rishi Rathor has Published 142 Articles

Any way of using frames in HTML5?

Rishi Rathor

Rishi Rathor

Updated on 27-Jan-2020 06:13:43

223 Views

The frameset attribute deprecated in HTML, but you can still use it. The top-level parent doc now usesExampleXHTML and the frame uses HTML5.                            

What are runtime errors in JavaScript?

Rishi Rathor

Rishi Rathor

Updated on 16-Jan-2020 09:06:21

269 Views

There are three types of errors in programming: (a) Syntax Errors, (b) Runtime Errors, and (c) Logical Errors. Runtime errors, also called exceptions, occur during execution (after compilation/interpretation). For example, the following line causes a runtime error because here the syntax is correct, but at runtime, it is trying to ... Read More

How to list down all the cookies by name using JavaScript?

Rishi Rathor

Rishi Rathor

Updated on 09-Jan-2020 10:32:39

268 Views

To lists down all the cookies by name, use the cookies pairs in an array. After that, you need to get the key value pair out of this array.ExampleYou can try to run the following code to list all the cookiesLive Demo               ... Read More

How to provide new line in JavaScript alert box?

Rishi Rathor

Rishi Rathor

Updated on 08-Jan-2020 10:38:08

726 Views

To add a new line in JavaScript alert box, use the “”:alert("Line One Line Two");ExampleYou can try to run the following code add a new line in an alert box in JavaScript:Live Demo                                         Click the following button to see the result:                          

Communicating with SAP system using PHP

Rishi Rathor

Rishi Rathor

Updated on 18-Dec-2019 08:44:34

973 Views

You can communicated with any SAP system from PHP in many ways, but the preferred standard available choices areRFC (remote function call)Web ServicesPHP has got one RFC library to communicate with SAP. But the main job in your problem statement lies with your partner as they are the one dealing ... Read More

“Where” clause not working while updating database record in ABAP

Rishi Rathor

Rishi Rathor

Updated on 18-Dec-2019 07:55:51

461 Views

I think there is a syntax problem in your code. The colon in the first statement adds multiple following statements and hence updating all records in the first statement.Remove the colon in the first line and comma between SET specifiers.ExampleTry using the following statement after update:UPDATE zemployee_jat    SET prijs ... Read More

Getting class of given method using T-code SE80 in SAP

Rishi Rathor

Rishi Rathor

Updated on 09-Dec-2019 06:34:59

3K+ Views

You would require calling transaction SE80 and then looking into Repository info system. Under that go to the class library and then to methods. You can specify selection criteria under standard selections.

MySQL alias for SELECT * columns?

Rishi Rathor

Rishi Rathor

Updated on 30-Jul-2019 22:30:24

375 Views

MySQL alias cannot be used with *. However, it can be used for individual column. The syntax is as follows −select anyaliasName.yourColumnName1 as anyaliasName1, anyaliasName.yourColumnName2 as anyaliasName2, anyaliasName.yourColumnName3 as anyaliasName3, anyaliasName.yourColumnName4 as anyaliasName4, . . . . N from yourTableName as anyaliasName;MySQL alias is a variable of table that can ... Read More

Equaivalent of Oracle concatenation operator in MySQL?

Rishi Rathor

Rishi Rathor

Updated on 30-Jul-2019 22:30:24

126 Views

The concat operator can be used in ORACLE. MySQL use concat() function to perform concatenation.To understand the concat() function, let us create a table. The query to create a table is as follows −mysql> create table ConcatenationDemo −> ( −> Id int, ... Read More

8085 Executing the program and checking result

Rishi Rathor

Rishi Rathor

Updated on 30-Jul-2019 22:30:24

7K+ Views

In this section we will see how to use 8085 to write a program in 8085 kit. We will also see how to debug the program and check the result after successful execution. Let us see a typical keypad structure of 8085 kit. (This keyboard pattern may vary indifferent kits of ... Read More

Previous 1 ... 7 8 9 10 11 ... 15 Next
Advertisements