SAP Articles

Page 6 of 91

Edit report generated from SAP Crystal Reports

Sai Subramanyam
Sai Subramanyam
Updated on 13-Mar-2026 483 Views

In SAP Crystal Reports, it is not feasible to directly edit a report once it has been generated. The generated reports are read-only by default, and you cannot add constraints or logic to make your report editable in the standard Crystal Reports viewer. Workaround Solution However, there is a practical workaround that involves exporting the report and then modifying the document properties. Here's the approach − Step-by-Step Process Step 1: First, export the generated Crystal Report to your desired format (such as ...

Read More

Use existing authentication along with SAP BO

usharani
usharani
Updated on 13-Mar-2026 223 Views

It is one of the most common extension points in an existing ecosystem. With the latest release of SAP BusinessObjects (BO), you can use Active Directory based logins mapped under Windows Server. Authentication Integration Options SAP BusinessObjects provides several authentication methods that can integrate with your existing infrastructure − Windows Active Directory (AD) − Seamless integration with domain credentials LDAP Authentication − Connect to existing LDAP directories Single Sign-On (SSO) − Use existing SSO solutions like SAML or Kerberos Database Authentication − Leverage existing ...

Read More

Generate Database diagram within SAP

varun
varun
Updated on 13-Mar-2026 1K+ Views

Generating complete database diagrams in SAP, as typically generated in SQL Server or other DBMS systems, is not directly possible. However, there are several approaches that can help you visualize database structures and relationships within the SAP environment. Method 1: Using SAP Object Model Guide You can refer to the Object Model Guide available in the SAP Marketplace. This comprehensive guide explains the most common relationships between popular and frequently used business objects in SAP. While it doesn't cover every aspect of the database structure, it provides detailed coverage of the most commonly used and critical business objects ...

Read More

Read a date filter as input in WEBI report in SAP BO

Prabhas
Prabhas
Updated on 13-Mar-2026 620 Views

Your requirement is one of its kinds but can be achieved. What you can try out is first create a brand new object in the context. Let's say you provided the date as first input and 5 as a weekly slice in the second input. Example Here's how you can create a date filter formula using DATEADD function with prompts − [Date+5]=DATEADD(@prompt('Slice', 'X'{'Day', 'Month', 'Year'}, mono, constrained, persistent), 5, @prompt('Date', 'date', mono, free, persistent)) In this formula: X refers to your slice type (Day, Month, or Year) ...

Read More

Use IFrame and read cookie in ABAP

seetha
seetha
Updated on 13-Mar-2026 296 Views

Using IFrames with cookies in ABAP is achievable through a well-structured approach that combines server-side Business Server Pages (BSP) applications with client-side JavaScript to bridge the communication between third-party components and ABAP code. Implementation Approach The solution involves creating a frameset-based architecture that separates concerns while maintaining seamless data flow between components. Step 1: Create BSP Application First, create a Business Server Pages application on the server. Make sure the application contains a frameset and two IFrames as part of the frameset. ...

Read More

Need to schedule script in PowerShell from SAP

SAP
vanithasree
vanithasree
Updated on 13-Mar-2026 283 Views

When scheduling PowerShell scripts from SAP, you may encounter permission issues where the scheduler cannot access required files or credentials. This commonly occurs because the scheduler service lacks the necessary permissions to read file contents, particularly login credentials stored in external files. Common Permission Issue The scheduler is unable to read the contents, basically the login credentials from the file. This happens because the service account running the scheduled task doesn't have appropriate file system permissions or cannot decrypt stored credentials. Solution: Service Account Authentication As a workaround, create a separate job altogether to capture the ...

Read More

How to join tables in SAP system

radhakrishna
radhakrishna
Updated on 13-Mar-2026 1K+ Views

If you want to check the relation between different tables, you need to have a minimum read-only access to SAP system. Table joins in SAP allow you to combine data from multiple related tables based on common fields. Dictionary Structure Reference Below is the link to refer information about dictionary structure − https://help.sap.com/saphelp_46c/helpdata/en/ea/e9a3bb4c7211d189520000e829fbbd/frameset.htm Common Table Join Methods in SAP There are several ways to join tables in SAP system − ...

Read More

Adding items to table using function in SAP

mkotla
mkotla
Updated on 13-Mar-2026 250 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

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

Error connecting SAP while sapjco3.jar file is in my library path

Alankritha Ammu
Alankritha Ammu
Updated on 13-Mar-2026 714 Views

When encountering errors connecting to SAP even though the sapjco3.jar file is in your library path, the issue typically stems from a missing native library. You need to copy sapjco3.dll into a folder in your Java library path, as the required library is not sapjco3.jar but rather the sapjco3.dll file. Checking Your Current Library Path You can check your current Java library path in your application using the following − public class LibraryPathChecker { public static void main(String[] args) { String libraryPath = System.getProperty("java.library.path"); ...

Read More
Showing 51–60 of 902 articles
« Prev 1 4 5 6 7 8 91 Next »
Advertisements