SAP APO Articles

Found 7 articles

Using ABAP, changing a value in itab by getting data from database table

Sai Subramanyam
Sai Subramanyam
Updated on 13-Mar-2026 2K+ Views

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 More

Using table parameter in SAP RFC Function module

Sharon Christine
Sharon Christine
Updated on 13-Mar-2026 2K+ Views

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 More

Implementing tree structure in Sapui5 and restricting parent property

Nikitha N
Nikitha N
Updated on 13-Mar-2026 740 Views

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 More

Using HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 700 Views

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 More

Checking System limits in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 12-Mar-2020 626 Views

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 More

Maximum number of columns in a table in SAP HANA

SAP Developer
SAP Developer
Updated on 12-Mar-2020 1K+ Views

The maximum number of columns in a table is 1000.

Read More

Count distinct entries in SAP BusinessObjects

John SAP
John SAP
Updated on 06-Mar-2020 783 Views

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
Showing 1–7 of 7 articles
« Prev 1 Next »
Advertisements