Seetha has Published 81 Articles

Why we cannot use MySQL DATE data type along with time value?

seetha

seetha

Updated on 28-Jan-2020 09:23:21

120 Views

The default format for MySQL DATE data type is “YYYY-MM-DD” and in this format, there is no possibility to store the time value. Hence, we can say that we cannot use DATE data type along with time value.As we can see in the following example MySQL returns only date value ... Read More

How to define a method in JavaScript?

seetha

seetha

Updated on 07-Jan-2020 08:07:26

455 Views

A method in JavaScript is the action performed on objects. A JavaScript method has a function definition, which is stored as a property value. ExampleLet’s see an example to define a method in JavaScriptLive Demo                             ... Read More

What are JavaScript basics?

seetha

seetha

Updated on 02-Jan-2020 09:54:00

410 Views

JavaScript basics include an overview of JavaScript. JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow a client-side script to interact with the user and make dynamic pages. It is an interpreted programming language with object-oriented ... Read More

How to detect encoding and mixed line endings (Windows and Unix) in SAP?

seetha

seetha

Updated on 12-Dec-2019 06:23:03

304 Views

You can make use of CL_ABAP_FILE_UTILITIES => CHECK_FOR_BOM to define file encoding type and use constantly of class CL_ABAP_CHAR_UTILITIES to process the files.ClassCL_ABAP_CHAR_UTILITIESShort DescriptionUtilities for Processing Characters

Unable to access DBCONN after upgrading to EHP7 in SAP system

seetha

seetha

Updated on 10-Dec-2019 08:56:39

146 Views

You can test the connection using T-code: SE38 using ADBC_TEST_CONNECTION. You could check details of exception as below:TRY. EXEC SQL. CONNECT TO 'ZUNIXDB_DBCON' ENDEXEC. EXEC SQL. OPEN dbcur FOR SELECT id FROM table ENDEXEC. CATCH cx_sy_native_sql_error INTO lr_cx_native_sql_error.Read More

Checking table existence using Class and it’s method in SE11 without using FM in ABAP

seetha

seetha

Updated on 10-Dec-2019 07:19:00

641 Views

To perform this without using Function module, you can use class- “cl_rebf_ddic_tabl”. Note that Class methods are almost similar to function modules. They are defined as code blocks to perform specific functionality.ExampleTry using below code: CALL METHOD cl_rebf_ddic_tabl=>exists EXPORTING    id_name = [table name]    id_tabclass = 'TRANSP' " For table ... Read More

What are event handlers in JavaScript?

seetha

seetha

Updated on 03-Oct-2019 06:24:02

661 Views

JavaScript's interaction with HTML is handled through events that occur when the user or the browser manipulates a page.When the page loads, it is called an event. When the user clicks a button, that click to is an event. Other examples include events like pressing any key, closing a window, ... Read More

What happens to MySQL temporary tables if MySQL session is ended?

seetha

seetha

Updated on 30-Jul-2019 22:30:21

155 Views

Temporary table would be deleted if MySQL session terminates. After login again, on issuing the SELECT command we will find no data available in the database. Even our temporary table will not exist.

What is the native keyword in Java for?

seetha

seetha

Updated on 30-Jul-2019 22:30:21

658 Views

The native keyword is used to declare a method as native. It means that method implementation is present in the different language.

What is the class "class" in Java?

seetha

seetha

Updated on 30-Jul-2019 22:30:20

539 Views

The Java.lang.Class class instance represent classes and interfaces in a running Java application. It has no public constructor. Example Following is the example demonstrates the usage of the class Class. The java.lang.Class.getCanonicalName() method returns the canonical name of the underlying class as defined by the Java Language Specification. It returns ... Read More

Advertisements