Govinda Sai has Published 44 Articles

How can I use 2-digit year value in MySQL DATEDIFF() function?

Govinda Sai

Govinda Sai

Updated on 30-Jan-2020 05:34:10

316 Views

We can use 2-digit year value either in single date expression or in both date expressions used as argument/s in MySQL DATEDIFF() function.For example, the query below is using 2-digit year value in first date expression and other is having 4-digit year value.mysql> Select DATEDIFF('18-10-22', '2017-10-22'); +-----------------------------------+ | DATEDIFF('18-10-22', '2017-10-22') ... Read More

How to display rupee symbol in HTML

Govinda Sai

Govinda Sai

Updated on 29-Jan-2020 10:16:56

2K+ Views

The rupee symbol is the following and not every browser supports it:₹To make it visible on your web page: You can use the following as well:₹

In which format Year(2) or Year(4) MySQL will return the value of year from date ‘0000-00-00’?

Govinda Sai

Govinda Sai

Updated on 29-Jan-2020 05:10:38

201 Views

Suppose if we have stored a date value as ‘0000-00-00’ in MySQL table then on extracting year value from such kind of date, MySQL will return 0. It would not be in either Year(2) or Year(4) format. To understand it we are using the following data from ‘detail_bday’ table −mysql> ... Read More

How to create SVG graphics using JavaScript?

Govinda Sai

Govinda Sai

Updated on 24-Jan-2020 06:52:31

702 Views

All modern browsers support SVG and you can easily create it using JavaScript. Google Chrome and Firefox both support SVG.With JavaScript, create a blank SVG document object model (DOM). Using attributes, create a shape like a circle or a rectangle.var mySvg = "http://www.w3.org/2000/svg"; var myDoc = evt.target.ownerDocument; var myShape ... Read More

Transporting SAP standard text

Govinda Sai

Govinda Sai

Updated on 16-Dec-2019 09:20:04

9K+ Views

STEP 1: Create Standard Text. To create standard text, you have to use T-Code SO10.In next window, pass the Text Name -> Click on CREATE Push Button. This will open a new window where you can save the TEXT.Next step is to create the TRANSPORT REQUEST to transport the TEXT. This ... Read More

Taking backup of schema in SAP HANA

Govinda Sai

Govinda Sai

Updated on 16-Dec-2019 07:50:51

476 Views

It is always recommended to back up your critical systems.ExampleFollowing SQL command can be used to export schema in HANA:EXPORT "SOURCE_SCHEMA_NAME".* AS BINARY INTO '/tmp/DESTINATION SCHEMA NAME' WITH    REPLACE;This can also be directly zipped to Linux as below:tar -czf SOURCE_SCHEMA.tgz /tmp/DESTINATION_SCHEMA/Read More

Using ControlAggregation in SAPUI5

Govinda Sai

Govinda Sai

Updated on 16-Dec-2019 06:40:35

846 Views

“ControlAggregation” refers to the target aggregation to which the mapped view is added.As Specified in the use case below:"routing": {    "config": {       "routerClass": "sap.m.routing.Router",       "viewType": "XML",       "viewPath": "sap.ui.demo.nav.view",       "controlId": "app",       "controlAggregation": "dummy",     ... Read More

Exposing employee master data from SAP HR system using Web Service

Govinda Sai

Govinda Sai

Updated on 11-Dec-2019 06:51:17

1K+ Views

In a general scenario, when you have ICF configured you can expose SAP system business objects and jobs via BAPI. It is very easy to create and expose BAPI as a web service. As there are only few web services for SAP HR module in SAP system however you can ... Read More

\\\Parsing IDoc files to extract information from SAP system

Govinda Sai

Govinda Sai

Updated on 05-Dec-2019 07:24:06

921 Views

There are few third party libraries which can be used to perform this task however they involve some cost however best way here is to use an SAP Connector. SAP Connectors are available for almost all prevalent programming languages like JAVA, C#, Python. You can program against these connectors and read ... Read More

Backward compatibility with HTML5

Govinda Sai

Govinda Sai

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

1K+ Views

HTML5 is designed, as much as possible, to be backward compatible with existing web browsers. New features build on existing features and allow you to provide fallback content for older browsers.It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.The latest versions of Apple ... Read More

Advertisements