Lakshmi Srinivas has Published 260 Articles

HTML5

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 28-Jan-2020 08:31:19

719 Views

Use Mediaplayer of Android for playing audio. You need to call function of Android from JavaScript that you have written in HTML file.WebView wv = (WebView) findViewById(R.id.webview); wv.addJavascriptInterface(new WebAppInterface(this), "Android"); public class WebAppInterface {    Context mContext;    WebAppInterface(Context c) {       mContext = c;    } ... Read More

Is there any way to embed a PDF file into an HTML5 page?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 27-Jan-2020 08:04:10

759 Views

To embed a PDF file in an HTML5 page, use the element.           HTML iframe Tag               HTML5 Tutorial          

How to set the top margin of an element with JavaScript?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 24-Jan-2020 06:37:27

2K+ Views

Use the marginTop property in JavaScript, to set the top margin. Can you try to run the following code to set the top margin of an element with JavaScript?ExampleLive Demo                    #myID {             border: ... Read More

How to add elements to the midpoint of an array in Java?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 19-Dec-2019 08:51:41

291 Views

Apache commons provides a library named org.apache.commons.lang3 and, following is the maven dependency to add library to your project.           org.apache.commons       commons-lang3       3.0     This package provides a class named ArrayUtils. You can add an element at a particular ... Read More

Finding location of uploaded file using SAP GUI_upload

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Dec-2019 07:44:17

878 Views

When you upload a file using the gui_upload function, the file is not uploaded to the Application server. The file is read from presentation layer to an internal table.ExampleFollowing code can be used to call a gui_upload function to read the file to an internet table:lv_filename = p_filebp. CLEAR lt_data_tab. ... Read More

Difference between SAP ECC system and SAP BW system?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 11-Dec-2019 10:17:38

4K+ Views

SAP ECC stands for SAP ERP Central Component (ECC). It is a standout amongst the most perceived resources that SAP has developed. It is an ERP software which comprises in a few modules that give the association’s awesome control over their key business forms.Various modules can speak with each other ... Read More

Explain the module function to split ABAP date?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 11-Dec-2019 09:22:10

430 Views

You can use module function name “MONTH_NAMES_GET” to get the month’s name. The function will take up the language as a parameter; you can pass the desired language as a parameter and get the month’s name. Similarly, we have a function for fetching day name as well. You can use:“RH_GET_DATE_DAYNAME”Read More

Displaying Records with maximum event number for each group in SAP Crystal Reports

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 11-Dec-2019 07:40:46

496 Views

I would suggest using this logic to suppress details if the current record is not the record with the maximum amount for the group.//Suppress Details if the current record is not the record with the maximum amount for the group {Event.Event_no}maximum({Event.Event_no}, {Deal_NO})This will suppress each record except records with the ... Read More

Using SAP Web Service from WSDL file

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 10-Dec-2019 10:26:06

779 Views

As you mentioned, you are integrating the web service in .NET, it’s going to be piece of cake. As Visual studio does most of the configuration part of you with a simple click.Open your project, Click on Add Service Reference. Then specify the WSDL file shared by your client. Click ... Read More

How to install gnome desktop on centos rhel 7 using yum command

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 21-Oct-2019 08:50:46

1K+ Views

GNOME is a totally intuitive and user friendly desktop environment for CentOS and RHEL 7.x based system. The latest version of GNOME Desktops are GNOME 2 to GNOME 3 and the GNOME Shell desktop. Most of the users who prefer traditional desktop environments can get it via GNOME’s classic mode. ... Read More

Advertisements