Variables not seen in query properties

Dear friends,
I have a question as below,
I have 10 variables in a report and i have to change the order of this variables. for this when i go to query properties I dont see 2 variables of currency conversion.
Is there any other place where i can find these two missing variables in the report or any other alternate to fix my issue.
Cheers
Nitu

Hello -
I believe I am having the same issue.  I am using a currency conversion type that is set up with variables for currency unit, exchange rate type and date.  The 3 variables show up on the variable screen but they seem to be inserted amongst my regular characteristic variables with no apparent logical order.  It does not appear to be alphabetical by technical name or description.
In Query Properties -> Variable Sequence Tab, they are not listed with the regular variables which I can reorder using this tab. 
I would like to be able to sequence all of the variables -- including those displayed on the variable screen because of the currency conversion type.
Thank you -
Ann

Similar Messages

  • Variable not visible in query designer

    Hello,
    I have 4 variables created for an InfoObject. But for one of my query written on Infoset, under that InfoObject in query designer it only shows me 2 variables.
    Any ideas what is causing the other 2 variables not to be visible?
    Thanks in advance,
    vamsi.

    which type of variables have you created?
    Regards,
    Chandra.

  • Variable not used in query

    HI
    I am making a query in which I am using a variable 'Zfiscper' in calcualting a formula variable. but while running , it displays an error message -  'zfiscper' not BEing used in query.
    Can ne one tell y this msg is comin??

    Hi i know how to use char as a KF in the report but i am asking did use the Fisyear varaible in the formula with replacement path??? It id not possible to do so. Just try to drag that fiscal year variable in the report and excute the querry.
    If not possible by doing so then just drag the fiscal year in the rows. And run the querry.
    Khaja

  • Date Variable not working on Query

    I have a query that is working just fine and returns the correct values. The problem is that no matter what dates I put in, it always returns all records, not the ones from the variable. Can anyone take a look and see what it is I am doing wrong, or why is it that the date variable has no meaning when I run this.
    Here is the query I am using:
    SELECT     '00001' AS 'Co', T0.CardName AS 'Customer', T0.CardCode AS 'Customer #', T0.Address2 AS 'Ship To Address', T3.City AS 'Ship To City', T3.State, T3.ZipCode, T3.Country, T0.DocNum AS 'Invoice Number', SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) + CASE WHEN SUM(T1.VATSum) <> 0 THEN SUM(T1.VATSum) ELSE 0 END AS 'Invoiced amount', SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) AS 'Sale', CASE WHEN (T1.TAXCODE LIKE ('%EX')) THEN SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) ELSE 0 END AS 'Exempt Sales', CASE WHEN (T1.TAXCODE NOT LIKE ('%EX') AND T1.VatPrcnt = 0) THEN SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) ELSE 0 END AS 'Not Taxed', CASE WHEN SUM(T1.VATSum) <> 0 THEN SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) ELSE 0 END AS 'Tax Base', CASE WHEN SUM(T1.VATSum)
    <> 0 THEN SUM(T1.VATSum) ELSE 0 END AS 'Tax', T1.VatPrcnt AS 'Rate', T1.TaxCode AS 'Tax Rate/Area', T2.Name AS 'Tax Area Description', T0.DocDate AS 'GL Date', T0.TaxDate AS 'Document Date',T3.AdresType
    FROM OINV T0
    Inner Join INV1 T1 on T0.DocEntry = T1.DocEntry
    Inner Join OSTC T2 on T1.TaxCode = T2.Code
    Left Outer Join CRD1 T3 on T0.CardCode = T3.CardCode and T0.ShipToCode = T3.address
    Where    (T3.AdresType <> 'b') OR  (T0.ShipToCode = ' ') AND (T0.DocDate >= '[%01]' or isnull('[%01]','')='')
    and (T0.DocDate <= '[%02]'  or isnull('[%02]','')='')
    Group By T0.DocNum, T0.CardCode, T0.CardName, T0.Address2, T1.TaxCode, T0.DocDate, T0.TaxDate, T2.Name, T3.ZipCode, T3.City, T3.State, T3.Country, T1.VATPrcnt, T3.AdresType
    Order By T1.TaxCode, T0.CardName, T3.AdresType
    For Browse

    Hi,
    Try:
    SELECT '00001' AS 'Co',
    T0.CardName AS 'Customer',
    T0.CardCode AS 'Customer #',
    T0.Address2 AS 'Ship To Address',
    T3.City AS 'Ship To City',
    T3.State, T3.ZipCode,
    T3.Country, T0.DocNum AS 'Invoice Number',
    SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) + CASE WHEN SUM(T1.VATSum)!= 0 THEN SUM(T1.VATSum) ELSE 0 END AS 'Invoiced amount',
    SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) AS 'Sale',
    CASE WHEN (T1.TAXCODE LIKE ('%EX')) THEN SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) ELSE 0 END AS 'Exempt Sales',
    CASE WHEN (T1.TAXCODE NOT LIKE ('%EX') AND T1.VatPrcnt = 0) THEN SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) ELSE 0 END AS 'Not Taxed',
    CASE WHEN SUM(T1.VATSum) !=0 THEN SUM(T1.LineTotal * (100 - T0.DiscPrcnt) / 100) ELSE 0 END AS 'Tax Base',
    CASE WHEN SUM(T1.VATSum) !=0 THEN SUM(T1.VATSum) ELSE 0 END AS 'Tax',
    T1.VatPrcnt AS 'Rate',
    T1.TaxCode AS 'Tax Rate/Area',
    T2.Name AS 'Tax Area Description',
    T0.DocDate AS 'GL Date',
    T0.TaxDate AS 'Document Date',
    T3.AdresType
    FROM OINV T0
    Inner Join INV1 T1 on T0.DocEntry = T1.DocEntry
    Inner Join OSTC T2 on T1.TaxCode = T2.Code
    Left Join CRD1 T3 on T0.CardCode = T3.CardCode and T0.ShipToCode = T3.address
    Where ((T3.AdresType != 'b') OR (T0.ShipToCode = ' ')) AND (T0.DocDate >= '[%01\]' or isnull('[%01\]','')='')
    and (T0.DocDate <= '[%02\]' or isnull('[%02\]','')='')
    Group By T0.DocNum, T0.CardCode, T0.CardName, T0.Address2, T1.TaxCode, T0.DocDate, T0.TaxDate, T2.Name, T3.ZipCode, T3.City, T3.State, T3.Country, T1.VATPrcnt, T3.AdresType
    Order By T1.TaxCode, T0.CardName, T3.AdresType
    For Browse
    Thanks,
    Gordon

  • Substitution Variables not seen in FR

    Hi John,
    When i am creating a report in FR, i am not able to see any substitution variables created on the server to select.
    Please let me know if any setting is missed
    Thanks,
    Sravan

    Maybe it is the same issue as :- Can't see Substitution variables in FR Studio
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • [q] variables not seen in WLPI business operation window

    hI,
    I am assigning a java object instance to WLPI variable.
    Then I try to call one of the methods of this Java Object (Using business
    operation)
    but in the Drop Down list in the WLPI I don't see the assigned variable !
    Am I missing something ?
    ( I Use WLPI 2.0 on WL6.0 sp 2 )
    Thanxs,
    Ronen Yaari

    I seem to have answered my own question...
    The problem was fixed when I defined 2 business operations, a GetBusOpInstance
    operation and for example, a PerformSomeProcessing business operation.
    The GetBusOpInstance maps to the constructor in my class file, while the PerformSomeProcessing
    business operation maps to some other public method.
    I am only interested in the PerformSomeProcessing operation, but in order to use
    it, i first need to create an instance of the class, So i explicitly need to call
    GetBusOpInstance to do this (Remember to assign it to a java class).
    Subsequently, this "instance variable" is used to execute the PerformSomeProcessing
    operation.
    This seems quite verbose, but can probably be overcome by using statically defined
    methods. (I need to try this out to confirm it)
    Regards
    "Soteri Panagou" <[email protected]> wrote:
    >
    Hi there
    I have experienced a similar problem. With the business operation in
    my studio
    classpath, i am able to select a workflow variable in the instance variable
    dropdown
    box. However, when i try to run the workflow, i get an exception when
    wlpi attempts
    to run the business operation :
    <<wlpirequest>
    <started>2001-08-09 16:38:24.080</started>
    <requestor>wlpisystem</requestor>
    <templateid>5001</templateid>
    <template-name>test</template-name>
    <templatedefinitionid>4001</templatedefinitionid>
    <instanceid>9008</instanceid>
    <actions>
    <error time="2001-08-09 16:38:26.391">WorkflowException: An error
    occurred
    during exception handler processing.
    Empty instance object for business operation "CreateReply"
    in template
    "test".</error>
    </actions>
    <completed>2001-08-09 16:38:26.393</completed>
    </wlpirequest>>
    It does not seem to have saved the instance variable.
    However when I look at the workflow task, i can see that the instance
    variable
    assignment is still valid.
    What gives?
    Sean Garagan <[email protected]> wrote:
    Hi Ravi,
    This is a known issue with WLI 2.0. The workaround for it is to put
    the
    Java class you are using for your business operation into the classpath
    of
    Studio.
    Hope this helps,
    Sean
    Ravi wrote:
    Hi,
    Can you please elaborate your reply.
    I am also facing the same problem. Instance variable defined is notseen in the
    drop down box. Please help me.
    Thanks,
    Ravi.
    "Sicheng Yu" <[email protected]> wrote:
    Starting from WLPI 2.0, the business operation will do automatic
    type
    filtering on variables that perform business operation, and variables
    that
    to be assigned the result of business operation. This filteringreflects
    WLPI variable casting policy which is documented.
    Please reexamine types of your variables and see if the filteringmakes
    sense to you.
    Sicheng Yu
    "Ronen Yaari" <[email protected]> wrote in message
    news:[email protected]...
    hI,
    I am assigning a java object instance to WLPI variable.
    Then I try to call one of the methods of this Java Object (Using
    business
    operation)
    but in the Drop Down list in the WLPI I don't see the assigned
    variable
    Am I missing something ?
    ( I Use WLPI 2.0 on WL6.0 sp 2 )
    Thanxs,
    Ronen Yaari
    Content-Description: Card for Sean Garagan
    begin:vcard
    n:Garagan;Sean
    tel;cell:(902) 452-1393
    tel;home:(902) 829-3129
    tel;work:(902) 829-3129
    x-mozilla-html:FALSE
    org:BEA Systems Inc.;ECI Division
    adr:;;;;;;
    version:2.1
    email;internet:[email protected]
    title:Senior Software Engineer
    fn:Sean Garagan
    end:vcard

  • Thread : created tablespace not seen wihle querying database

    hi there,
    I have create tablespace but when i queried database it is not showing its existence
    here are steps which i used to create tablespace------
    create tablespace ts_corrupt
    datafile '/PGHProdDB/oradata/paceview/ts_corrupt01.dbf'
    size 10m autoextend on next 5m
    extent management local
    segment space management auto
    tablespace created.
    create user usr_corrupt identified by usr_corrupt
    default tablespace ts_corrupt
    quota unlimited on ts_corrupt
    User created.
    grant connect , resource to usr_corrupt
    Grant succeeded.
    conn usr_corrupt/usr_corrupt
    Connected.
    create table t_corrupt as select * from all_objects
    table created
    but when i query to see the appropriate datafile
    conn / as sysdba
    SQL> select * from v$dbfile;
    FILE#
    NAME
    5
    /PGHProdDB/oradata/paceview/example01.dbf
    4
    /PGHProdDB/oradata/user00.dbf
    3
    /PGHProdDB/oradata/paceview/sysaux.dbf
    FILE#
    NAME
    2
    /PGHProdDB/oradata/paceview/undotbs1.dbf
    1
    /PGHProdDB/oradata/paceview/system.dbf
    and run rman backup-------------
    rman terget /
    RMAN> backup incremental level 1 cumulative database;
    Starting backup at 28-AUG-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=28 devtype=DISK
    channel ORA_DISK_1: starting incremental level 1 datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=/PGHProdDB/oradata/paceview/system.dbf
    input datafile fno=00003 name=/PGHProdDB/oradata/paceview/sysaux.dbf
    input datafile fno=00002 name=/PGHProdDB/oradata/paceview/undotbs1.dbf
    input datafile fno=00004 name=/PGHProdDB/oradata/user00.dbf
    input datafile fno=00005 name=/PGHProdDB/oradata/paceview/example01.dbf
    channel ORA_DISK_1: starting piece 1 at 28-AUG-12
    it is not showing "t_corrupt" tablespace while taking backup
    now problem is arising where is my newly created datafile ?
    thanks
    regards
    Edited by: abdul_ora on Aug 29, 2012 11:08 AM

    i did what you people suggest me---
    mr. Yasir Hashmi     as you asked --
    If it is not in the alert log, oracle has no record of it.
    Are you sure you really created it?
    Create it again and verify it from alert log.so i have created it again and this time its showing in alertlog.
    mr. harry76 as you asked---
    It will be in uppercase in the logfile if it is there?no, not at all i havent find it .
    :There must be 2 databases involved here - and the initial scripts you ran must be against the other database.I am fated that i have run that command on specific database as USER is still exist which i had created.
    Can you recall your command history?history showing me that i corrupted the one of that tablespace(ts_corrupt) block to recover it from recoverblock command
    by the way i know you people are helping me out so much that i learn alot from this kind of mistakes
    thank you for giving me your precious consideration and scarce time :) and need more as my curiosity is increasing
    Edited by: abdul_ora on Aug 28, 2012 4:52 PM

  • Query key Date Variable not working

    Hi Folks -
         I am coming across an issue with which some of you might be able to help me. I have a time dependent master data object which I've marked as a datatarget and have created a report on it. I wanted to give the user an option of specifying the key date and hence have created a variable in the query properties for the key date. This variable is of the type SINGLE VALUE, MANDATORY, USER ENTRY and CAN BE CHANGED DURING QUERY NAVIGATION.
         Now my issue is that even though I enter a specific key date, the query is not pulling the records according to the key date. But instead if I use the option of specifying a particular date (instead of a variable in query properties), the query is running fine!!! Can someone please let me know why this is happening? Why is the query working fine when I mention a single constant value but not when I use a variable? Thanks for your help in advance.

    hi
    This clearly shows your variable is not working fine
    So in RSRT transaction debug using your variable
    See in every step whether the variable is working properly
    Assign points if useful
    Thanks
    N Ganesh

  • BEx variables not showing correct order despite ordering at query level

    Dear Experts,
    I am using a workbook with 2 queries sharing same variables.
    The Queries variable order for display in the popup screen has been re-arranged at Query designer level (query properties > variable sequence). Regenerated queries. Relogin to BEx . Re-run workbook. Same old order.
    Please advise what could be the cause. I am also wondering if this is due to personalisation.
    regards
    Bass

    Hi Bass,
    You mentioned workbook.
    If the query itself also has this problem, it can be a bug as SAP Note 1568815.
    Symptom
    The sequence of the variables in the variable screen is lost.
    You may implement the correction of this note via transaction SNOTE if the SP of your system fits.
    After that, you need to regenerate the query in RSRT.
    Regards,
    Patricia

  • Query on Web , Enhanced menu- Query properties- Transfer button not working

    Hello to all experts,
    When We execute a query from query designer on to the web, if a user wants to go to Enhanced menu->Query properties and select any of the options existing there example "Tabular view, supress zeros ect ect " when he clicks on the button "TRANSFER at the bottom " to transfer his selected options , nothing happens... I have never seen this ? Bw netweaver platform 3.5 highest running patch is SAPKW35012
    Does this have to do with any global query settings where tto look in for these settings? Also if this may help When we open query designer in local view I see that many buttons are inactive "Cell view" "Switch to global " ect and in Web application designer the "VIEW" option is grayed out as well ... Were are these settings maintained? Does anyone have any input , the most inportant being why iis the query properties "TRANSFER" button in Enhanced menu not working, i have seen no note on this
    Thank you
    Ayman

    Hi Andy,
    Nothing happened, meaning that the screen did not move, or the scaling factor was not set? Did you try to do it again?

  • Key Date variable; Interval in query properties for Time Dep. Masterdata

    Hi,
    I've been searching on the forum, and I think I know the answer already, but still I'd like
    to ask you all whether it's possible to create a Key Date Interval variable to be used in the query properties.
    As far as I can see you can only report by a single key date used in the query properties field for time dependant masterdata, but my customer has asked me to investigate the possibility to enter a date range.
    As all masterdata is time dependant I don't see how this would work, but if someone can shine a light on this maybe there is a solution available?
    Thanks for your help.
    M.

    Hi marc
    I understand your problem.
    I had an idea for a workaround.
    If you can create master data compounded with Valid from and Valid to both of these characteristics , how the query is computing
    the keyfigures.
    Every change in valid from or valid to is unique for the system in this case.
    Thanks
    N.Ganesh

  • Object variable not set (Error 91) in Input Enabled query

    Hello,
    I'm having the following issue.  I have created an input enabled query and included it in a planning workbook.  Every time I open the workbook or query, and I got to an input enabled cell, I get the error below:
    Object variable not set (Error 91)
    This client has not used planning workbooks before.  The system is on 7.10 SP10 for Bex Analyzer and SAP Gui 7.10 Patch Level 13. 
    I'm not finding any relevant so far in SDN.  Any help anyone can provide is greatly appreciated.
    Thanks,
    Senthil

    Hello,
    Just wanted to let you all know that this issue has been resolved after updating my SAP Gui to 7.2 Patch Level 4 (Patch Level 5 was causing some other issues so I decided to stay at Level 4).
    Thanks,
    Senthil

  • Embedded SQL query in C - variable not in select list

    Hello everyone,
    I am new to using embedded SQL in C. I have written a query based on some very similar code I have found and I keep getting this error:
    ID: ORA-XXXX
    OVRD:
    TEXT: Oracle Errors Found - Consult Application Development Team
    INFO:
    SQLC: -1007
    GLM: ORA-01007: variable not in select list
    If anyone could help me figure out what I am doing wrong that is causing this error it would be much appreciated. Thanks in advance!
    Here is the query that is generating the error, I have changed the variable names but the syntax is the same:
    SELECT TEMP_TABLE.tble,
    TEMP_TABLE.item_date,
    TEMP_TABLE.item_number,
    TEMP_TABLE.item_id,
    TEMP_TABLE.amount,
    TEMP_TABLE.method
    FROM (
    SELECT 'C' tble,
    item_date,
    item_number,
    item_id,
    amount,
    method
    FROM current
    WHERE (settlement_date IS NULL)
    UNION ALL
    SELECT '1' tble,
    item_date,
    item_number,
    item_id,
    amount,
    method
    FROM prev1
    WHERE (date IS NULL)
    UNION ALL
    SELECT '2' tble,
    item_date,
    item_number,
    item_id,
    amount,
    pay_method
    FROM prev2
    WHERE (date IS NULL)
    UNION ALL
    SELECT '3' tble,
    item_date,
    item_number,
    item_id,
    amount,
    pay_method
    FROM prev3
    WHERE (date IS NULL)
    UNION ALL
    SELECT '4' tble,
    item_date,
    item_number,
    item_id,
    amount,
    method
    FROM prev4
    WHERE (date IS NULL)) TEMP_TABLE
    WHERE (TEMP_TABLE.item_date,
    TEMP_TABLE.item_number,
    TEMP_TABLE.item_id) IN
    (SELECT item_date, item_number, item_id
    FROM item
    WHERE (source, location) IN
    (SELECT source, location
    FROM SOURCE_REF
    WHERE online = 'O'
    AND (source, location) IN
    (SELECT source,
    location
    FROM SOURCE_METHOD_REF
    WHERE type = 'P')))

    Oh yeah I forgot to add that I have tested the query in TOAD and it works just fine so its something to do with embedding it into C I believe.

  • Decimals not seen in the query...

    Hi Guys,
    I have a problem with the query..
    I have loaded a KF with 2 decimal places in the cube.
    But when I run a query created on the cube, the digits after the decimal place are not seen in the query.
    For e.g.  the value of the KF in the cube is 9.85...but in the query, it is seen as 9
    please let me know where do i need to make the changes.
    FYI..the unit of the KF is %. Has this got anything to do with the problem ?
    thanks in advance,
    Punkuj...

    Hi Aby,
    Sorry, i just missed to mention this imp point :
    I had done the operation that you have suggested :
    I am getting the following output :
    In the Cube : 9.85
    in the query ( after the decimal selection) : 9.00
    I hope that clears my problem..
    Thanks..
    Punkuj

  • Defined rule not seen in Properties Panel

    I am a novice, using DW CS5, trying to learn the 1 column liquid, centered, header and footer layout provided.
    The following rule is seen in Code View, as well as in the CSS Panel:
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
      padding: 0;
      margin: 0;
    However, this rule is not available in the Properties Panel, as are the others to apply, e.g. .content.
    I'm sure that the answer is simple, but it eludes me.
    Thanks,
    Sonny
    Mac OS 10.9.5

    Exactly what do you mean by "not available" in the Properties panel?
    Are you looking at the HTML properties or CSS properties inspector?
    And what are you trying to do with the list elements?
    If you're trying to insert a list, use the HTML properties inspector and click on the bullet (unordered list) or numbered (ordered list) icon.
    Nancy O.

Maybe you are looking for