the tables are bank_sb_account ,bank_transaction [closed] - oracle

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Show transaction details – SB a/c no., transaction type, date, description and amount, for transaction amounts > 1000. Sort the output based on a/c no, transaction type and date.

The way you described it, that would be something like this:
select sb a/c no., transaction type, description, amount
from some table
where amount > 1000
order by a/c no, transaction type, date
Of course, it won't work, column names can't have those names (at least, some of them), but - you didn't put much effort in question, so don't expect miracle on my side.
Also, what does "solution is not getting accepted" mean?

Related

Use Power BI Slicer to Filter Columns [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I would like to allow users to be able to filter the Power BI bar chart with the following options:
GDP only (see only Country A, B, C GDP data only when GDP is selected on slicer)
Population only
GDP and Population
my current data structure(in excel) looks like this and it gets the job done but the duplication of the "Country" field seems inefficient:
is there a way to achieve the same 3 filtering options without duplicating the "Country" field?
my ideal data structure is:
Try this solution.
First, create an additional table with all your option.
I name this table as "support"
Second create measure
_GDP = CALCULATE(SUM(GDP_Population[GDP]),FILTER(GDP_Population, SELECTEDVALUE('support'[Option]) in {"Both","GDP"}))
_Population = CALCULATE(SUM(GDP_Population[Population]), FILTER(GDP_Population, SELECTEDVALUE('support'[Option]) in {"Both","Population"}))
and put it to your visual

Evaluating a program performance [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I have to develop an ABAP report program. After it's execution, I have to display a popup with evaluating it's performance. It's possible? I mean without using transaction SAT.
The scenario is simple:
1) Run report from se38 or it's using related tcode
2) After running - display the performance.
Please give me any idea how to do that. Thank you.
I assume that you want to measure the runtime of the report.
So, you could easily save the timestamp of the beginning of the program into an variable and when the execution logic finished, you can get another timestamp.
If you subtract timestamp 1 from timestamp 2, you have your running time.
For simple measurements you can you this snippet:
DATA: t1 TYPE i,
t2 TYPE i.
DATA: gt_tabrows TYPE TABLE OF exp_tablrows,
toff TYPE p DECIMALS 2.
GET RUN TIME FIELD t1.
SELECT tabname
FROM dd02l
INTO CORRESPONDING FIELDS OF TABLE gt_tabrows
WHERE tabname LIKE 'Y%'.
CALL FUNCTION 'EM_GET_NUMBER_OF_ENTRIES'
TABLES
it_tables = gt_tabrows.
GET RUN TIME FIELD t2.
toff = t2 - t1.
cl_demo_output=>new( )->begin_section(
|Y tables recordcount calculation:|
)->write_text(
| { toff } microseconds|
)->write_data( gt_tabrows )->display( ).
This sample outputs runtime of code calculating recordcounts of tables that start with Y.
If you run your programm in backgroup, the job-log gives you all your needed information.

BI publisher sorting ascii characters (lower case and ignore uppercase in sort) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am trying to sort descr fields in BIP rtf template, and this is how I was able to sort it using the command :
DESCR:
AVPFinance,
Academic Advising,
Accounts Payable,
Alumni Services,
Anthropology,
Architectural
I want my sorting to push AVP finance to the end in the following order:
Academic Advising,
Accounts Payable,
Alumni Services,
Anthropology,
Architectural,
AVPFinance
Is there a way to do it BI Publisher? as I can't edit the query or the xml to do that.
Thanks
BI Publisher sorts uppercase prior to lowercase. So "Z" would before "a".
You can convert it to uppercase first, that will remove the problem.
This will sort by DESCR after converting everything to uppercase:
<?sort:(xdoxslt:convert_case(DESCR,'UPPER'));'ascending';data-type='text'?>
You may have to go into the Advanced properties to do something more advanced like this.

BI Analysis report containing 'UNKNOWN' member in dimension [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
My analysis report showing a unknown member with the dimension.
I verified with the columns not null or blank. Still having.
Please help.
Thanks,
http://www.bidn.com/blogs/DevinKnight/ssis/1419/ssas-%E2%80%93-hiding-unknown-member
This is I got to hide the unknown member data of dimension, but still won't get the unknown data.
Better than before, to hide the data from report.

Displaying 4 products per row instead of 3 [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
Magneto 1.5
Some default features in Magent just do not make any damn sense to me.
Take a look at the following image:
http://i.imgur.com/PBpGv.png
Why would I want an empty column on every row? It looks so bad and from what I've been Googling it seems quite troublesome to fix. This of course being in the older versions, I cannot find anything for Magento 1.5
Could anyone explain to me how to fill out the columns nicely?
Thanks in advance :)
You can determine the column count through layout/catalog.xml
Find the line that looks like this:
<action method="setColumnCount"><columns>4</columns></action>
Change the value of <columns></columns> to add/subtract columns.

Resources