Seetha has Published 86 Articles

Get all occurrences of the string between any two specific characters in SAP ABAP

seetha

seetha

Updated on 13-Feb-2020 12:26:49

1K+ Views

I usually use REGEX in all such cases as it is faster and easily readable and would recommend the same to you.You can use something similar as the snippet to get your job done.DATA: lv_para TYPE string. lv_para = ' You &are like& kite &flying& in a &hurricane&'. REPLACE ALL ... Read More

Assign image source dynamically in XML View in Fiori app in SAP UI5

seetha

seetha

Updated on 13-Feb-2020 11:30:20

660 Views

Yes, it can be done but you need to compute the dynamic field.Firstly, you need to mention that the binding is complex so change the flag −“data-sap-ui-bindingSyntax="complex" ”. Then have a helper function which can be used for formatting.fnImageFmtr: function(value) {    var imgSrc = "Image" + value;    return imgSrc; ... Read More

While connecting to one MySQL database, how can I see the list of tables of other MySQL database?

seetha

seetha

Updated on 13-Feb-2020 10:16:22

93 Views

With the help of SHOW TABLES From Database_name query, we can see the tables of another database. Here Database_name is the name of the database which we are not using currently. Consider the following example in which we run the query for getting the list of tables in database name ‘tutorial’.mysql> ... Read More

How can we write MySQL handler, in a stored procedure, that use SQLSTATE for default MySQL error and exit the execution?

seetha

seetha

Updated on 12-Feb-2020 07:57:10

393 Views

As we know that whenever an exception occurred in MySQL stored procedure, it is very important to handle it by throwing proper error message because if we do not handle the exception, there would be a chance to fail application with that certain exception in a stored procedure. MySQL provides ... Read More

How can we get the list of MySQL server-side help categories?

seetha

seetha

Updated on 11-Feb-2020 07:58:27

64 Views

We can get the list of MySQL server-side help categories by giving the keyword contents to the help command.mysql> help contents You asked for help about help category: "Contents" For more information, type 'help ', where is one of the following categories:    Account Management    Administration    Compound ... Read More

How can we transfer information between MySQL and data files through command line?

seetha

seetha

Updated on 07-Feb-2020 05:31:01

106 Views

Transferring the information between MySQL and data files mean importing data from data files into our database or exporting data from our database into files. MySQL is having two commands that can be used to import or export data between MySQL and data files through the command line −mysqlimport Actually, mysqlimport ... Read More

Set the text shadow around a text with CSS

seetha

seetha

Updated on 31-Jan-2020 06:26:11

168 Views

The text-shadow property is used to set the text shadow around a text.ExampleYou can try to run the following code to implement text-shadow property:                            Indian is a country in continent Asia.          

Usage of font-family property in CSS

seetha

seetha

Updated on 30-Jan-2020 10:16:40

99 Views

The font-family property is used to change the face of a font. Possible value could be any font family name.                            This text is rendered in either georgia, garamond, or the default serif font          depending on which font you have at your system.          

Repeat the background image with CSS

seetha

seetha

Updated on 30-Jan-2020 09:19:53

249 Views

The background-repeat property is used to control the repetition of an image in the background. You can use no-repeat value for the background-repeat property if you do not want to repeat an image, in this case, the image will display only once:ExampleYou can try to run the following code to learn ... Read More

What are the ways to include style sheet rules in an HTML document

seetha

seetha

Updated on 30-Jan-2020 08:03:17

213 Views

To include stylesheet rules, use the element or style attribute or even external stylesheet using .The element can be used to include an external style sheet file in your HTML document.An external style sheet is a separate text file with .css extension. You define all the Style rules ... Read More

Advertisements