Difference between Take Over and Switch Ownership in SAP HANA

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

582 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

523 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

151 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

573 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

395 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

632 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

User Login for Offline Web App

George John
Updated on 30-Jul-2019 22:30:22

498 Views

While logging in i.e. online, you need to first authenticate against the server and if it works, store the username and a hashed password in the database.If you can find the account in the database, then you need to generate a new hash, only if the user has changed the password since the last time he logged.You need to also authenticate against the local database. Log in using the online version of the app at least once.

HTML5 Geolocation Permission Denied Error in Mobile Safari

Jennifer Nicholas
Updated on 30-Jul-2019 22:30:22

521 Views

Whenever a mobile website is created and there is a requirement in which user is requested for current position on button click, then HTML5 geolocation is used.This is working fine in mobile chrome.However when in Mobile Safari, the user is prompted to share location and browser defaults to geolocation then browser is defaulted to Permission denied errorTo solve this, the Geolocation services in mobile services is turned on to get current location of requested user.

Advertisements