Articles on Trending Technologies

Technical articles with clear explanations and examples

Redeploy option in SAP HANA Modeling

John SAP
John SAP
Updated on 25-Jun-2020 801 Views

Redeploy option is available under SAP HANA Modeler Perspective −

Read More

Activation modes under SAP HANA Modeler Activate option

John SAP
John SAP
Updated on 25-Jun-2020 330 Views

This option is used for bulk activation of inactive objects in HANA repository. You have the following Activation modes −Stop activation incase of inconsistencies in affected objectsActivate and ignore the inconsistencies in affected objects

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

How to check if a column exist in a MySQL table?

George John
George John
Updated on 25-Jun-2020 6K+ Views

To understand whether a column exist or not, we have the following approaches −With the help of DESC commandUsing SHOW commandFirstly, we will create a table with columns −mysql> CREATE table ColumnExistDemo -> ( -> UniqueId int, -> UniqueName varchar(200), -> UniqueAddress varchar(200) -> ); Query OK, 0 rows affected (0.57 sec)In the first approach, we will get the entire column name with meaningful information. The syntax is as follows −DESC yourTableName; Let us apply the above query to check whether the column name exists or not. However, this approach is not good since it display all the columns.mysql> DESC ...

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

Can a number be used to name a MySQL table column?

Chandu yadav
Chandu yadav
Updated on 25-Jun-2020 1K+ Views

Yes, we can include a number for column name in MySQL. We need to use the symbol backtick, which is as follows( ` `)To understand, we will make a table with the help of CREATE command. Let us create a table −mysql> CREATE table NumberColumnDemo -> ( -> `123` varchar(100) -> ); Query OK, 0 rows affected (0.51 sec)Above, I have created a column name as a number with the help of backtick symbol.Now, we can check the same by inserting records with the help of INSERT command. Let us insert a record, which is as follows −mysql> INSERT into ...

Read More

Embedded BW parameters for SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 374 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

Which one should I use? The datetime or timestamp data type in MySQL?

Ankith Reddy
Ankith Reddy
Updated on 25-Jun-2020 546 Views

Timestamp is a data type in MySQL and works for different time zone. It is also used for date and time purpose To understand the concept, we need to create a table.Creating a tablemysql> CREATE table TimeStampDemo -> ( -> MyDataTime timestamp -> ); Query OK, 0 rows affected (0.57 sec)After creating the table, we will insert a record with the help of INSERT command.Inserting recordsmysql> INSERT into TimeStampDemo values (now()); Query OK, 1 row affected (0.12 sec)After inserting a record, we can display the records with the help of SELECT statement.Displaying recordsmysql> SELECT * from TimeStampDemo; After executing the ...

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

Checking status of Auto Documentation in SAP HANA

John SAP
John SAP
Updated on 25-Jun-2020 237 Views

When you use the Auto documentation feature in SAP HANA, you can navigate to job log → Current tab and select Job-type Auto Documentation and double click.You can see details of Auto Documentation job details and Status- shows a green tick mark as successful. 

Read More
Showing 53251–53260 of 61,297 articles
Advertisements