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
SAP APO Articles
Found 7 articles
Using ABAP, changing a value in itab by getting data from database table
You should do this using a MODIFY statement as shown below − LOOP AT itab. SELECT SINGLE matnr INTO itab-matnr FROM zlldet WHERE palet = itab-palet. MODIFY itab. ENDLOOP. Also note that when you have an internal table itab with a header line, it means that you have a table itab and structure itab and usage of this depends on the situation. Few of the commands like MODIFY and LOOP AT use both at the same time. Modern Approach Without Header Line ...
Read MoreUsing table parameter in SAP RFC Function module
When working with RFC enabled function modules in SAP, you should use a structure as line type for the table parameter. This approach ensures proper data handling and type safety when transferring tabular data between systems. Creating the Dictionary Structure First, you should declare a dictionary structure Z_MY_PARTS_DATA with a single field DESCRIPTION TYPE CGPL_TEXT2. This structure defines the layout of each row in your table parameter. TYPES: BEGIN OF z_my_parts_data, description TYPE cgpl_text2, ...
Read MoreImplementing tree structure in Sapui5 and restricting parent property
Note that sap.ui.model.ClientTreeBinding which is used by TreeTable in JSONModel or XMLModel supports the parameter arrayNames. You need to pass an array of the model property names to create a sublevel. This parameter tells the TreeTable which properties in your data contain child nodes, enabling the hierarchical tree structure. Implementation Methods XML View Implementation In XML view, you can bind the TreeTable rows using the following approach − JavaScript Controller Implementation ...
Read MoreUsing HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer
The GetCellData function in HP UFT is used to retrieve data from specific cells in SAP Web Dynpro tables. When working with Internet Explorer, this function may sometimes cause crashes due to memory handling issues or browser compatibility problems. Understanding GetCellData Function Note that column number is used to locate table cell data and column name is unique identifier. The GetCellData method takes two arguments as long integers representing row and column numbers to locate cell data. The syntax for GetCellData is − object.GetCellData(row, column) Where row and column are zero-based or one-based ...
Read MoreChecking System limits in SAP HANA
M_SYSTEM_LIMITS is a view to getting SAP HANA system limits. You can query this view to find the limitations of HANA system −SELECT * FROM M_SYSTEM_LIMITS;It will provide you details about Database Limitation Schema Limitations Tables and View Limitation Indexes and Constraints SQL SQL Script
Read MoreMaximum number of columns in a table in SAP HANA
The maximum number of columns in a table is 1000.
Read MoreCount distinct entries in SAP BusinessObjects
Your requirement is not clear but I think you should use AND operator and count on this in the third column. Your formula should be like this=([First_Seen] = 1) and ([Authorized] = 1)Consuming Graphical calculation view via SDA
Read More