SAP Articles

Page 30 of 91

Using xsodata service with SAP HANA XS Engine without authentication

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

To use an xsodata service with SAP HANA XS Engine without authentication, you need to configure specific access control files. The xsaccess file defines who is authorized to access the content exposed by a SAP HANA XS application package and what content should be displayed based on access permissions. Note that to use the xsaccess file without credentials, you have to create an xssqlcc file (SQL Connection Configuration file) that establishes the database connection parameters for the XS application. Required Files For anonymous ...

Read More

Installing SAP JCo on Glassfish server 4.0

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

In SAP, there is a file intro.html that contains detailed instructions on installation of JCo3 on different Operating Systems. This guide focuses on installing SAP JCo on Glassfish server 4.0. Installation Instructions Following are the step-by-step instructions for installing SAP JCo − To install JCo for Windows, unzip the appropriate distribution package into an arbitrary directory {sapjco3-install-path}. Important Note: Do not copy the sapjco3.dll neither into the {windows-dir}\system32 nor into the {windows-dir}\SysWOW64 ...

Read More

Building an XCode application using Maven plugin (SAP)

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

Note: Xcode-maven-plugin is not compatible with Maven 3.1 or higher versions. You have to downgrade to Maven 3.0.x to use this plugin effectively for SAP mobile application development. Prerequisites Before building an Xcode application using Maven plugin for SAP, ensure you have the following − Maven 3.0.x installed (not 3.1 or higher) Xcode development environment SAP Mobile Platform SDK Valid Apple Developer account for iOS deployment Maven Configuration ...

Read More

Adding millisecond to date in SAP HANA

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

To add milliseconds to a date in SAP HANA, you can use the ADD_SECONDS function with fractional values. Since there are 1000 milliseconds in a second, you can pass decimal values to represent milliseconds. Using ADD_SECONDS Function Try using ADD_SECONDS function as below − SELECT ADD_SECONDS(TO_TIMESTAMP('2017-07-15 02:17:15'), 0.1) FROM TEST; This will add 100 milliseconds (0.1 seconds) to the timestamp. The function accepts fractional values where 0.001 equals 1 millisecond. Syntax ADD_SECONDS(t, n) ...

Read More

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

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 172 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 510 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 459 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 336 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 548 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
Showing 291–300 of 902 articles
« Prev 1 28 29 30 31 32 91 Next »
Advertisements