Turning Help Mode ON to Add SAP ABAP Explanation Text

SAP ABAP Expert
Updated on 12-Jun-2020 09:44:49

182 Views

Yes it is possible to ON help mode by going to personal settings in portal or you can also set it in associated parameter. To enable it globally, you need to find the application in the Portal Content, there you can find URL Parameter and then try adding HELPMODE=ON.Check out this below link for more details:Explanation Property

Make an Image Responsive with Bootstrap

Arjun Thakur
Updated on 12-Jun-2020 09:43:57

6K+ Views

To make an image responsive in Bootstrap, add a class .img-responsive to the tag. This class applies max-width: 100%; and height: auto; to the image so that it scales nicely to the parent element.The following is how you can simply make an image responsive −Example Live Demo           Bootstrap Example                                    

De-normalization and Analytic Views in SAP HANA

SAP ABAP Expert
Updated on 12-Jun-2020 09:43:43

415 Views

Note that HANA is not for de-normalization however it stores data in columnar format so all aggregations are performed on the fly.You can create multiple views but this will add duplicate data and an extra effort to maintain them. Number of views normally depends on business needs, because views contain data in many aspects so they can be reused. In case you have multiple measures to handle in views, you can create calculation views to get data in your reports.Calculation Views are used to consume other Analytic, Attribute and other Calculation views and base column tables. These are used to ... Read More

Split SAP Smartform Templates

SAP ABAP Expert
Updated on 12-Jun-2020 09:42:45

502 Views

I don’t think what you have mentioned can be achieved using Smart forms. To create template like this, it is not possible to use template concept of Smart Forms.Check out this link and it also cover how to split the contents into separate windows:SAP Documentation

Set Typography and Link Styles in Bootstrap

George John
Updated on 12-Jun-2020 09:39:24

164 Views

Bootstrap sets a basic global display (background), typography, and link styles.Basic Global display − Sets background-color: #fff; on the element.Typography − Uses the @font-family-base, @font-size-base, and @line-height-base attributes as the typographic base.Link styles − Sets the global link color via attribute @link-color and apply link underlines only on :hover.

Leading Bang Syntax in JavaScript Function

Nancy Den
Updated on 12-Jun-2020 09:31:51

206 Views

To execute an anonymous function you need to use the leading bang! or any other symbol −!function(){    // do stuff }();You can also write it like −+function(){    // do stuff }();Even the following is an acceptable syntax −~function(){    // do stuff    return 0; }( );

Error on Creating an Index in SAP HANA

SAP ABAP Expert
Updated on 12-Jun-2020 09:30:41

524 Views

I think if you would have gone through the documentation or gone through the message “column already indexed” carefully, you would have figured out that the index already exists.If the data type of the column is TEXT then HANA by default creates an index on it. What you can do for better performance is change the data type of the column to BLOB.BLOB − stores large amount of Binary data.

Move Data Between Warehouses in SAP MM

SAP ABAP Expert
Updated on 12-Jun-2020 09:29:34

164 Views

You can try using an existing function module “bapi_goodsmvt_create” which will let you do very easily what you require.

Call Multiple JavaScript Functions in Onclick Event

Nishtha Thakur
Updated on 12-Jun-2020 09:29:01

2K+ Views

To call multiple JavaScript functions in on click event, use a semicolon as shown below −onclick="Display1();Display2()"ExampleLive Demo                    function Display1() {             document.write ("Hello there!");          }          function Display2() {             document.write ("Hello World!");          }                     Click the following button to call the function                          

Making RFC Call from COM OLE Object in SAP

SAP ABAP Expert
Updated on 12-Jun-2020 09:28:53

334 Views

To communicate between SAP systems, there is a need to define a mechanism. One of the most common ways is to define Remote Function Call (RFC Connection) between two systems. By creating a trusted RFC connection between two systems, it allows you to create trusted-trusting relationship between systems wherein, you can communicate and exchange information and data.There are different types of trusted RFC connections.Type 3 ConnectionType I ConnectionType T ConnectionTo know more about SAP RFC connection types, you can refer our SAP Basis tutorial link:SAP Basis Remote Function CallLet us come to case mentioned, OLE object with RFC function has ... Read More

Advertisements