Checking Status of Auto Documentation in SAP HANA

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

185 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          

Using Delivery Unit in SAP HANA

Anil SAP Gupta
Updated on 25-Jun-2020 08:19:15

556 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

Animation on CSS border-bottom-right-radius Property

Lakshmi Srinivas
Updated on 25-Jun-2020 08:18:36

53 Views

To implement animation on border-bottom-right-radius property with CSS, you can try to run the following codeExampleLive Demo                    div {             width: 500px;             height: 400px;             background: yellow;             border: 10px solid yellow;             border-bottom-right-radius: 150px;             background-image:url('https://www.tutorialspoint.com/latest/electronic_measuring_instruments.png');             animation: myanim 3s infinite;             background-position: bottom left;             background-size: 50px;          }          @keyframes myanim {             20% {                background-color: maroon;                background-size: 90px;                border-bottom-color: green;                border-bottom-right-radius: 50px;             }          }                     Performing Animation bottom border right radius          

Role Required to Use LCM in SAP HANA

Anil SAP Gupta
Updated on 25-Jun-2020 08:18:31

214 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

Different Mapping Options in SAP HANA for Importing Data from Flat File

Anil SAP Gupta
Updated on 25-Jun-2020 08:17:37

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

Trigger-based SAP HANA Data Replication

Anil SAP Gupta
Updated on 25-Jun-2020 08:16:41

593 Views

In SAP HANA data replication, following replication methods can be used −SAP Landscape Transformation (SLT)SAP Data ServicesDXCFrom the above method, SAP Landscape Transformation (SLT) Replication is a trigger based data replication method in HANA system. It is used for replicating real-time data or schedule-based replication from SAP and non-SAP sources. It has SAP LT Replication server, which takes care of all trigger requests. The replication server can be installed as a standalone server or can run on any SAP system with SAP NW 7.02 or above.To use this method, you have to navigate to Data Provisioning under SAP HANA Modeler ... Read More

HTML5 Canvas and Image on Polygon

George John
Updated on 25-Jun-2020 08:15:15

431 Views

Yes, it is possible. Create a pattern using the image, and then set the pattern to fillStyle.Here, obj is our image object −var context = canvas.getContext("2d"); var pattern = context.createPattern(obj, "repeat"); context.fillStyle = pattern;You need to manipulate the image to fit an arbitrary polygon −context.save(); context.setTransform(m11, m12, m21, m22, dx, dy); context.drawImage(obj); context.restore();

Copy Data from One Table to Another New Table in MySQL

Arjun Thakur
Updated on 25-Jun-2020 08:14:27

1K+ Views

To copy data from one table to another table, firstly we will create a table.Creating first table −mysql> CREATE table FirstTable -> ( -> id int, -> name varchar(100) -> ); Query OK, 0 rows affected (0.61 sec)After creating a table, we will insert records.mysql> INSERT into FirstTable values(1, 'john'); Query OK, 1 row affected (0.20 sec) mysql> INSERT into FirstTable values(2, 'Smith'); Query OK, 1 row affected (0.21 sec)We can display all the records with the help of SELECT statement −mysql> SELECT * From FirstTable; The following is the output+------+-------+ | id | name | ... Read More

Values for the CSS cursor Property

Arjun Thakur
Updated on 25-Jun-2020 08:14:21

154 Views

The cursor property of CSS allows you to specify the type of cursor that should be displayed to the user.The following table shows the possible values for the cursor propertyValueDescriptionautoShape of the cursor depends on the context area it is over.For example, an 'I' over text, a 'hand' over a link, and so on.crosshairA crosshair or plus signdefaultAn arrowpointerA pointing hand (in IE 4 this value is hand).moveA pointing hand (in IE 4 this value is hand).moveThe 'I' bare-resizeThe cursor indicates that an edge of a box is to be moved right (east).ne-resizeThe cursor indicates that an edge of a box ... Read More

Advertisements