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 on Trending Technologies
Technical articles with clear explanations and examples
Finding and modifying Service File for SAP system in root directory
You can find the SAP system service file in %SystemRoot%\system32\drivers\etc where %SystemRoot% is generally your C:\ drive. This file is commonly known as the hosts file or services file, which contains network service definitions and host mappings for SAP system connections. Modifying the Service File To modify this file, you can right-click and open this file in Edit mode using Notepad. To perform this operation, you must have Administrator rights in the system, as this file is protected by Windows security settings. ...
Read MoreUsing "SPELL AMOUNT" function to convert amounts in ABAP
You can use the standard function module SPELL_AMOUNT in ABAP to convert numeric amounts into their corresponding word representations. This is particularly useful for financial documents, checks, and reports where amounts need to be displayed in written form. To access and explore this function module, use Transaction code SE37 (Function Builder) − Click on the Search icon and select Function module SPELL_AMOUNT − Key Parameters The SPELL_AMOUNT function module accepts several important parameters − ...
Read MoreExplanation about SAP ABAP Stack and JAVA Stack and role of Java Stack during ECC upgrade
Note that all SAP ERP modules run on SAP ABAP stack. SAP NetWeaver Application Server (ABAP Stack) is part of the SAP NetWeaver portfolio and represents the ABAP-based technical basis for many SAP products. It delivers technical frameworks, tools, repositories, and much more. When to Install Java Stack If you are planning to use SAP PI module then you should install Java Stack. Whenever you need something like Adobe Interactive Forms or NetWeaver Portal functionality that requires the Java Stack, it becomes necessary. You can go for an upgrade ...
Read MoreUsing SAP BAPI API's to extract information from client system
BAPI is an abbreviation for Business Application Programming Interface. BAPI's are proprietary interfaces of SAP. These provide standard access to SAP solution with all the semantic checks already present. Using BAPI interfaces, we can perform both synchronous and asynchronous processing of data. What are BAPIs? BAPIs are standardized programming interfaces that allow external applications to access SAP business objects and processes. They act as a bridge between SAP systems and external applications, enabling secure and controlled data exchange. Key Features of BAPIs BAPIs offer several important characteristics − Standardized Interface: ...
Read MoreHow to load external website into an using jQuery?
To load an external website into an using jQuery, use the attr() method to dynamically set the src attribute of the iframe element. This approach allows you to change the iframe content programmatically after the page loads. Basic Implementation The attr() method in jQuery allows you to get or set any HTML attribute. For iframes, setting the src attribute will load the specified URL into the frame. Example You can try to run the following code to learn how to load an external website into an iframe − ...
Read MoreHow to change the background image using jQuery?
To change the background image using jQuery, use the jQuery css() method. The background-image CSS property is used to change background image. Syntax The basic syntax to change background image using jQuery is − $(selector).css("background-image", "url('path/to/image.jpg')"); Example You can try to run the following code to learn how to change background image using jQuery − body { height: ...
Read MoreHow to disable a particular jQuery event on a page?
To disable a particular jQuery event, use the jQuery off() method. The off() method removes event handlers that were attached with the on() method. This is particularly useful when you need to dynamically control event behavior based on user interactions or application state. Syntax The basic syntax for the off() method is − $(selector).off(event, selector, function) Where: event − Specifies the event type to remove (e.g., "click", "mouseover") selector − Optional. Specifies which event handler to remove for delegated events function ...
Read MoreEstimation of number of SAP programs and factor deciding it
There is no official table for estimating the number of SAP programs required, as the estimation depends on several critical factors. Understanding these factors helps project managers and developers create more accurate estimates for SAP development projects. Key Factors Affecting SAP Program Estimation The following factors significantly impact the estimation process − Programmer Experience − Experienced developers can implement complex functionality faster and with fewer iterations. Junior developers may require 2-3 times longer for the same task. Complexity of Code − Simple reports and forms require less time compared to ...
Read MoreDynamically creating parameters from table entries in SAP system
Note that parameter statement compiles into selection screen at compile time, so it is not possible to declare dynamic parameters as traditionally expected. The parameter definitions must be known at design time. An alternative approach is to load the dynpro (dynamic program) and change the screen dynamically at runtime. This involves modifying the screen elements programmatically, then activating and running the report that calls the changed screen. This same approach is used in T-code SE16 to generate a selection screen dynamically from any table structure. The system reads the table's field definitions and creates corresponding input fields on ...
Read MoreUsing GUI upload to attach a file to email in SAP
You have to use parameters correctly in the function. You have to import the file length to an integer value. Importing File Length First, call the gui_upload_file method from the cl_gui_frontend_services class to upload the file and capture its length − CALL METHOD cl_gui_frontend_services=>gui_upload_file EXPORTING window_title = 'Select File' default_extension = '*' file_filter = 'All Files (*.*)|*.*' IMPORTING file_table ...
Read More