Link jQuery from My Local Machine

Alex Onsman
Updated on 12-Jun-2020 07:13:39

4K+ Views

You can add jQuery using CDN or through downloading it on local machine. For Local Installation, download jQuery library on your local machine and include it in your HTML code. The following are the steps:Go to the jQuery website to download the latest version available.Now put downloaded jquery-3.2.1.min.js file in a directory of your website, e.g. /jquery.You can try to run the following code to learn how to link jQuery from local machine:Live Demo           jQuery Example                    $(document).ready(function(){             document.write("Hello, World!");          });                                 Hello        

Handling Exception using JCo 3.0 on JCoContext End

SAP Expert
Updated on 12-Jun-2020 07:11:24

199 Views

As per my understanding, JCoContext.end() method will raise an exception if passed parameter is NULL or you have a bug in JCo. You need to ensure that destination is not null.This method should only be called, if destination is not null i.e.SAP Thread

Place UI5 Code in SAP NetWeaver Server

SAP Expert
Updated on 12-Jun-2020 07:10:41

219 Views

It is possible to deploy code from Eclipse /Web IDE to SAP backend server using ABAP developer tools. This will result a BSP page and you can check that in T-code: SE80.SAP Development Tools

Joining COBK and COEP Table Using Inner Join

SAP Expert
Updated on 12-Jun-2020 07:09:39

562 Views

You can make use of T-Code: SE11 to check what indexes are available for table COEPFor one COEP record that you have the (now) 5 criteria for, navigate to T-Code: SE16 pass the selections and run to check how long it takes.To improve performance, you can also create an additional index in table COEP. You can also run a SQL trace in ST05 to see what indexes are used and if indexes are not improving performance.

Check if a Button is Enabled or Disabled in SAP Application

SAP Expert
Updated on 12-Jun-2020 07:08:35

313 Views

All these methods come under Changeable Property (SapComponent). Refer this link for more details:Changeable Property

Replicating Data from HANA DB to Other HANA System in Real-Time

SAP Expert
Updated on 12-Jun-2020 07:08:04

724 Views

You can also try using SAP Smart data access feature to transfer data in real time. In SAP HANA system, you can use Smart Data Access (SDA) option to replicate data to HANA database from other data sources where you create virtual tables, which are linked to tables in the remote system. You can perform read/write operations on these virtual tables - SELECT, Insert, and Update.Different types of remote systems can be used under Smart Data Access −SAP HANASybaseTeradataApache HadoopOracleTo know more about SAP HANA Smart data access replication, you can refer below SAP documentation:SAP Smart Data Access SAPSAPdocumentationRead More

HTML Canvas fillStyle Property

Arjun Thakur
Updated on 12-Jun-2020 07:04:44

550 Views

The fillStyle() property of the HTML canvas is used to set the color or gradient or pattern for the drawing. The default is #000000. The element allows you to draw graphics on a web page using JavaScript. Every canvas has two elements that describes the height and width of the canvas i.e. height and width respectively.Following is the syntax −ctx.fillStyle=color|gradient|pattern;Above, the values, include −color: The drawing’s fill color, which is a CSS color.gradient: Linear or radial gradient object to fill the drawingpattern: The pattern object to fill the drawing.Let us now see an example to implement the fillStyle() property ... Read More

HTML Canvas clearRect Method

Arjun Thakur
Updated on 12-Jun-2020 06:57:42

1K+ Views

The clearRect() method in HTML canvas is used to clear the pixels in a given rectangle. The element allows you to draw graphics on a web page using JavaScript. Every canvas has two elements that describes the height and width of the canvas i.e. height and width respectively.Following is the syntax −ctx.clearRect(p, q, width, height);Above, p: The x-coordinate of the upper-left corner of the rectangle to clearq: The y-coordinate of the upper-left corner of the rectangle to clearwidth: Width of the rectangle to clearheight: Height of the rectangle to clearLet us now see an example to implement the clearRect() ... Read More

Repetition Operator on List in Python

Rajendra Dharmkar
Updated on 12-Jun-2020 06:19:17

3K+ Views

We are accustomed to using the * symbol to represent multiplication, but when the operand on the left side of the * is a list, it becomes the repetition operator. The repetition operator makes multiple copies of a list and joins them all together. Lists can be created using the repetition operator, *. For example, Examplenumbers = [0] * 5 print numbersOutputThis will give the output −[0, 0, 0, 0, 0][0] is a list with one element, 0.  The repetition operator makes 5 copies of this list and joins them all together into a single list. Another example using multiple ... Read More

Add BCC Recipient in Infoview Publication

SAP Expert
Updated on 12-Jun-2020 06:11:42

183 Views

I am not sure if you are running latest BO server or running older version of BOXI service. BCC option is available in later version of Business Objects.Refer SAP Note: 1369269 - Unable to Schedule reports through BCCSymptom − 'BCC" option not available while scheduling reports to email.     Reproducing the Issue − Schedule a report with destination as email.    Environment − Business Objects Enterprise XI 3.1    Resolution − The ‘BCC’ option is currently not supported by the product.    As per SAP Note: 1626654 - How do you specify a BCC entry when scheduling documents to email?    Reproducing the Issue    Log on to ... Read More

Advertisements