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
Articles by Giri Raju
Page 4 of 7
Role of margin property with value inherit using CSS
The CSS margin property with value inherit is used to inherit the margin value from the parent element. This allows child elements to automatically adopt their parent's margin settings, creating consistent spacing throughout the document hierarchy. Syntax selector { margin: inherit; /* or for specific sides */ margin-left: inherit; margin-right: inherit; margin-top: inherit; margin-bottom: inherit; } Example The following example demonstrates how a paragraph inherits the left margin from its ...
Read MoreShow the background image only once with CSS
Use the background-repeat property to display the background image only once. By default, background images repeat to fill the entire element, but you can control this behavior with the background-repeat property. Syntax selector { background-repeat: value; } Possible Values ValueDescription no-repeatBackground image displays only once repeatBackground image repeats both horizontally and vertically (default) repeat-xBackground image repeats only horizontally repeat-yBackground image repeats only vertically Example The following code shows how to display a background image only once using background-repeat: no-repeat − ...
Read MoreCSS3 Multi-Column column-rule Property
The CSS3 column-rule property is used to add a dividing line between columns in multi-column layouts. It acts as a shorthand for setting the width, style, and color of the rule that appears between columns. Syntax selector { column-rule: width style color; } The column-rule property is a shorthand for: column-rule-width − Sets the width of the rule column-rule-style − Sets the style of the rule (solid, dashed, dotted, etc.) column-rule-color − Sets the color of the rule Example: Basic Column Rule The following example creates ...
Read MoreRotate transform the element by using x-axis with CSS3
The CSS rotateX() transform function rotates an element around its X-axis in 3D space. This creates a perspective effect where the element appears to flip forward or backward. Syntax transform: rotateX(angle); Where angle can be specified in degrees (deg), radians (rad), or turns. Example: Basic X-Axis Rotation The following example demonstrates how to rotate an element 45 degrees around the X-axis − .container { perspective: 1000px; margin: ...
Read MoreRotate Out Down Right Animation Effect with CSS
The CSS rotate out down right animation effect rotates an element clockwise while fading it out, with the rotation anchored at the bottom-right corner. This creates a smooth exit animation where the element appears to spin away downward and to the right. Syntax @keyframes rotateOutDownRight { 0% { transform-origin: right bottom; transform: rotate(0deg); opacity: 1; } 100% { ...
Read MoreQuery returning no data in SAP Business One using Table Relationship
When queries return no data in SAP Business One, this is often caused by incorrect table relationships, particularly when using INNER JOIN statements. The issue typically occurs when one of the joined tables contains no matching records, causing the entire result set to be empty. Solution: Replace INNER JOIN with LEFT JOIN The most effective solution is to replace INNER JOIN with LEFT JOIN for optional relationships. This ensures that records from the main table are returned even when related tables have no matching data. Example Query Here's a corrected payment report query that handles missing ...
Read MoreFinding the table from which data is fetched in SAP
You can get the data if it is displayed in a transaction. Here are the steps you need to follow to find the table from which data is fetched in SAP. Method 1: Using F1 Help and Technical Information This is the most straightforward method to identify the source table for any field displayed in SAP − First, point the cursor on the field for which you want to get the data Press F1 for help. This will open a ...
Read MoreGenerate excel from a report in SAP system
When working with SAP reports, generating Excel files can be challenging, especially when the report runs in the background. The main issue is that background processes cannot determine where to save files locally on user machines. Understanding the Challenge If your report is running in the background, the system has no way of knowing where the file should be saved locally. This is a common limitation when dealing with background job processing in SAP systems. Recommended Approach Here's a practical solution assuming you have the necessary permissions and requirements − Step 1: Generate Excel File ...
Read MoreChange user settings for case sensitivity in SAP 6.0
SAP provides user-specific text settings that allow you to type in uppercase or lowercase according to your preference. To configure these case sensitivity settings, navigate to the ABAP Editor initial screen using T-Code: SE38. Accessing Case Sensitivity Settings To modify your case sensitivity preferences, follow these steps − 1. From the ABAP Editor screen, go to Utilities in the menu bar 2. Select Settings from the Utilities dropdown menu 3. ...
Read MoreReferences are not allowed in a SAP remote function call
When working with SAP remote function calls, you are trying to make use of references but you should be aware that references are only accessible within the same stack, and in your case, it is not. You are creating a remote function module and here references will not work. Why References Don't Work in Remote Function Calls In SAP ABAP, references point to memory locations within the current system's stack. When you make a remote function call (RFC), the function executes on a different system or server, which has ...
Read More