Monica Mona

Monica Mona

61 Articles Published

Articles by Monica Mona

61 articles

Declare dynamically in SAP ABAP

Monica Mona
Monica Mona
Updated on 13-Mar-2026 956 Views

In SAP ABAP, you can declare an internal table in a dynamic manner when the table type is not known at compile time. This approach is useful when working with generic programming or when the table structure depends on runtime conditions. Dynamic Internal Table Declaration To declare an internal table dynamically, you need to use data references and field symbols. Here's the basic syntax − DATA: tbl_TEST TYPE REF TO DATA. FIELD-SYMBOLS: TYPE STANDARD TABLE. CREATE DATA tbl_TEST TYPE (Received_Type). ASSIGN tbl_TEST->* TO . Complete Example Here's a complete working example that ...

Read More

Create an INCLUDE in SAP system

SAP
Monica Mona
Monica Mona
Updated on 13-Mar-2026 253 Views

Creating an INCLUDE in an SAP system is a straightforward process that can be accomplished through two main transaction codes. An INCLUDE is a modular programming object in SAP that contains reusable ABAP code segments. Method 1: Using Transaction SE38 The most common way to create an INCLUDE is through transaction SE38 (ABAP Editor). Follow these steps − Open transaction SE38 in your SAP system Enter the desired INCLUDE name in the program field Press the Create button Select Include Program as the program ...

Read More

Prevent XML re-formatting in WAS response in SAP Windows Activation Service

Monica Mona
Monica Mona
Updated on 13-Mar-2026 131 Views

No, there is no other possibility of preventing XML re-formatting in Windows Activation Service (WAS) response until you code everything on your own. It seems to be an issue during de-serialization. Most probably it is relevant to the parameters that you are sending in the response. The WAS response mechanism automatically formats XML content based on its internal serialization process. Understanding the Issue When SAP Windows Activation Service processes XML responses, it applies default formatting rules during the de-serialization process. This automatic formatting can alter your original XML structure, whitespace, and indentation. Troubleshooting Steps You ...

Read More

Fetching list of products from SAP: connecting SAP database from .net application

Monica Mona
Monica Mona
Updated on 13-Mar-2026 270 Views

When connecting a .NET application to an SAP database to fetch product lists, you may encounter connectivity issues. You can troubleshoot by trying a telnet connection to the SAP system. Open a command prompt on the system where you are running your .NET application and try to telnet to the server having the SAP system installed. Testing SAP Connectivity Use the following telnet command to test the connection − Telnet 127.0.0.1 3300 If you are using a local system, try using a hostname instead of the loopback IP address and make an entry ...

Read More

Fetch fields from table or structure in ABAP SAP

Monica Mona
Monica Mona
Updated on 13-Mar-2026 3K+ Views

If you need to identify the fields and number of fields in a structure, then you should use runtime type services. Using runtime type services makes more sense in this case as if we have some data in our environment, then it's not ideal to call database for fetching the same. Using Runtime Type Services Runtime type services provide a way to analyze the structure of data objects at runtime. Here's how to get field information from a structure − DATA(structure) = VALUE ( ...

Read More

How to set all the border top properties in one declaration with JavaScript?

Monica Mona
Monica Mona
Updated on 11-Mar-2026 307 Views

To set all the border top properties in a single declaration, use the borderTop property. With this property, you can set the border-top-width, border-top-style, and border-top-color property.ExampleYou can try to run the following code to learn how to work with border-top properties in JavaScript −                    #box {             border: thick solid gray;             width: 300px;             height: 200px          }                     Demo Text             Change top border                function display() {             document.getElementById("box").style.borderTop = "thick solid #000000";          }          

Read More

Set whether or not an element should be visible while not facing the screen with JavaScript?

Monica Mona
Monica Mona
Updated on 11-Mar-2026 247 Views

Use the JavaScript backfaceVisibility property to set whether or not an element should be visible while not facing the screen.ExampleYou can try to run the following code to learn how to implement a backfaceVisibility property in JavaScript −                    div {             width: 200px;             height: 300px;             background: blue;             color: black;             animation: mymove 2s infinite linear alternate;          }          @keyframes mymove {             to {transform: rotateY(180deg);}          }                     Check below to display backface                Demo             backfaceVisibility Property                function display(x) {             if (x.checked === true) {                document.getElementById("box").style.backfaceVisibility = "visible";             } else {                document.getElementById("box").style.backfaceVisibility = "hidden";             }          }          

Read More

How -Infinity is converted to Number in JavaScript?

Monica Mona
Monica Mona
Updated on 11-Mar-2026 268 Views

Use the Number() method in JavaScript to convert to Number. You can try to run the following code to learn how to convert -Infinity Number in JavaScript.Example           Convert -Infinity to Number                var myVal = -Infinity;          document.write("Number : " + Number(myVal));           OutputConvert -Infinity to Number Number : -Infinity

Read More

How to print data of specific element from an array in java?

Monica Mona
Monica Mona
Updated on 11-Mar-2026 15K+ Views

An array is a data structure/container/object that stores a fixed-size sequential collection of elements of the same type. The size/length of the array is determined at the time of creation. The position of the elements in the array is called as index or subscript. The first element of the array is stored at the index 0 and, the second element is at the index 1 and so on. Each element in an array is accessed using an expression which contains the name of the array followed by the index of the required element in square brackets. You can access an ...

Read More

Algorithms and Complexities

Monica Mona
Monica Mona
Updated on 01-Nov-2023 45K+ Views

AlgorithmAn algorithm is a finite set of instructions, those if followed, accomplishes a particular task. It is not language specific, we can use any language and symbols to represent instructions.The criteria of an algorithmInput: Zero or more inputs are externally supplied to the algorithm.Output: At least one output is produced by an algorithm.Definiteness: Each instruction is clear and unambiguous.Finiteness: In an algorithm, it will be terminated after a finite number of steps for all different cases.Effectiveness: Each instruction must be very basic, so the purpose of those instructions must be very clear to us.Analysis of algorithmsAlgorithm analysis is an important part ...

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