SAP Web Dynpro Articles

Found 8 articles

Calculate the value of (m)1/n in JavaScript

Aayush Mohan Sinha
Aayush Mohan Sinha
Updated on 15-Mar-2026 268 Views

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 More

How to set outline color with JavaScript?

Sai Subramanyam
Sai Subramanyam
Updated on 15-Mar-2026 577 Views

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 More

Geolocation HTML5 enableHighAccuracy True, False or What?

Ankith Reddy
Ankith Reddy
Updated on 15-Mar-2026 392 Views

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 More

Using HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 705 Views

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 More

Creating an Attribute view in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 18-Jun-2020 294 Views

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 More

Maximum Column name length in SAP HANA

SAP Expert
SAP Expert
Updated on 12-Mar-2020 1K+ Views

Maximum column name length supported in a table in SAP HANA is 127 chars.

Read More

Getting error while using schema in SAP HANA Modeling

John SAP
John SAP
Updated on 30-Jul-2019 350 Views

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 More

Seeing list of all program screens in SAP ABAP

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 965 Views

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
Showing 1–8 of 8 articles
« Prev 1 Next »
Advertisements