Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Using Filter to fetch specific data in SAP Crystal Reports

I have a Crystal Report that I have created from scratch. In database expert, I used OLE DB(ADO). In OLE DB(ADO)-> I have added tables into the Database and showed it on Crystal Report. Nex.....
Anil SAP Gupta
Answered on 6th Dec, 2017

I think you need to setup filtering in Record Selection formula. Navigate to this path to open Record Selection Formula:Report -> Selection Formula -> RecordThis will open a new window where you can pass your condition and rerun the report.To know more about Record Selection Formula, you can refer this ... Read More

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

I am trying to synchronize data in iOS from SMP 2.3 and I get an error code 516. This cause app to stop move forward. Below is error description in log file: SUPConnectionStatus_DISCONNECTED, .....
Anil SAP Gupta
Answered on 6th Dec, 2017

This normally happens when you have incorrect configuration in synchronization profile. You have to check if stream parameters are set correctly, etc.

Adding millisecond to date in SAP HANA

I have written a SP that saves current timestamp in a variable. In SAP HANA, following functions are there to add an amount of time to a date: ADD_YEARSADD_MONTHSADD_DAYSADD_WORKDAYSADD_SECOND.....
Anil SAP Gupta
Answered on 6th Dec, 2017

Try using ADD_SECONDS function as below:SELECT ADD_SECONDS (TO_TIMESTAMP('2017-07-15 02:17:15'), 0.1) FROM TESTThis will add seconds as fraction value as requested. Below is syntax and example:ADD_SECONDSSyntaxADD_SECONDS (t, n)DescriptionComputes the time t plus n seconds.Example:SELECT ADD_SECONDS (TO_TIMESTAMP ('2012-01-01 23:30:45'), 60*30) "add seconds" FROM DUMMY;add seconds2012-01-02 00:00:45.0To know more about ADD_SECONDS function, you ... Read More

Building an XCode application using Maven plugin (SAP)

I am building an XCode application using Maven plugin and below is my pom.xml: , I get the following error and my application is not built correctly: "Failed to execute goal com.sap.prd.mobile......
Anil SAP Gupta
Answered on 6th Dec, 2017

Note that Xcode-maven-plugin is not compatible with maven 3.1. You have to downgrade to lower version Maven 3.0.x.Try below link for more details:xcode-maven-plugin

Installing SAP JCo on Glassfish server 4.0

I have to install SAP JCo3 on Glassfish server. I have Windows 2003 server and I tried copying sapjco.jar, sapjco3.dll and sapjco3.pdb file at relevant location but it is not working. Anyone c.....
Anil SAP Gupta
Answered on 6th Dec, 2017

In SAP, there is a file intro.html that contains detailed instructions on installation of JCo3 on different Operating Systems.Following are the instructions:To install JCo for Windows unzip the appropriate distribution package into an arbitrary directory {sapjco3-install-path}.Note: Do not copy the sapjco3.dll neither into the {windows-dir}\system32 nor into the {windows-dir}\SysWOW64 directory. ... Read More

Using xsodata service with SAP HANA XS Engine without authentication

I have to use xsodata service with HANA XS Engine and I have created .xsaccess file inside Global folder as below: , I have the following test service created with below content: , However I ge.....
Anil SAP Gupta
Answered on 6th Dec, 2017

Note that to use xsaccess file it without credentials, you have to create xssqlcc file. xsaccess file is used to define who all are authorized to access the content exposed by a SAP HANA XS application package and what content should be displayed as per access.Check out this tread for ... Read More

Creating communication between Java application and SAP

I have to create communication between SAP system and my Java application. I am using JCo and put it in library and class path. While importing package com.sap.mw.jco.*, it shows a compilation .....
Anil SAP Gupta
Answered on 6th Dec, 2017

Note that com.sap.conn.jco.JCo can be used as an alternative of com.sap.mw.jco and exists in sapjco.jar. Classes in sapjco.jar files is also different. You can check this link for more details:com.sap.conn.jco.JCo 

Using SAP Server for education and training purpose

We are using SAP ERP from long time and we find it best to be used for all modules. Now we want to use an SAP education instance for students who will come to our company.  I also want th.....
Anil SAP Gupta
Answered on 6th Dec, 2017

I think this can be achieved. When you create a copy of your production system, you can select which data you want to copy- you can select no for users and application data.You can use SAP TEST DATA Migration Server TDMS, to transfer limited data to test instance however it ... Read More

Error Failed to load resource in SAPUI5 application

My SAPUI5 application was working fine today, I had created a table based on ODATA. Now when I check developer tool, it shows this error: Failed to load resource https://hana_server_name:4000/u.....
Anil SAP Gupta
Answered on 6th Dec, 2017

It is clear from your error message: VisitorData.view.js is not found so you have to check if this view actually exists and there is no permission issues on this view.Try checking this to view list of deployed services: https://hanaservername.com:4000/ui_test/ui5_test/WebContent/resources/You have to add below in your web.xml:<context-param><param-name>com.sap.ui5.resource.DEV_MODE</param-name><param-value>true</param-value></context-param> Read More

Sending an itab to SAP Spool using ABAP method

There is a need to send an internal table to SAP Spool using an ABAP class. I don’t want to this using a Function module.  Please help.
Anil SAP Gupta
Answered on 6th Dec, 2017

Check this class: CL_RSPO_SPOOL_HANDLE as it provides an OO interface to spool.Class                                      CL_RSPO_SPOOL_HANDLE           Short Description             Spool: Spool Request Opened for WritingYou can ... Read More

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

I am using HP UFT 11.52 on Web Dynpro over IE8. There is a SAPTable object that I am trying to activate the 'GetCellData' function on it to get the value under the "ID Number" column of the fi.....
Anil SAP Gupta
Answered on 6th Dec, 2017

Note that column number is used to locate table cell data and column name is unique identifier.object.GetCellData( row, column)- takes argument as long integers row and cell numbers to locate cell data.Try using GetCellData like this:Browser("Browser").Page("Page").Frame("searchDialog").SAPTable("ResultsTable").GetCellData(1, 1)Browser("Browser").Page("Page").Frame("searchDialog").SAPTable("ResultsTable").GetCellData(1, 2) Read More

Installing SAPUI5 on local machine using XAMPP

I have to install SAPUI5 on my local machine using XAMPP and also copied the files to htdocs. When I save a HTML document with text and run this, it only opens blank page. I can see this error .....
Anil SAP Gupta
Answered on 6th Dec, 2017

You can refer this link for setting up basic development environment for SAP UI5:Basic Development environment for SAPUI5To setup local Development with Eclipse, you should refer this:UI5 with Eclipse

Converting the data back to table using SAP FM RFC_READ_TABLE

I want to know how I can read a table using RFC_REAL_TABLE and then converted back. Below is my code: ,
Anil SAP Gupta
Answered on 6th Dec, 2017

This is very simple and you can write a code as below. This code works when you only have characters fields in table:DATA: lt_options TYPE TABLE OF rfc_db_opt,         lt_fields  TYPE TABLE OF rfc_db_fld,         lt_entries TYPE TABLE OF dpr_pha_type. CALL FUNCTION 'RFC_READ_TABLE'   ... Read More

Adding custom fields to items in SAP Transaction ME5xN x=1,2,3..

I have to add custom fields to items in T-code: ME5xN. There are few BADI’s but I don’t know how to use it. There is exit MEREQ001 which tells that by creating the table CI_EBANDB .....
Anil SAP Gupta
Answered on 6th Dec, 2017

This can be done by following below path:T-code: SPRO -> Materials Management -> Purchasing -> Purchase Requisition -> Define Screen Layout at Document Level and there view the details on the transaction you want to customize.When you execute, there view the details on the transaction you want to customize. You ... Read More

Creating Attribute and Analytic view as persistent model in SAP HANA

Can we create attribute views and analytic views as persistent models in HANA? I regenerated attribute and analytical views in new project and when I activate it, .attributeview file creates a.....
Anil SAP Gupta
Answered on 6th Dec, 2017

This is possible as all views can be created as persistent in SAP HANA. You need to get XMS representation creating attributeview, .analyticview, .calculationview file and activate it.In your case I think you need to check details of your Analytic view and if there is some path that you need ... Read More

Advertisements
Loading...
Unanswered Questions View All

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.