Vanithasree has Published 85 Articles

In MySQL, when VARCHAR data type will use 1-byte and when 2-bytes prefix length along with data?length along with data?

vanithasree

vanithasree

Updated on 28-Jan-2020 09:29:04

73 Views

As we know that in MySQL, VARCHAR values are stored as a 1-byte or 2-byte length prefix plus data. This length prefix points out the number of bytes in the value of data. The data value itself will decide that when VARCHAR data type will use 1-byte and when 2-byte ... Read More

What is onclick event in JavaScript?

vanithasree

vanithasree

Updated on 08-Jan-2020 10:19:53

350 Views

The onClick event is the most frequently used event type, which occurs when a user clicks the left button of the mouse.ExampleYou can put your validation, warning etc., against this event type.Live Demo                                         Click the following button and see result                          

What are the advantages of JavaScript?

vanithasree

vanithasree

Updated on 02-Jan-2020 08:30:11

4K+ Views

JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as a part of the web pages, whose implementation allows a client-side script to interact with a user and to make dynamic pages. It is an interpreted programming language with object-oriented capabilities.Advantages of JavaScript:The advantages of ... Read More

How to create an ALV in docking container in SAP?

vanithasree

vanithasree

Updated on 12-Dec-2019 06:19:59

510 Views

Wa_fieldcat is a structure used as a container for the information that has to be added to t_fieldcat.Following Parameters are passed:                                *  pv_field   TYPE any for Field               ... Read More

Using SAP Tables from C# application - RFC_READ_TABLE

vanithasree

vanithasree

Updated on 10-Dec-2019 09:01:35

467 Views

Many users use RFC_READ_Table as API for generic table access.Joins are not supported in RFC_READ_TABLE - Not correct as you can any time join your application. If you face any issues, you can ask user ABAP developer to create a Function Module.Select * query does not work for most cases ... Read More

How to setup user access limitation on a timely basis in SAP HANA

vanithasree

vanithasree

Updated on 10-Dec-2019 08:44:46

46 Views

I must say, you got a pretty odd scenario of permission retraction but it is feasible.Create a stored procedure with entire onus of activating/deactivating the user or you can say authorize and de-authorize user.Create a batch user with privilege to execute the above-created procedures, Then you can set up a ... Read More

Negation logic in SAP ABAP

vanithasree

vanithasree

Updated on 05-Dec-2019 09:46:16

292 Views

You can use BOOLC to sort out your requirement. It should be like thisVarbool= BOOLC( NOT Logical operation)But be clear in your implementation, as ABAP does not have true bool type. It does not store true or false in bool type rather it stores ‘X’ or ‘’ for true and ... Read More

How to set named cookies in JavaScript?

vanithasree

vanithasree

Updated on 03-Oct-2019 07:29:46

411 Views

To set named cookie in JavaScript, run the following code. It sets a customer name in an input cookie.ExampleLive Demo                                                  Enter name:                    

How to disable JavaScript in Internet Explorer (IE)?

vanithasree

vanithasree

Updated on 30-Sep-2019 07:57:16

204 Views

To disable JavaScript in Internet Explorer (IE), follow the below-given steps:Click the gear icon on the right-hand side:Now, a dialog box will open. Go to Security tab and click Custom level.After reaching the Security Settings, go to Scripting, then Active Scripting.Click Disable to disable JavaScript and press Ok.Now, JavaScript will ... Read More

How to find whether a browser supports JavaScript or not?

vanithasree

vanithasree

Updated on 30-Sep-2019 07:55:38

604 Views

To find whether the browser supports JavaScript or nor, use the tag. The HTML tag is used to handle the browsers, which do recognize tag but do not support scripting. This tag is used to display an alternate text message.Here’s an example,         ... Read More

Advertisements