Anil SAP Gupta

Anil SAP Gupta

97 Articles Published

Articles by Anil SAP Gupta

97 articles

Error Failed to load resource in SAPUI5 application

Anil SAP Gupta
Anil SAP Gupta
Updated on 04-Mar-2024 2K+ Views

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 − http://hanaservername.com:4000/ui_test/ui5_test/WebContent/resources/You have to add below in your web.xml −    com.sap.ui5.resource.DEV_MODE    true

Read More

Adding millisecond to date in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 846 Views

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_SECONDS SyntaxADD_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 can also refer this link:datetime function in SAP HANATo know more about SQL functions in SAP HANA system, you can also refer our HANA tutorial:SAP HANA SQL Functions

Read More

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

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 695 Views

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

Different connection types in SAP Remote Function call

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 2K+ Views

Following RFC connection types are available in SAP system −Connection Type 3 (ABAP Connection) This connection type is used to specify connection between ABAP systems. You need to mention the host name and IP address of source system and also the logon information. This is applicable for both type of RFCs, between ABAP systems and external calls to ABAP systems.Connection Type I (Internal Connections)This connection Type I indicates ABAP systems connected to the same database as current system. Type I entries are predefined and you can’t edit these entries.Connection Type L (Logical Destinations)The logical destination connection type indicates a physical destination. ...

Read More

Trusted RFC connection in SAP system

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 3K+ Views

A trusted RFC connection is used to define Remote Function Call (RFC Connection) between two systems. By creating a trusted RFC connection between two systems, it allows you to create a trusted-trusting relationship between systems wherein, you can communicate and exchange information and data.To create a new trusted RFC connection, you can use T-Code − SM59. There are different RFC connections supported as per requirement.Click on the 3rd icon to open a new connection wizard → click on Create button and a new window will open.

Read More

Embedded BW parameters for SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 358 Views

To setup the following Parameters in BW Using Program SAP_RSADMIN_MAINTAIN  or you can also use T-code SE38 or SA38PSA_TO_HDB_DESTINATION − This parameter defines that where we need to move the Incoming dataPSA_TO_HDB_SCHEMA − This parameter is used to define which schema the replicated data will be assigned to.PSA_TO_HDB − GLOBAL − This parameter is used to replicate all data source to SAP HANASYSTEM − This parameter is used to specify clients to use DXC replicationDATASOURCE − This is used to specify the Data Source usedPSA_TO_HDB_DATASOURCETABLE − This parameter is used to provide the table name which are having list of ...

Read More

Enabling Web dispatcher in SAP HANA Studio

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 2K+ Views

To enable SAP Web dispatcher, you have to change Instance Value 0 to 1 in sapwebdisp in SAP HANA Studio → Configuration tab. This will enable ICM Web dispatcher and it uses ICM Method to load or read the data from SAP HANA system. Note that this method of data load supports large volume of data.

Read More

Using Delivery unit in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 619 Views

In SAP HANA system, delivery units are used to transport repository objects between different HANA systems and is used by Lifecycle Manager LCM.To create a Delivery unit, you have to navigate to SAP HANA Modeler Perspective → Delivery Unit

Read More

Role Required to use LCM in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 240 Views

In SAP HANA system, delivery units are used to transport repository objects between different HANA systems and is used by Lifecycle Manager LCM.To create a Delivery unit, you have to navigate to SAP HANA Modeler Perspective → Delivery Unit

Read More

Different mapping options in SAP HANA while importing data from flat file

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 338 Views

In SAP HANA, using file import you can load data to an existing table or can create a new table with the same column names as in the flat file.While using import wizard, you can define the mapping of columns. Following options are available −One to OneMap by NameUsing Map by Name option, you can map columns in CSV files to the columns in an existing table.

Read More
Showing 1–10 of 97 articles
« Prev 1 2 3 4 5 10 Next »
Advertisements