Trusted RFC Connection in SAP System

Anil SAP Gupta
Updated on 25-Jun-2020 08:24:56

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.

Can a Number be Used to Name a MySQL Table Column

Chandu yadav
Updated on 25-Jun-2020 08:24:12

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
Updated on 25-Jun-2020 08:24:09

316 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

Datetime vs Timestamp Data Type in MySQL

Ankith Reddy
Updated on 25-Jun-2020 08:23:42

487 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

Set a Default Row Size for CSS Grid

Lakshmi Srinivas
Updated on 25-Jun-2020 08:22:52

369 Views

Use the grid-auto-rows property to set a default size for the row.You can try to run the following code to implement the grid-auto-rows property with CSS ExampleLive Demo                    .container {             display: grid;             grid-auto-rows: 60px;             grid-gap: 10px;             background-color: red;             padding: 10px;          }          .container>div {             background-color: yellow;             text-align: center;             padding:10px 0;             font-size: 20px;          }                              1          2          3          4          5          6          

Enabling Web Dispatcher in SAP HANA Studio

Anil SAP Gupta
Updated on 25-Jun-2020 08:22:49

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.

CSS All Property

karthikeya Boyini
Updated on 25-Jun-2020 08:22:07

178 Views

Use the all property to reset all the properties. Set all property to initial, inherit or unset.You can try to run the following code to implement the CSS all propertyExampleLive Demo                    html {             color: blue;          }          #demo {             background-color: yellow;             color: red;             all: inherit;          }                     CSS all property       This is demo text.    

Data Replication Techniques in SAP HANA

Anil SAP Gupta
Updated on 25-Jun-2020 08:22:02

733 Views

SAP HANA is an in-memory database that supports real-time data replication from SAP and non SAP data sources. Following data replications are supported using SAP HANA −SAP Landscape Transformation (SLT) This is trigger based approach used to transfer data from source system to target systemSAP Data Services (BODS) This is commonly used to move data from SAP and non-SAP data sources to HANA db. It is an ETL based replication which extract, transform and load data from source system to target system.Sybase replication in SAP HANA This includes Sybase Replication agent which is part of SAP source application and Replication server implemented in ... Read More

Work with White Space Inside an Element with CSS

Ankith Reddy
Updated on 25-Jun-2020 08:21:25

137 Views

Use the white-space property to work with white-space inside an elementExampleLive Demo                    p.demo1 {             white-space: normal;          }          p.demo2 {             white-space: pre;          }                     Control white-space                This is demo text.          This is demo text.                      This is demo text.          This is demo text.          

Blending Mode of Each Background Layer with CSS

Samual Sam
Updated on 25-Jun-2020 08:20:42

94 Views

Use the background-blend-mode property to set the blending mode of each background layer with CSS. You can try to run the following code to implement the background-blend-mode property and set the mode to darkenExampleLive Demo                    #myDIV {             width: 250px;             height: 170px;             background-repeat: no-repeat, repeat;             background-image:url("https://www.tutorialspoint.com/assets/videotutorials/courses/3d_animation_online_training/380_course_211_image.jpg"),url( https://www.tutorialspoint.com/latest/dc.js.png);             background-blend-mode: darken;          }                     Set Blend Mode          

Advertisements