Prabhas has Published 78 Articles

Read a date filter as input in WEBI report in SAP BO

Prabhas

Prabhas

Updated on 14-Feb-2020 08:03:12

334 Views

Your requirement is one of its kinds but can be achieved. What you can try out is first create a brand new object in the context. Let's say you provided the date as first input and 5 as a weekly slice in the second input. [Date+5]=DATEADD(@prompt('Slice', 'X'{'Day', 'Month', 'Year'}, mono, constrained, persistent), ... Read More

Field not getting save from table to transparent table in SAP

Prabhas

Prabhas

Updated on 13-Feb-2020 12:27:32

194 Views

What I can understand from the problem is not type mismatch but the mismatch in size as defaults are different for each. If you change the size as per your needs, it should work.

Fetch the modified date of table in SAP HANA

Prabhas

Prabhas

Updated on 13-Feb-2020 11:44:58

748 Views

 I think if you would have done some easy research or gone through the available documentation, then you would have got the answer. The reason being you already know the partial answer (SQL example as you said).In SAP HANA database, we have an analogous table “SYS.M_TABLE_STATISTICS”. Just query the table for ... Read More

Specified cast not valid for datetime while using SAP RFC

Prabhas

Prabhas

Updated on 13-Feb-2020 11:16:35

143 Views

I think you better use the ParseExact method available over DateTime type. It should work.Please find the code snippet for reference −string dateFormat = "dd.mm.yyyy hh:mm:tt"; DateTime finalDate = DateTime.ParseExact(argumentDate, dateFormat, CultureInfo.InvariantCulture);

What is the use of escape character () in text file while importing the data from text file to MySQL table?

Prabhas

Prabhas

Updated on 04-Feb-2020 06:14:32

282 Views

Use of escape character (\) would become very essential when we want to insert a comma or any other character between the values of a filed. It can be understood with the help of an example. Suppose we want to import the data from a text file named A.txt, having ... Read More

Convert text to uppercase with CSS

Prabhas

Prabhas

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

2K+ Views

To convert text to uppercase with CSS, use the text-transform property with value uppercase.ExampleYou can try to run the following code to convert text to uppercase:                   Normal Text                Normal Text! This will be in uppercase!          

Which property is used in CSS to control the scrolling of an image in the background?

Prabhas

Prabhas

Updated on 30-Jan-2020 08:56:27

729 Views

To set the scrolling of an image in the background, use the background-attachment property.ExampleYou can try to run the following code to learn how to work with the background-attachment property:                    body {             background-image: ... Read More

Working with Inline CSS

Prabhas

Prabhas

Updated on 30-Jan-2020 08:01:08

261 Views

Associate styles with your HTML document using methods inline CSS and External CSS.You can use style attribute of any HTML element to define inline style rules. These rules will be applied to that element only. Here is the generic syntax:The following is the attribute:AttributeValueDescriptionstylestyle rulesThe value of style attribute is ... Read More

How can we offload the time/date handling in MySQL?

Prabhas

Prabhas

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

144 Views

We can offload the time/date handling to MySQL with the help of DATE_FORMAT() function. The date and time would be offloaded on the basis of format units passed as arguments to the function.For example, when we pass the date format units as arguments to MySQL DATE_FORMAT() function then MySQL offloaded ... Read More

Which punctuation character can be used as the delimiter between MySQL date parts?

Prabhas

Prabhas

Updated on 29-Jan-2020 06:51:13

39 Views

In this matter, MySQL permits us to use a relaxed format to date. We can use any punctuation character between date parts as a delimiter. Some examples are as follows −mysql> Select date ('2016/10/20'); +---------------------+ | date ('2016/10/20') | +---------------------+ | 2016-10-20          | +---------------------+ 1 row ... Read More

Advertisements