mkotla

mkotla

77 Articles Published

Articles by mkotla

Page 5 of 8

Set the border image as rounded, repeated and stretched with CSS

mkotla
mkotla
Updated on 15-Mar-2026 315 Views

The border-image-repeat property is used to set how the border image is repeated, stretched, or rounded along the border edges. This property controls the behavior of the border image segments between the corners. Syntax selector { border-image-repeat: value; } Possible Values ValueDescription stretchThe border image is stretched to fill the area (default) repeatThe border image is repeated to fill the area roundThe border image is repeated and scaled to fit the area perfectly spaceThe border image is repeated with spacing to fill the area Example 1: Round ...

Read More

Apply style to the parent if it has a child with CSS and HTML

mkotla
mkotla
Updated on 15-Mar-2026 733 Views

Currently, CSS does not have a true parent selector that allows you to style a parent element based on its children. However, there are several modern approaches to achieve similar functionality using CSS and JavaScript. Syntax /* Future CSS4 proposal (not yet supported) */ parent $child { /* styles for parent */ } /* CSS :has() pseudo-class (modern browsers) */ parent:has(child) { /* styles for parent */ } Method 1: Using CSS :has() Pseudo-class Modern browsers now support the :has() pseudo-class which allows styling a ...

Read More

How to write PHP script by using MySQL JOINS inside it to join two MySQL tables?

mkotla
mkotla
Updated on 15-Mar-2026 5K+ Views

MySQL JOINs allow you to combine data from multiple tables based on related columns. In PHP, you can execute JOIN queries using database connection functions and process the results to display combined information from different tables. Sample Database Tables Let's work with two sample tables to demonstrate the JOIN operation ? mysql> SELECT * FROM tcount_tbl; +-----------------+----------------+ | tutorial_author | tutorial_count | +-----------------+----------------+ | mahran | 20 | | mahnaz ...

Read More

Getting data in SAPUI5 application from backend tables in NetWeaver

mkotla
mkotla
Updated on 13-Mar-2026 446 Views

Note: Eclipse is just a standard editor to develop UI5 applications. You should use SAP Web IDE which is one of the recommended editors now for SAPUI5 development. When your backend system is a NetWeaver system, Gateway and OData services would be the recommended way to retrieve data from backend tables. Overview of Data Retrieval Architecture In SAPUI5 applications connected to NetWeaver backend systems, the data flow follows this pattern − SAPUI5 App OData Service ...

Read More

Moving TABKEY from CDPOS table into field structure in ABAP

mkotla
mkotla
Updated on 13-Mar-2026 660 Views

When working with change documents in ABAP, you may need to move the TABKEY from the CDPOS table into a field structure. I would suggest you make use of Function Module CHANGEDOCU_KEY_ANY2CHAR and other function modules of function group SCD8. This function module performs the reverse function of converting change document keys. Using CHANGEDOCU_KEY_ANY2CHAR Function Module The primary function module for this task has the following details − Function Module: CHANGEDOCU_KEY_ANY2CHAR Function Group: SCD8 ...

Read More

Adding items to table using function in SAP

mkotla
mkotla
Updated on 13-Mar-2026 243 Views

When adding items to a table using functions in SAP, you need to use the correct method to retrieve structure metadata. The following shows how to properly implement this functionality. Replacing the Structure Metadata Method Instead of using the original statement, you need to replace the following code − IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure; You need to replace this with the corrected approach − IRfcTable table = function.GetTable("Z_ITEMS"); IRfcStructure articol = table.Metadata.LineType; Explanation The original method GetStructureMetadata() may not properly handle table structures in all SAP environments. The ...

Read More

Benefits of Transaction SE83- SAP reuse library

mkotla
mkotla
Updated on 13-Mar-2026 633 Views

The Reuse Library is basically a repository for various functions and classes that can be used across SAP development projects. One of the main benefits is that it contains a number of source code examples for these functions. These examples are quite useful as they can be used as base code, so you don't have to start development from scratch. The library serves as a centralized location where developers can find pre-built, tested components that follow SAP best practices. While it may not be primarily used for documentation ...

Read More

Fetch unique records from table in SAP ABAP

mkotla
mkotla
Updated on 13-Mar-2026 1K+ Views

When working with ABAP and SQL, you typically use OpenSQL for your SQL activities. To fetch unique records from a table, you can eliminate duplicate rows using the DISTINCT operator. Using DISTINCT Operator The DISTINCT keyword ensures that only unique records are returned from your query. This is particularly useful when you have duplicate entries in your table and need to retrieve only distinct values − SELECT DISTINCT field1, field2 FROM table_name WHERE condition. Example Here's a practical example ...

Read More

Adapter properties dropdown not updated with list even after installation (SAP 7.2 adapter)

mkotla
mkotla
Updated on 13-Mar-2026 190 Views

When working with SAP 7.2 adapters in BizTalk Server, you may encounter an issue where the adapter properties dropdown remains empty even after successful installation. This is a common problem that occurs when specific assembly files are not properly deployed to the BizTalk group. Root Cause The issue typically occurs because the BizTalkPropertySchema assembly, which is responsible for Microsoft adapter properties, is not deployed correctly during the installation process. This assembly contains the property schema definitions that populate the dropdown options in the adapter configuration. Solution Steps To resolve this issue, follow these manual deployment steps ...

Read More

Make a custom function call without using SAP NetWeaver

mkotla
mkotla
Updated on 13-Mar-2026 189 Views

There are several ways you can make custom function calls without using SAP NetWeaver when working with RFC (Remote Function Call) in SAPUI5. Here are the most effective approaches − Web Service or REST Service Approach You can create a web service or REST service that utilizes the RFC you have created. Host this service in the SAP environment and then consume it in SAP UI5 using the service URL. This approach provides a clean separation between your UI5 application and the backend RFC functionality. // Example of consuming REST service in UI5 var oModel = ...

Read More
Showing 41–50 of 77 articles
« Prev 1 3 4 5 6 7 8 Next »
Advertisements