Set Typography and Link Styles in Bootstrap

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

148 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

189 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

502 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

157 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

1K+ 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

312 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

Authorize a New User in SAP

SAP ABAP Expert
Updated on 12-Jun-2020 09:27:54

428 Views

Basics things first, even if you are using a trial version but you still need to provide the license information and a developer key.Instead of using a DDIC user, you can try using a BCUSER for your requirement as it is a part of the trial version.You can try to include the SAP_ALL profile for your designated user.SAP_ALL get’s generated automatically whenever you transport authorization objects.You can generate SAP_ALL using report RSUSR406 or transaction SU21. This generates SAP_ALL only in the client where this report is executed. You can generate SAP_ALL using report AGR_REGENERATE_SAP_ALL. This report generates SAP_ALL in all ... Read More

Wrap a Page's Content with Bootstrap

Arjun Thakur
Updated on 12-Jun-2020 09:26:17

481 Views

To wrap a page's content, use the .container class,  ... The following is the .container class in bootstrap.css file: .container{     padding-right: 20px;     padding-left: 20px;     margin-right: auto;     margin-left: auto; }

Table Bordered Class in Bootstrap

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

325 Views

To implement a table-bordered class, you can try to run the following code −Example Live Demo           Bootstrap Table                                                Footballer Rank                                               Footballer                   Rank                   Country                                                                           Messi                   1                   Argentina                                                   Neymar                   2                   Brazil                                                   Ronaldo                   3                   Portugal                                      

Working with Bootstrap Grid System Across Multiple Devices

Arjun Thakur
Updated on 12-Jun-2020 09:22:58

459 Views

Grid systems are used for creating page layouts through a series of rows and columns that house your content.Here's how the Bootstrap grid system worksRows must be placed within a .container class for proper alignment and padding.Use rows to create horizontal groups of columns.Content should be placed within the columns, and only columns may be the immediate children of rows.Predefined grid classes like .row and .col-xs-4 are available for quickly making grid layouts. Fewer mixins can also be used for more semantic layouts.Columns create gutters (gaps between column content) via padding. That padding is offset in rows for the first ... Read More

Advertisements