Articles on Trending Technologies

Technical articles with clear explanations and examples

Maximum Table name length in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 12-Mar-2020 2K+ Views

Maximum table name length supported in SAP HANA is 127 characters.

Read More

Maximum table count in a schema in SAP HANA

SAP Expert
SAP Expert
Updated on 12-Mar-2020 582 Views

In SAP HANA, a maximum number of tables in a schema are 131072. To create a table, you have to right click on Schema name → New Table

Read More

Using an Analytic Privilege for specific time in SAP HANA

SAP Expert
SAP Expert
Updated on 12-Mar-2020 196 Views

Yes, when an Analytic Privilege is defined you have an option of using it for a specific time period. You have an option of defining Privilege validity where you can pass validity details.You can also opt for SQL Editor or Dynamic where you can pass different validity conditions. When you use SQL option you can pass a SQL query and it will be set as per SQL queryFor Dynamic option, you can pass Stored Procedure to define validity.

Read More

Adding multiple views in SAP HANA Analytic Privilege

SAP ABAP Expert
SAP ABAP Expert
Updated on 12-Mar-2020 427 Views

Yes, you can define Analytic Privilege for multiple views in a single object. When you add multiple HANA views, you can find all Attributes: Select attributes to assign analytic privileges.

Read More

Consuming Attribute/Analytic view in a Calculation view in SAP HANA

John SAP
John SAP
Updated on 12-Mar-2020 345 Views

You can use Calculation View without Star Join to consume Attribute and Analytic view in SAP HANA. To use these views, you can add Projection node and add the views to the projections.In this, you can see how to create a Calculation view without Star Join. To add Project node, you can simply drag it from the right side.

Read More

Using different Projection options in Calculation view in SAP HANA

SAP Expert
SAP Expert
Updated on 12-Mar-2020 709 Views

When you set data category as CUBE, the default node is aggregation. When you set data category as Dimension, default node is Projection.You can change the Default node by selecting Star Join checkbox.When you finish selection for data category, you get a default node under Scenario pane. Check the below snapshot:

Read More

Hiding specific data in HANA Modeling View

John SAP
John SAP
Updated on 12-Mar-2020 258 Views

Analytic Privileges are used to limit access to HANA Information views. You can assign different types of right to different users on a different component of a View in Analytic Privileges.When it is required that data in the same view should not be accessible to other users who do not have any relevant requirement for that data. This can be performed using Analytic Privileges in HANA.

Read More

Different Nodes option in a Calculation view in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 12-Mar-2020 1K+ Views

In SAP HANA Calculation View, following nodes are available −JoinUnionProjectionAggregationRank

Read More

How to use PowerShell Break with the Label.

Chirag Nagrekar
Chirag Nagrekar
Updated on 12-Mar-2020 948 Views

When the break statement is mentioned with the Label, PowerShell exits to the label instead of exiting the current loop.Example$i = 1 while ($i -lt 10) {    Write-Output "i = $i"    if($i -eq 5){       Write-Output "Break statement executed"       Break :mylable    }    $i++ } Write-Output "Entering to another loop" $j = 1 :mylable while($j -lt 3){    Write-Output "j = $j"    $j++ }Outputi = 1 i = 2 i = 3 i = 4 i = 5 Break statement executed Entering to another loop j = 1 j = 2As you can see in the above example when the value of 5 executed, the block containing label (mylable) is also executed and execution moves to another loop.

Read More

How to use PowerShell Break statement with the Switch command?

Chirag Nagrekar
Chirag Nagrekar
Updated on 12-Mar-2020 501 Views

In Switch command, when the single value passed and if it matches the condition then the loop gets automatically exited but when there are multiple values passed and if the value matches the first condition and if you want to terminate the loop then you can use the Break statement. An example is given below.ExampleSwitch (3,5){    1 {"This is One"}    2 {"This is Two"}    3 {"This is Three"; Break}    4 {"This is Four"}    5 {"This is Five"; Break} }OutputThis is ThreeYou can notice in the above output that second parameter 5 won’t be executed because the 3 has already been executed with the break statement.

Read More
Showing 54561–54570 of 61,297 articles
Advertisements