Embedded BW Parameters for SAP HANA

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

341 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

506 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

383 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

758 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

140 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

101 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          

Checking Status of Auto Documentation in SAP HANA

John SAP
Updated on 25-Jun-2020 08:20:27

200 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. 

Usage of CSS grid row-end Property

George John
Updated on 25-Jun-2020 08:20:01

60 Views

Set where to end the grid-items with CSS grid-row-start property.You can try to run the following code to implement the grid-row-end propertyExampleLive Demo                    .container {             display: grid;             grid-auto-rows: 50px;             grid-gap: 10px;             background-color: red;             padding: 10px;          }          .container>div {             background-color: yellow;             text-align: center;             padding:10px 0;             font-size: 20px;          }          .ele3 {             grid-row-end: span 2;          }                              1          2          3          4          5          6          

Advertisements