Switch Ownership Option Under SAP HANA Perspective

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

420 Views

Switch Ownership option is available under SAP HANA Modeler Perspective. IF you don’t see it under Modeler perspective, try to reset from top.

Differences Between Group and Layer in KineticJS

Daniol Thomas
Updated on 30-Jul-2019 22:30:22

499 Views

When making HTML5 web application using KineticJS, grouping, and layering need to be used.Groups are basically containers whereas layers are separators basically.The group is a container which is having shaped objects inside layers for ex group might contain both circle and rectangle.If a group is manipulated then elements within that group is also manipulated.ex if we drag the group then its elements get dragged as well.However, layers actually separate canvas elements that are at the top of one another. This is quite similar to the layers that work in Photoshop and Illustrator. Multiple layers are visible simultaneously.Layers are used to ... Read More

Difference between Take Over and Switch Ownership in SAP HANA

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

546 Views

Below is the difference between take over and switch ownership.Take Over: This option is used to take single inactive object from another workspace.Switch Ownership: This option is used to take single or multiple inactive objects from other users.When you expand Switch ownership option in HANA Modeler, you can see description of this option-

Use R in Java 8 Regex

Arnab Chakraborty
Updated on 30-Jul-2019 22:30:22

499 Views

\R matches any line break as defined by the Unicode standardPattern p = Pattern.compile("\R");Unicode line-break sequence is equivalent to \u000D\u000A|[\u000A\u000B\u000C\u000D\u0085\u2028\u2029]

Using Schema Mapping in SAP HANA

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

1K+ Views

Schema mapping in SAP HANA is used to move objects from one system to other system i.e. from Development system to Test or Test system to production system.Let us say you are moving objects from Dev system to production system and tables in dev system are available in Dev_SCH and same set of tables are also available in production system in Prod_SCH. Now when you move a HANA Information view from Development to production, it will not work as dev_SCH is referenced in Information view definition so in this scenario, you need to perform schema mapping in target system. Read More

CSS Positioning Related Properties

Lakshmi Srinivas
Updated on 30-Jul-2019 22:30:22

80 Views

The positioning related properties in CSS are:Relative PositioningRelative positioning changes the position of the HTML element relative to where it normally appears. So "left:20" adds 20 pixels to the element's LEFT position.Absolute PositioningAn element with position: absolute is positioned at the specified coordinates relative to your screen top-left corner.Fixed PositioningFixed positioning allows you to fix the position of an element to a particular spot on the page, regardless of scrolling. Specified coordinates will be relative to the browser window.

Using Activity in SAP for Number Range Intervals and Objects

karthikeya Boyini
Updated on 30-Jul-2019 22:30:22

131 Views

As the name indicates, activity 02 is for intervals while activity 17 is for objects. There can be a different number range interval for a given SAP number range interval.

Changing Authoring Schema of Catalog Objects in SAP HANA

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

550 Views

In SAP HANA Modeler perspective, you have an option of changing authoring schema of catalog objects.Select the objects for which you want to change the authoring schema from Content tab. You can use Add button to add objects Available -> SelectedFrom drop down, you need to select Authoring Schema details- Source and Target

How the TABLE Statement Works in ABAP

Syed Javed
Updated on 30-Jul-2019 22:30:22

367 Views

With table statement, you are able to get a single line of data corresponding to the dictionary structure you specify. The fields of structure can be used as select options and the structure can be passed as variable in the program.

Splitting and Uploading Extremely Large Files to Amazon S3

Sravani S
Updated on 30-Jul-2019 22:30:22

599 Views

For storing extremely large files on Amazon S3, the configured virtual machine can be used which would be 10+ GB in size.In HTML5 file API, very large files are divided into small bits on the client. The server has the responsibility to join files together and move the complete file to S3. There is no cost of sending the files between EC2 and S3, but for this, we need to maintain 2 apps to send large files. In Amazon multipart upload if chunk upload fails, it can be restarted. A 5GB data can be divided into 1024 separate parts and upload each one ... Read More

Advertisements