Authorize a New User in SAP

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

451 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

501 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

333 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

479 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

Form a Dynamic Query in SAP ABAP

SAP ABAP Expert
Updated on 12-Jun-2020 09:15:33

927 Views

You can indeed achieve it. You just follow the below steps:Step 1 − Define the input parametersDATA:   table_name  TYPE string VALUE  ‘TABLE’, column_name TYPE string VALUE  'COLBNAME', name_value  TYPE string VALUE  'COLVALUE'Step 2 − Create a table type to hold the output results.DATA:   results TYPE REF TO data, TableType TYPE string FIELD-SYMBOLS TYPE STANDARD TABLEStep3 − Create a dynamic query to fill the table 

Bootstrap Grid Structure

Chandu yadav
Updated on 12-Jun-2020 09:15:29

366 Views

A Grid Structure in Bootstrap looks like this −Example                                    ... ....

Use of JavaScript eval Function

Vrundesha Joshi
Updated on 12-Jun-2020 09:14:50

387 Views

The JavaScript eval() is used to execute an argument. The code gets execute slower when the eval() method is used. It also has security implementations since it has a different scope of execution. In addition, use it to evaluate a string as a JavaScript expression.The eval() method is not suggested to use in JavaScript since it executes slower and improper usage opens your website to injection attacks.ExampleHere’s how you can implement eval() functionLive Demo                    var a = 30;          var b = 12;          var res1 = eval("a * b") + "";          var res2 = eval("5 + 10") + "";          document.write(res1);          document.write(res2);          

Stacked to Horizontal Bootstrap Grid

Ankith Reddy
Updated on 12-Jun-2020 09:12:31

433 Views

The following is an example showing stacked-to-horizontal Bootstrap Grid −Example Live Demo           Bootstrap Example                                          Heading One                                      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do                eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut                enim ad ... Read More

Bootstrap Grid for Medium and Large Devices

Arjun Thakur
Updated on 12-Jun-2020 09:08:27

221 Views

A Bootstrap Grid for medium and large devices is shown in the following example −Example Live Demo           Bootstrap Example                                          Hello, world!                                      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do                   eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut     ... Read More

Usage of Bootstrap Previous Class to Left Align Links

Ankith Reddy
Updated on 12-Jun-2020 09:05:46

123 Views

Use the .previous class in Bootstrap to left align the links. You can try to run the following code to implement the .previous class −Example Live Demo           Bootstrap Example                                 Answers                             ← Older             Newer →              

Advertisements