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
SAP Articles
Page 7 of 91
Creating User roles and profiles in SAP system
This can be done using Legacy Systems Migration Workbench (LSMW) transaction. This workbench works like a sort of macro recorder and allows you to record the steps in a transaction and you can replay that record multiple times as per the requirement. This also allows you to replace the values you used in your recorded transaction with new values. A more complex option would be to write ABAP code and this is more flexible to add different privileges to different roles. Methods for Creating User Roles and Profiles Method 1: Using LSMW (Legacy Systems Migration Workbench) ...
Read MoreLimit number of rows in Webi report in SAP BusinessObjects
When working with SAP BusinessObjects Web Intelligence (WebI) reports, you may need to limit the number of rows returned to improve performance and manage data volume effectively. There are several methods to control row limits depending on your data source and requirements. Universe-Level Row Limits If you are using a Universe as the data source, you can define row limits at the Universe level using the Universe Design Tool (UDT). Navigate to Universe Parameters → Controls to set the maximum size of the result set. This approach provides centralized ...
Read MoreAggregating rows in SAP ABAP with the same name
You can use the COLLECT keyword or some aggregate functions to achieve the result of aggregating rows with the same name in SAP ABAP. You should define appropriate data types to match your specific scenario. The COLLECT statement is particularly useful for accumulating numeric values while grouping rows by key fields. It automatically sums up non-key fields for records that have identical key field values. Example Here's a complete example showing how to aggregate rows using the COLLECT statement − TYPES: BEGIN OF t_my_type, key_a TYPE ...
Read MoreFinding 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 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