Check Background Jobs in SAP System Using T-Code SM37

Paul Richard
Updated on 12-Jun-2020 12:45:29

788 Views

In SM37 you can only see the scheduled background jobs as it is not used for foreground jobs. Below shows an initial screen of SM37 Transaction code:

Add Emphasis to Paragraph with Bootstrap

Arjun Thakur
Updated on 12-Jun-2020 12:45:20

342 Views

The lead class in Bootstrap is used to add emphasis to a paragraph.You can try to run the following code to implement the lead class in Bootstrap −ExampleLive Demo           Bootstrap lead class                                       Heading Two       This is an example paragraph demonstrating the use of lead body copy.          

Indicate Dangerous Action in Bootstrap Table Row or Cell

George John
Updated on 12-Jun-2020 12:42:43

203 Views

To indicate a dangerous action to a particular table row or cell with Bootstrap, use the .danger class. You can try to run the following code to implement the .danger class −ExampleLive Demo           Bootstrap Table                                                                                         Subject                   Marks                   Type                                                                           Java                   90                   Programming Language                                                   PHP                   92                   Scrpting Language                                                   jQuery                   80                   JavaScript Library                                                

Viewing Field Names or Table Names of Forms in SAP Business One

Jai Janardhan
Updated on 12-Jun-2020 12:42:05

1K+ Views

It is possible that the older version of SAP B1 may not show you all the fields of all the forms. If you have the latest version, you should be able to see the data sources that are mapped to given field. You need to open the forms in SAP Business One Studio. There are a couple of methods to view fields. 1. In SAP Business One, go to TOOLS => select SAP B1 studio suite=>edit active form for Microsoft  visual studio. This will open up the form in edit mode for Microsoft visual studio.2. You can directly use the Microsoft ... Read More

Select Element by Class Name Using jQuery

David Meador
Updated on 12-Jun-2020 12:40:18

884 Views

The element class selector selects all the elements which match with the given class of the elements. Use the css() method to change the background color.You can try to run the following code to learn how to select an element by its class name using jQuery:Live Demo           jQuery Selector                          $(document).ready(function() {             $(".big").css("background-color", "yellow");          });                                  This is first division of the DOM.                      This is second division of the DOM.                      This is third division of the DOM              

Make Definition List with Bootstrap

Ankith Reddy
Updated on 12-Jun-2020 12:40:11

1K+ Views

For definition list in Bootstrap, you can try to run the following code −Example Live Demo           Bootstrap lists                                       Lists       Definition List                Description 1          Item 1          Description 2          Item 2             Fruits (Ordered List)                Kiwi          Apple          Mango             Vegetables (UnOrdered List)                Tomato          Brinjal          Broccoli          

Learning about SAP ABAP CDS Views

Sravani S
Updated on 12-Jun-2020 12:38:57

4K+ Views

First thing, whether it is CDS or ABAP or anything pertaining to SAP, you can always find free courses on  https://open.sap.com/  referred as Open SAP. Besides this, there are lot of free help as well just Google it and the result list is huge.There are various self-learning tutorials site that provides free study material with use cases that can also be referred - https://www.tutorialspoint.com/sap_abap/

List Unstyled Class in Bootstrap

Arjun Thakur
Updated on 12-Jun-2020 12:35:10

10K+ Views

For unstyled list in Bootstrap, use the list-unstyled class.You can try to run the following code to implement the list-unstyled class −Example Live Demo           Bootstrap lists                                       Lists       Definition List       Unstyled List                Item 1          Item 2          Item 3          Item 4             Vegetables (UnOrdered List)                Tomato          Brinjal          Broccoli          

Select Element with Multiple Classes in jQuery

David Meador
Updated on 12-Jun-2020 12:31:14

734 Views

To select an element with multiple classes, do the following. Here, x, y, and z are our classes,$('.x.y.z')You can try to run the following code to learn how to select an element with multiple classes in jQuery:Live Demo           jQuery Selector Example                          $(document).ready(function() {             $(".one.two").css("background-color", "grey");          });                                  This is first division of the DOM.                      This is third division of the DOM              

Connect to SAP HANA using ODBC in PHP

Kumar Varma
Updated on 12-Jun-2020 12:30:18

786 Views

The error you are getting is because there is no ODBC drivers installed for your PHP client. You would require downloading the drivers from any site on the internet. Following steps can be performed to download the drivers: Download the drivers from https://www.easysoft.com/cgi-bin/account/login.cgi after registration or alternatively check the ODBC-ODBC Bridge Client platformshttp://www.easysoft.com/products/data_access/odbc_odbc_bridge/index.html#platforms).This allows you to access drivers on a remote machine.   2. Install the drivers on the machine where PHP is installed.    3.  Refer to instructions at https://www.easysoft.com/products/data_access/odbc-sql-server-driver/manual/sql-server-toc.html to check the environmental variables what values to be set up for LD_LIBRARY_PATH, LIBPATH, LD_RUN_PATH, SHLIB_PATH depending on the driver, platform and linker.Read More

Advertisements