SAP Smart Forms Articles

Found 3 articles

Adding items to table using function in SAP

mkotla
mkotla
Updated on 13-Mar-2026 233 Views

When adding items to a table using functions in SAP, you need to use the correct method to retrieve structure metadata. The following shows how to properly implement this functionality. Replacing the Structure Metadata Method Instead of using the original statement, you need to replace the following code − IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure; You need to replace this with the corrected approach − IRfcTable table = function.GetTable("Z_ITEMS"); IRfcStructure articol = table.Metadata.LineType; Explanation The original method GetStructureMetadata() may not properly handle table structures in all SAP environments. The ...

Read More

Maintaining print program, routines, and forms in SAP in QM02

Sharon Christine
Sharon Christine
Updated on 12-Mar-2020 577 Views

You configure print program and output controls in IMG. Run T-Code: SPRO →Search for Output control or Print controlCheck Shop Papers for Notification types and mention Shop Papers has the ABAP Form and print Program as shown below -

Read More

Hiding specific data in HANA Modeling View

John SAP
John SAP
Updated on 12-Mar-2020 246 Views

Analytic Privileges are used to limit access to HANA Information views. You can assign different types of right to different users on a different component of a View in Analytic Privileges.When it is required that data in the same view should not be accessible to other users who do not have any relevant requirement for that data. This can be performed using Analytic Privileges in HANA.

Read More
Showing 1–3 of 3 articles
« Prev 1 Next »
Advertisements