Ali has Published 41 Articles

What is the basic minimal structure of HTML document?

Ali

Ali

Updated on 07-Oct-2019 07:52:39

1K+ Views

HTML document is a web page, which helps you in showing content on the website. It consists of tags, which has an opening as well as closing tags. However, some tags do not come in pairs i.e. they do not have a closing tag. The basic minimal structure also has ... Read More

Short TEXT for all errors occurred in SAP system

Ali

Ali

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

95 Views

In SAP system, you have a table name “ SNAPT” which can be used to find the texts. To view table contents you can make use of T-Code SE16There is also a report in SAP system RSLISTDUMPS that displays the text of short dump. You can check and execute report ... Read More

SAP UI5 application throws an error while using Tree map

Ali

Ali

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

112 Views

Note that SAP UI5 1.14 version supports Tree map and older version like 1.12 doesn’t have Tree map. You can try using below link: http://jsbin.com/aku-test-treemap-exists/1/edit?html,outputIt returns the code of tree map constructor, try loading your own copy sap-ui-core-js of UI5.

Skipping mandatory fields in an ABAP screen

Ali

Ali

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

658 Views

You can make use of function code which is assigned to push button with “Exit” as function type and an event “AT SELECTION-SCREEN ON EXIT-COMMAND” to achieve this.A call is made to this event to validate the fields on the screen and you can implement all logic here.

Checking technical information associated with screen field in SAP without any documentation

Ali

Ali

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

356 Views

When you have report selection screen option, you can use Ctrl+S to enter the variant screen. Press Technical Name button to display technical name information for the respective field.In case you want more information related to parameter field, you can write an ABAP code to see the definition.Mostly, F1 key ... Read More

Authorization concept in SAP system and Profile

Ali

Ali

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

396 Views

SAP System Authorization Concept deals with protecting the SAP system from running transactions and programs from unauthorized access. You shouldn’t allow users to execute transactions and programs in SAP system until they have defined authorization for this activity.To make your system more secure and to implement strong authorization, you need ... Read More

Where do we maintain Print programs, routines and forms to be printed in Transaction QM02?

Ali

Ali

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

82 Views

You have the print program configured in IMG. Run T-code: SPRONext is to assign Shop Papers to “Notification Type” this is used to tell which Shop Paper 4-CHAR code you care about, define Shop Papers has the ABAP Form and Print Program.

Accessing an SAP endpoint in apex code

Ali

Ali

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

121 Views

I faced a similar issue earlier but it was because of a bug in JAVA security package (refer link for more details)http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7044060I just got updated myself to latest OpenJDK7 and it solved my issue. I think you can try the same and check if it helps. Read More

What is the difference between Java references and pointers in other languages?

Ali

Ali

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

217 Views

Reference datatypes in java are those which contains reference/address of dynamically created objects. These are not predefined like primitive data types. Following are the reference types in Java. class types − This reference type points to an object of a class. array types − This reference type points to ... Read More

What is the difference between character literals and string literals in Java?

Ali

Ali

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

629 Views

Character literals represents alphabets (both cases), numbers (0 to 9), special characters (@, ?, & etc.) and escape sequences like , \b etc. Whereas, the String literal represents objects of String class. Example Live Demo public class LiteralsExample { public static void main(String args[]){ ... Read More

Advertisements