Lakshmi Srinivas has Published 287 Articles

HTML file input control with capture and accept attributes is not working correctly

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 24-Jan-2020 11:18:21

583 Views

Use the accept attribute to set the types of files that the server accepts in HTML. Use the attribute only with .ExampleYou can try to run the following code to work with the accept attribute:              File Upload Box           ... Read More

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

Lakshmi Srinivas

Lakshmi Srinivas

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

1K+ 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 make text italic in HTML?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 09-Jan-2020 08:31:12

17K+ Views

To make text italic in HTML, use the … tag or … tag. Both the tags have the same functioning, but tag is a phrase tag, which renders as emphasized text.Just keep in mind that you can get the same result in HTML with CSS font-style property.ExampleYou can try ... 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

246 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

793 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

380 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

462 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

715 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

Monitor network traffic and bandwidth usage in cent os

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 21-Oct-2019 08:55:27

300 Views

Generally, system administrators check the performance problems and related issues using various monitoring tools. nload is one of the most useful app to monitor network throughput on the command line interface. It is a console application which monitors network traffic and bandwidth usage in real time. It visualizes the traffic ... Read More

Advertisements