Articles on Trending Technologies

Technical articles with clear explanations and examples

\\nLoad and unload a table in SAP HANA using SQL query

SAP Developer
SAP Developer
Updated on 13-Mar-2026 2K+ Views

In SAP HANA, it is possible to manually load and unload individual tables and table columns for memory management purposes. You can perform loading of table to precisely measure the total or "worst case" amount of memory used by a particular table. A table is unloaded from database to actively free up memory space. Basic Load and Unload Syntax You can use the following SQL queries to perform load/unload operations on tables − LOAD UNLOAD Loading a Table To load a specific ...

Read More

\\nAnalyzing code coverage results in SAP Design Studio on top of HANA\\n

John SAP
John SAP
Updated on 13-Mar-2026 132 Views

To analyze code coverage results in SAP Design Studio on top of HANA, you first need to establish a connection to your SAP HANA system and then visualize the data through Design Studio's reporting capabilities. Setting Up ODBC Connection To consume HANA views, you need to start by creating an ODBC connection to SAP HANA system through odbcad32.exe. This creates the necessary data source connection that Design Studio will use to access your HANA database. Connecting Design Studio to HANA The next step is to open SAP Design ...

Read More

\\nHow to pass dynamic values on the fly to CDS in SAP ABAP\\n

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 1K+ Views

While CDS (Core Data Services) views in SAP ABAP don't directly support passing dynamic values at runtime, there are several workarounds to achieve similar functionality depending on your specific use case. Limitations of Dynamic Values in CDS CDS views are compiled artifacts that cannot accept dynamic parameters like traditional ABAP methods. However, you can work around this limitation using the following approaches − Method 1: Using DCL (Data Control Language) with Authority Objects For authorization-based filtering, you need to declare and define the authority object in your DCL. This allows the system to automatically filter data ...

Read More

\\nCan I integrate the SAP Learning Solution with a LMS platform?\\n

SAP
SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 158 Views

The integration between SAP Learning Solution and Learning Management System (LMS) platforms depends on compatibility standards and supported protocols. Let's examine the current compatibility status and available options. IMS Global Learning Consortium Support The list of supported products can be viewed on the IMS Global website. IMS has listed a set of compatible platforms in their directory. Currently, SAP is not present in that list, which indicates that IMS does not officially support SAP Learning Solution integration through their standards. You can check the following link to verify current compatibility status, in case SAP is included in ...

Read More

How to check if onClick exists on element in jQuery?

ARPIT ANAND
ARPIT ANAND
Updated on 13-Mar-2026 854 Views

In jQuery, you can check if an onClick event handler exists on an element by accessing the events data stored internally by jQuery. This is useful when you need to verify if event listeners are attached before adding or removing them. Checking for Click Events Using $.data() The most reliable way to check for existing click events is to use jQuery's $.data() method to access the events object. Here's how you can do it − Check onClick Events ...

Read More

How do I remove a property from a JavaScript object?

V Jyothi
V Jyothi
Updated on 13-Mar-2026 223 Views

To remove a property from a JavaScript object, use the delete keyword. The delete operator removes a property from an object and returns true if the deletion was successful. Using the delete Operator The delete operator is the most common way to remove properties from JavaScript objects. Here's the basic syntax − delete objectName.propertyName; // or delete objectName['propertyName']; Example You can try to run the following code to learn how to remove a property − var cricketer = { name: "Amit", rank: 1, ...

Read More

How to check if event exists on element in jQuery?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 5K+ Views

To check if event exists on element in jQuery, you need to examine the existing events bound to that element. jQuery provides methods to access the event data stored internally for DOM elements. Here, I have set a div element − This is demo text. Click here! When you click the div, an alert is generated. To check if events exist on this element, we use $._data() method to access the internal event data and verify if any events are bound to the element. $("#demo").click(function() { alert("Does ...

Read More

How to enable and disable submit button using jQuery?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 1K+ Views

To enable and disable submit button, use the jQuery prop() method. The prop() method gets or sets properties and values of the selected elements. When used with the disabled property, it can control whether a button is clickable or not. Syntax Here's the basic syntax for enabling and disabling buttons − // To disable a button $(selector).prop('disabled', true); // To enable a button $(selector).prop('disabled', false); Example You can try to run the following code to enable and disable submit button using jQuery − ...

Read More

Can I submit form with multiple submit buttons using jQuery?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 3K+ Views

Yes, you can submit forms with multiple submit buttons using jQuery. Attach a custom click handler to all the buttons and then check which button is clicked. When working with multiple submit buttons, you need to prevent the default form submission behavior and implement custom logic to determine which button was pressed. This allows you to perform different actions based on the specific button clicked. Example The following example demonstrates how to handle multiple submit buttons using jQuery − ...

Read More

How to create div dynamically using jQuery?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 2K+ Views

To create a div dynamically using jQuery, you can use several methods such as html(), append(), or create elements with the $() constructor. The html() method replaces the existing content, while append() adds new content to existing elements. Example 1: Using html() Method The following example shows how to create a div dynamically using the html() method on button click − $(document).ready(function(){ $("button").click(function(){ ...

Read More
Showing 1–10 of 61,259 articles
« Prev 1 2 3 4 5 6126 Next »
Advertisements