Varun has Published 83 Articles

Handline #Multivalue Error in SAP BO Webi report

varun

varun

Updated on 13-Jun-2020 14:35:13

2K+ Views

This error occurs when your formula returns more than one value and Webi report doesn’t know how to aggregate those values. This error occurs in below ways:#multivalue in aggregation #multivalue in breaks header or footer #multivalue in section level.Example:Let us say an account number which is associated to more than one order ... Read More

HTML 5 versus XHTML 1.0 Transitional

varun

varun

Updated on 04-Jun-2020 08:25:09

115 Views

HTML is expressed as SGML and XHTML is expressed in XML. Creating XHTML is connected with more restrictions in the form of markup.Avoid using the or tags in XHTML 1.0 Transitional, as those are not an element of that specification.Convert from HTML to XHTMLAdd an XHTML to ... Read More

Create a hidden paragraph in HTML5

varun

varun

Updated on 29-May-2020 22:34:51

1K+ Views

Use the hidden attribute in HTML5 to create a hidden paragraph in HTML5 i.e. an element no longer relevant.ExampleYou can try to run the following code to implement hidden attribute in HTML5 −           Heading       This is a demo paragraph and visible.       This is a demo paragraph and hidden.    

How to properly use h1 in HTML5?

varun

varun

Updated on 04-Mar-2020 05:06:02

204 Views

 h1 is a heading and not a title. Youcan gives own heading element to each sectioning element. h1 cannot be the title. It can be the heading of that particular section of the page. Each article can have its own title. defines the most important heading. The first ... Read More

Execute a script when the mouse wheel rolls up or down over an element in HTML?

varun

varun

Updated on 03-Mar-2020 07:41:06

76 Views

The onwheel attribute triggers when the mouse wheel rolls up or down over an element. You can try to run the following code to implement onwheel attribute −Example                    This is demo heading.             Click above ... Read More

Is java pass by reference or pass by value?

varun

varun

Updated on 24-Feb-2020 12:22:39

615 Views

Call by Value means calling a method with a parameter as value. Through this, the argument value is passed to the parameter.While Call by Reference means calling a method with a parameter as reference. Through this, the argument reference is passed to the parameter.In call by value, the modification done ... Read More

How to get rows and columns of 2D array in Java?

varun

varun

Updated on 24-Feb-2020 12:16:59

8K+ Views

Following example helps to determine the rows and columns of a two-dimensional array with the use of arrayname.length.ExampleFollowing example helps to determine the upper bound of a two dimensional array with the use of arrayname.length. public class Main {    public static void main(String args[]) {       String[][] data ... Read More

How to write, generate and use Javadoc in Eclipse?

varun

varun

Updated on 18-Feb-2020 10:57:46

10K+ Views

To generate Java docs for your project you need to write the required information about the field, method or class as./**    *    * The method prints a simple message on the Console.    * */Then to generate the document follow the steps given below −Step 1 − Open ... Read More

Why Java is not a pure object oriented programming language?

varun

varun

Updated on 18-Feb-2020 10:46:57

3K+ Views

A fully object-oriented language needs to have all the 4 oops concepts. In addition to that, all predefined and, user-defined types must be objects and, all the operations should be performed only by calling the methods of a class.Though java follows all the four object-oriented concepts, Java has predefined primitive ... Read More

Viewing an ABAP program outside customer space.

varun

varun

Updated on 13-Feb-2020 12:43:35

169 Views

The program is prefixed with “AQZZ”. This indicates that this is either created by the SAP query via transaction SQ01. You might not be able to look at the query but you can identify the Infoset on which the query relies. You can then enter the Infoset in SQ02 and ... Read More

Previous 1 ... 3 4 5 6 7 ... 9 Next
Advertisements