Elimination of unit name in Query

Hello,
when I create the Query where in colums are key figures I always also unit name e.g. EUR for currency, or H for hour. I can only remove this to the top of the column, but I can´t eliminate completely.
Do you have some advices?
Thanks
Petr

Hi
Create a new forumla
under data functions select the no dimensions NODIM option
insert the keyfigure for which unit should not be displayed
Now it will not display the units in the report.
Regards
RaM

Similar Messages

  • How to reference Report level program unit in report query?

    I have created a report level function FREF13 which returns a VARCHAR2 variable. I am trying to reference this function in report SQL statement like:
    select * from wtr where file_ref = FREF13(:fref)
    I am getting error 'ORA-00904: Invalid column name' error. This is because it is unable to recognize FREF13 as local function.
    Is it possible to reference local program units in report query?
    Rgds,
    Manish

    No, it's not possible. The only things you can reference in a SQL query are columns and functions accessable in the database (since this is where the query is executed). You should create the function in the database.
    Regards,
    Danny

  • Is it possible to display in a front panel indicator the units name (for instance, N "Newtons" or ºC) from a virtual channel that you previously defined using MAX?

    If possible, how can I do it?
    Thanks in advance With LabVIEW 6 it is clear that we can display the DAQ channel name of previously defined virtual channels, so it seems to be possible that we would be able to access to other information defined in MAX as channel units name...
    Thanks

    Yes it is possible.
    Locate the LLB:
    LV folder\vi.lib\daq\dqchnutl.llb
    There you find useful vis to handle virtual channel.
    The Get DAQ ChannelNames.vi return also the channel units

  • How to find the name of query for a given report

    Hi All,
    I am having the name of a report and i need to find out the name of query for that report . Plz tell me how to find out the name of the query for a given report.
    Thanks.
    Regards,
    Pooja Joshi.

    Use this FM
    RSAQ_DECODE_REPORT_NAME
    This FM takes program name as I/P and gives Query Name as O/P.
    This FM uses the structure AQADEF to fetch the data.
    Hope this helps.
    Regards
    Vinayak

  • Dynamic alias name in query

    Is it possible to use dynamic alias name in query for interactive report?
    I have this SELECT and I would like to use the parameters used in alias request to build a dynamic crosstab report:
    SELECT p.annee AS "Année", p.desc_rls AS "RLS",
    SUM(CASE WHEN p.age BETWEEN :P2_AGE1 AND :P2_AGE2 THEN p.pop END) "0-4 ANS",
    SUM(CASE WHEN p.age BETWEEN :P2_AGE3 AND :P2_AGE4 THEN p.pop END) "5-9 ANS",
    SUM(CASE WHEN p.age BETWEEN :P2_AGE5 AND :P2_AGE6 THEN p.pop END) "10-14 ANS"
    FROM pop_rls_isq_111 p
    GROUP BY ROLLUP(p.annee, p.desc_rls);
    Instead of coding "0-4 ANS" as alias, I would like for example use the parameters ":P2_AGE1 - :P2_AGE2 ANS".

    Hi,
    to make your column headings dynamic you can use the substitution syntax in the "Column Heading" property of your IR columns. For example:
    &P2_AGE1. - &P2_AGE2. ANSHope that helps
    Patrick
    My blog: http://www.oracleapex.info/
    New Check out the Oracle APEX Essentials!

  • How to Hide Unit Currency in Query Display

    Hi to all,
    I have created Query for Receivables .
    wheher i am using 0FI_AR_4 as datasource and 0CREDIT_LC as Credit amount in local currency and using 0CREDIT_LC at query level as Key Figure.
    Now when i display Query in RSRT or PORTAL ,  0CREDIT_LC is display with Unit Currency.
    example      ;
                                 2100 INR              3500 INR         2300 INR
    I need that only value should display not Unit Currency at query level.
    example      ;
                                 2100             3500         2300
    Please can nay one help we with that.
    I shall be thankful to you for this.
    Regards
    Pavneet Rana

    Hi,
    Please create a calculated key figure and use the function NODIM
    so you have will have a new calculated key figure = NODIM ( cube key figures)
    Note - this will be fixed for this query.. you will not be able to change it at the report level... units can only be seen if you remove the NODIM

  • Unit Conversion in Query Designer

    Hi All,
    In one of my report, i have to show the gross weight in column against material which i am reading from material master.
    Now the weight is stored in two different unit's KG & G.
    But i have to show the weight finally in KG.
    Does any body has any idea of performing unit conversion at Query level i.e. in Query Designer.
    Thanks.

    Rakesh the same i am doing, that is reading the weight value from material master through formula variable using replacement path.
    Now when i create a key figure like this, there is a tab of 'Conversion' in that there is mentioned the 'Unit conversion'
    In there, there are 2 options
    1. Conversion type - this is a drop down but with no vlaue
    2. Target Unit - Where i selected KG.
    But output remains the same, i.e. in KG.
    M I missing something ?

  • Fetch the operating unit name based on the country name

    Hi all,
    I want to fetch the operating unit name based on the country name, there is no link between fnd_territories(_tl) and hr_all_organization_unis(_tl) tables.
    Can any one know how to get this thing.
    any help or idea is appreciable.
    Thanks,
    Giri

    Giri,
    I don't think you will find such a link. One country can be used by multiple operating units.
    Hope this helps,
    Sandeep Gandhi

  • Get period name on query to use it in report

    i want get period name on query to use it in report
    the query
    get period name on query to use it in report
    SELECT itm.item_number item_no,
    itm.description item_desc1,
    mtl.organization_code,
    cpt.cost_cmpntcls_code,
    cpt.cost_cmpntcls_desc,
    adj.cost_analysis_code,
    adj.adjust_qty,
    adj.adjust_qty_uom,
    adj.adjust_cost,
    adj.reason_code,
    rsn.reason_desc,
    adj.organization_id,
    adj.period_id,
    adj.cost_type_id
    FROM cm_adjs_dtl adj,
    mtl_item_flexfields itm,
    cm_cmpt_mst cpt,
    cm_reas_cds rsn,
    mtl_parameters mtl
    WHERE adj.inventory_item_id = itm.inventory_item_id
    AND adj.organization_id = itm.organization_id
    AND adj.cost_cmpntcls_id = cpt.cost_cmpntcls_id
    AND adj.reason_code = rsn.reason_code
    AND adj.organization_id = mtl.organization_id
    /* AND adj.period_id = :period_id
    AND adj.cost_type_id = :p_cost_type_id */
    AND adj.delete_mark = 0
    AND adj.reason_code = 'ADJ'
    and adj.cost_analysis_code = 'EXP'

    See Link between mtl_material_transactions,org_acct_periods, gl_period_statues
    Hope this answers your question,
    Sandeep Gandhi

  • Duplicate persistence unit name in war

    Hi!
    I am using weblogic 10.3.
    I am trying to deploy a spring web application with two jars, that contain jpa entities with a persistence.xml. The persistence unit name in both persistence.xml is equal. That is for spring no problem, because i wrote a PersistenceUnitManager, that merges both persistence units into one.
    So far so good. But weblogic cant't deploy the war, because while validation of the deployment, wls throws an exception, that there are two persistence unit with the same name.
    Does anybody has an idea how to deploy this war?
    Can i switch off the validation of the persistence.xml?

    Thanks for the response James.
    I'm using hibernate as my JPA provider. I'm not sure if weblogic is first loading it's own jpa implementation and management, and getting confused with mine. How could I check this ?
    I did however create a weblogic.xml in my web-inf folder, with the following property
    <weblogic-web-app>
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Here is the full stack trace:
    Hi!
    I am using weblogic 10.3.
    I am trying to deploy a spring web application with two jars, that contain jpa entities with a persistence.xml. The persistence unit name in both persistence.xml is equal. That is for spring no problem, because i wrote a PersistenceUnitManager, that merges both persistence units into one.
    So far so good. But weblogic cant't deploy the war, because while validation of the deployment, wls throws an exception, that there are two persistence unit with the same name.
    Does anybody has an idea how to deploy this war?
    Can i switch off the validation of the persistence.xml?
    Any ideas ?
    Thanks,
    John

  • Creation of Product :technical abbreviation of the software unit name

    Hi All,
       I am trying to create a new SWCV in SLD and after entering the initial product name,version and vendor , Iam asked to
    "Enter the technical abbreviation of the software unit name"
    I further see that this gets listed as "Software unit".
    Whats the importance of this field and also what would be the typical values ?
    Thanks in advance!
    vittal

    Thanks Prateek,
       Did you mean by "Technical abbreviation " same as the SWC or the SW Product ? Cos SW Product is collection of SWC ?
    I have given Technical abbreviation as SWC itelf.. BUt When I see the various software unit in the ProductA ,  I find 2 entries even though I have created only one.
    1.ProductA : (default )
    2.ProductA: SWC (this is one i have created )
    Kindly clarify?
    regards
    Vittal
    Edited by: Vittal Navale on Nov 4, 2008 11:10 AM

  • How can I related Query name with Query elements?

    Hello gurus!
    I am working with BI7, content technical, well I need to find out a solution where I can related Query name with query elements (KYF, CKY, Restricted Key Figures, var, etc)
    In master data 0tctquery, exist the query element, but, I can not related with object are from what query...
    Do you know how I can do it??? some solution???
    Best Regards

    "it is impossible to relate both tables" ???
    hmmm... these are exactly the tables the Query Designer uses to "build" up the query... so trust me, they do relate
    now to get this information in an InfoCube is a totally different thing... how do you expect to report on this if you should get it in an InfoCube? let's take a simple example... assume you have a query (QUERY_1) which looks like:
                                      Sales  Sales
    Sales Org Customer    Qty      Value
    1000         ABC           10 PC  500 €
    1000         DEF             5 PC  250 €
    in your Cube you would get:
    QueryName  QueryElement
    QUERY_1    0SALESORG
    QUERY_1    0CUSTOMER
    QUERY_1    ZSLSQTY
    QUERY_1    ZSLSVAL
    if you have free characteristics, you'll add more lines... same for variables, CKFs, RKFs, conditions, ...
    I guess it would be better to create a little ABAP report using the above tables (oh, you'll be needing a lot more tables if you wish more detail)

  • Show unit results in query

    Hello,
    I have a requirement where I need to show the results of units in the query. The query result would have multiple units like KG, EA, LB.
    But I would want to have the result of each unit at the end. Is this possible in anyway. It should something look like
    Material     Qty
    1111          10 KG
    1230           20KG
    1222           20 LB
    1232           10 LB
    1343            10 EA
    1232            20 EA
    RESULT      30KG
                      30 LB
                       30 EA
    Thanks,
    KK

    Hi KK
    For this to work unit must be a characteristic that is stored in the infoprovider
    Try creating a structure in the rows with 3 RKF, drag in the unit characteristic a restrict to the following:
    1. Unit restricted to KG
    2. Unit restricted to LB
    3. Unit restricted to EA
    Then under the RKF include the material characteristic, this will give a break down of material by the above unit types.
    Then in the columns include quantity.
    Hope this helps
    Josh

  • Multi Row Selector using Generic Column Names (parse query at runtime only)

    Hi,
    I created a tabular report which had a multi row select in it - got the deleting working fine.
    Am now creating a second tabular report, but because of the SQL:
    select
    "ID",
    "ID" ID_DISPLAY,
    "RESNUMBER",
    "RESDESCRIPTION",
    decode(RESTYPE,'R','Right Party','W','Wrong Party'),
    decode(DMCFLAG,'Y','Yes','N','No'),
    decode(SALEFLAG,'Y','Yes','N','No')
    from "CALL_RESULTS"
    I have to select the option Use Generic Column Names (parse query at runtime only) otherwise I cannot save the form.
    My problem is I am now unable to add a multi row selector to the tabular form. If I do and run the form I get the following error - failed to parse SQL query: ORA-00904: "COL11": invalid identifier. Also when I go back and edit the form the multi row selector has been removed.
    Can anyone tell me why I can't add a row selector like I previously could?
    Regards
    Simon

    Arie,
    I added aliases and to the decode columns, and I can now add a row selector to the form without any problems.
    Thank you very much for your help.
    Regards
    Simon

  • 10.4.8 Server Admin will not generate CSR with unit name containing "/"

    I work in a University and our Computer Store is a reseller for Thawte SSL certs. The "Organizational Unit" that my department was assigned is "Outreach Technology Services/World Campus", but when I try to generate a CSR for one of our Web sites, the Organizational Unit gets truncated to just "Outreach Technology Services" which my reseller won't accept as my Organizational Unit name.
    How can I get around this?
    I am running 10.4.8 Server.

    No the, the gui field is showing the full name "Outreach Technology Services/World Campus" but when I submit the CSR to the department that handles these, they use openssl req -noout -text -in test.csr to view the contents.
    Certificate Request:
    Data:
    Version: 0 (0x0)
    Subject: CN=secure.worldcampus.psu.edu, O=The Pennsylvania State University, OU=Outreach Technology Services/World Campus, C=US, ST=Pennsylvania, L=University Park
    Subject Public Key Info:
    Public Key Algorithm: rsaEncryption
    RSA Public Key: (1024 bit)
    Modulus (1024 bit):
    00:cf:f2:a7:e8:56:38:71:61:af:d1:29:1d:0d:37:
    a5:5f:18:be:01:99:37:0d:db:45:1e:20:89:9f:33:
    ff:be:fe:be:f0:25:b2:c0:44:08:56:d3:71:57:c1:
    1d:87:2d:5e:54:99:07:13:23:58:26:93:e7:06:d2:
    50:5f:b5:15:dc:69:76:09:62:02:39:e1:61:d2:9e:
    3e:a8:ea:20:7a:49:97:eb:a4:ed:80:24:2b:9f:4f:
    39:0e:40:cb:4c:46:0f:e3:5f:2f:73:d5:81:80:ed:
    fa:08:21:5f:c4:a8:84:b1:6a:d8:3e:6b:e3:a3:08:
    7c:77:b0:d0:82:c4:09:35:a7
    Exponent: 65537 (0x10001)
    Attributes:
    a0:00
    Signature Algorithm: sha1WithRSAEncryption
    af:bb:0b:42:43:b1:f0:82:e4:62:c7:f7:cc:eb:8b:1e:56:fa:
    1b:63:db:a4:2e:1c:07:b3:00:ff:fa:42:3b:4a:8c:7c:de:e0:
    1e:f1:87:d7:44:0f:99:99:b6:a1:89:77:93:a4:d0:48:2f:7e:
    d3:5d:95:e6:3e:4e:29:67:36:a4:60:00:17:a2:45:c5:28:87:
    aa:01:5c:bb:20:62:05:09:a5:e5:11:e0:10:b7:96:0e:c1:2e:
    bb:dd:7a:d6:4e:61:8d:d3:ae:41:54:27:8a:3f:d9:ab:bb:37:
    6e:5a:28:f0:7d:a7:ac:cd:37:4f:7c:57:97:14:7e:ad:c0:c7:
    e4:64
    But it looks like that /World Campus is there, so It must be their .cgi that is unable to handle the "/"
    So NEVER MIND. I should have checked the contents first.

Maybe you are looking for

  • Why do I get Missing Parameter Values error from CrystalReportViewer in VS2005

    Post Author: eseidel CA Forum: .NET Hi everyone, I have spent way to much time trying to figure this problem out and am getting no where now. I was hoping someone with more experience in CR for VS2005(I think v.9) and VS2005 may be able to help.  I h

  • OBN not working in portal 'missing Object ID' error

    Hi, We have implemented MSS though the portal, and am having problems with the org profile and position profile firing up via OBN from employee profile. It works fine though NWBC, but for some reason not in the portal. I get an 'missing Object ID' er

  • Why are input-output lights flashing when not in use? Pirated signal?

    I have my airport base station set up to not make itself public (ie. you must type the name of the network and password for it to appear and let you in). However, I noticed the other morning when I got up (in the dark!) that the lights were flashing

  • Am I limited with my ibook G4?

    I have a 1.33 iBook with the Tiger OS. The computer won't die, which is a good thing (sort of). I want to buy an iPhone, but I'm waiting for the one that is rumored to be coming out this summer. I know the iPhone is compatible with my computer, but m

  • How to find if the SQL Reporting services are stand alone or clustered ?

    Hi All, Can any one tell me how do i find if the SQL Reporting services are stand alone or clustered ? As there are no other SQL features installed on the server except for reporting. Is there any GUI or CLI command to check this ? Gautam.75801