Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
SAP Web Dynpro Articles
Found 8 articles
Calculate the value of (m)1/n in JavaScript
In JavaScript, calculating the nth root of a number (m^(1/n)) is a common mathematical operation used in various applications. The nth root is the inverse of exponentiation - for example, the cube root of 27 is 3 because 3³ = 27. Understanding the nth Root The nth root of a number m is written as m^(1/n), where: m is the base number n is the root degree The result is the number that, when raised to the power n, equals m Syntax Math.pow(base, exponent) // For nth root: Math.pow(m, 1/n) Using ...
Read MoreHow to set outline color with JavaScript?
To set outline color in JavaScript, use the outlineColor property. The outline appears outside an element's border and doesn't affect the element's dimensions or layout. Syntax element.style.outlineColor = "color"; Parameters The outlineColor property accepts any valid CSS color value: Color names: "red", "blue", "green" Hex values: "#FF5733", "#000000" RGB values: "rgb(255, 87, 51)" HSL values: "hsl(9, 100%, 60%)" Example: Setting Outline Color #box { ...
Read MoreGeolocation HTML5 enableHighAccuracy True, False or What?
The enableHighAccuracy property in HTML5 Geolocation API controls whether the device should use high-precision GPS or faster network-based location services. Syntax navigator.geolocation.getCurrentPosition( successCallback, errorCallback, { enableHighAccuracy: true, // or false timeout: 10000, maximumAge: 0 } ); enableHighAccuracy: true When set to true, requests the most accurate position possible, typically using GPS: ...
Read MoreUsing HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer
The GetCellData function in HP UFT is used to retrieve data from specific cells in SAP Web Dynpro tables. When working with Internet Explorer, this function may sometimes cause crashes due to memory handling issues or browser compatibility problems. Understanding GetCellData Function Note that column number is used to locate table cell data and column name is unique identifier. The GetCellData method takes two arguments as long integers representing row and column numbers to locate cell data. The syntax for GetCellData is − object.GetCellData(row, column) Where row and column are zero-based or one-based ...
Read MoreCreating an Attribute view in SAP HANA
To create a new Attribute view, select the Package name under which you want to create an Attribute View. Right Click on Package → Go to New → Attribute ViewClick on Attribute View, and this will open a new Window. You need to pass Attribute View name and description. From the drop-down list, choose View Type and subtype. In subtype, there are three types of Attribute views − Standard, Time, and Derived.Once you finish the wizard, you can see view is created under the specified package.
Read MoreMaximum Column name length in SAP HANA
Maximum column name length supported in a table in SAP HANA is 127 chars.
Read MoreGetting error while using schema in SAP HANA Modeling
When you use object of a schema to build HANA modeling views then it’s necessary to grant _SYS_REPO the SELECT WITH GRANT privilege on this schema. You need to execute the following:GRANT SELECT ON SCHEMA "" TO _SYS_REPO WITH GRANT OPTIONTo use tables from one Schema to create views we should provide access on the Schema to the default user who runs all the Views in HANA Modeling._SYS_REPO user is responsible for activating models and creating the required runtime objects from them. This is the reason you need to provide user _SYS_REPO to select objects in tables and views in ...
Read MoreSeeing list of all program screens in SAP ABAP
If you want to check all Dynpros belongs to one program, you can use table D020S. D020S is known as SAP Table to store screen sources information. This is available within R/3 SAP systems depending on the version and release level. To display or maintain this table, use T-code SM30 You can use T-code SE11 to view the fields in table D020S: It is text table D020T with the key program = sy-repid
Read More