SAP HANA Articles

Page 21 of 58

Error while Synchronizing data in iOS from SMP 2.3 (SAP)

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

This normally happens when you have incorrect configuration in synchronization profile. You have to check if stream parameters are set correctly in your SAP Mobile Platform (SMP) 2.3 configuration. Common Causes and Solutions The synchronization error in iOS applications connected to SAP Mobile Platform typically occurs due to misconfigured parameters. Here are the key areas to check − Stream Parameters Configuration Verify that your synchronization profile has the correct stream parameters configured − https://your-smp-server:8443 ...

Read More

Using Filter to fetch specific data in SAP Crystal Reports

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

To fetch specific data in SAP Crystal Reports, you need to set up filtering using the Record Selection Formula. This formula allows you to define conditions that determine which records from your data source will be included in the report. Accessing Record Selection Formula Navigate to the following path to open the Record Selection Formula editor − Report → Selection Formula → Record This will open a new window where you can define your filtering conditions and ...

Read More

Pull a list of Functional Location from SAP using BAPI

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

When working with SAP BAPI to pull a list of Functional Locations, you need to properly configure the function parameters before making the call. The BAPI_FUNCLOC_GETLIST function requires specific table parameters to filter and retrieve the desired functional location data. After you set objRfcFunc, you should configure the funcloc_ra table parameter with the appropriate selection criteria before calling the BAPI function. Setting Up Function Location Range Parameters The funcloc_ra table contains the selection criteria for functional locations. Each row specifies the selection options ...

Read More

In SAP Crystal Reports, removing extra white space between details sections

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 1K+ Views

To resolve extra white space between details sections in SAP Crystal Reports, you need to configure the formatting properties of your report objects. This issue commonly occurs when objects have fixed sizes that don't adjust to their content. Solution Steps Navigate to the Format Editor tab and modify the following settings − Check the "Can Grow" option to allow objects to expand based on content Deselect "Keep Object Together" in the subreport to prevent forced spacing ...

Read More

Selecting cut field value of SAP tables using JCo

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

When working with SAP systems through JCo (Java Connector), selecting specific field values from SAP tables requires careful consideration of the available function modules. If you are using RFC_READ_TABLE, selecting cut field values is not directly achievable through standard functionality. Understanding RFC_READ_TABLE Limitations In order to read SAP tables or views, the standard SAP function module RFC_READ_TABLE is commonly used. However, this function module has inherent limitations when it comes to handling cut field values or field truncation scenarios. Alternative ...

Read More

Footer not working in my SAPUI5 application

SAP Expert
SAP Expert
Updated on 13-Mar-2026 542 Views

When your footer is not working in a SAPUI5 application, try embedding your page in the sap.m.App control. The App control provides proper container functionality and manages the footer display correctly. Solution The sap.m.App control acts as the root container for your application and properly handles the footer behavior. Here's how to implement it − var oApp = new sap.m.App({ pages: [oPage] }); var oPage = new sap.m.Page({ title: "My Page", content: [ // Your ...

Read More

Consuming Web Service in C# application (SAP)

SAP Expert
SAP Expert
Updated on 13-Mar-2026 696 Views

This error occurs when remote server doesn't provide a response to your request and connection is broken before request is complete. To fix this issue, first setup a request that includes QaaWsHeader and ReportBlock configuration, then create the Request and in last using ServicesSoapClient, you can make method to send results. Understanding SAP Web Service Components When consuming SAP web services in C#, you need to configure three main components − QaaWSHeader − Contains authentication and session information GetReportBlock − Defines the data retrieval parameters ServicesSoapClient − ...

Read More

Is there a way to find last date of month using any function? Like 03/15/2017 should return 03/31/2017? (SAP)

SAP Expert
SAP Expert
Updated on 13-Mar-2026 182 Views

You can use the DateSerial() function in SAP to find the last date of any month. This function returns a Date value for the specified year, month and day and also handles relative Date expressions. Arguments year − A whole number or numeric expression representing a year, example: 1996. month − A whole number or numeric expression representing a month, example: 12 for December. day − A whole number or numeric expression representing a day of the month, example: 5. Returns A Date value. ...

Read More

Publishing SAP Xcelsius dashboard without login

SAP Expert
SAP Expert
Updated on 13-Mar-2026 209 Views

Yes, it can be achieved by using Open Document link. To get HTTP link, you need to store the object in BO repository and get open document link from BI Launchpad. When you store the object in repository, you have to handle necessary credentials and running queries can be handled by this. You can set up SSO (Single Sign-On) in OpenDocument and SSO source can be an Active Directory authentication, or SAP BW. When SSO is set up, clicking the generated OpenDocument link should ...

Read More

Specifying working directory while executing FM SXPG_COMMAND_EXECUTE in SAP system

SAP Expert
SAP Expert
Updated on 13-Mar-2026 849 Views

When executing FM SXPG_COMMAND_EXECUTE in SAP systems, you might need to specify a working directory for your external commands. A common approach is to create a script in SM69 transaction code that calls sh with parameters like -c 'cd && /path/to/command'. However, this approach has limitations. The system doesn't accept wildcards, and the && operator gets converted to &, causing the script to fail. SAP Note 401095 - Wildcards in External Commands According to SAP Note 401095, wildcards are not supported in ...

Read More
Showing 201–210 of 573 articles
« Prev 1 19 20 21 22 23 58 Next »
Advertisements