BI 7.0 Order of Query front end default value fields

Hello,
I have a ordered the default values in query designer, but when I display the query in bex web analyzer, the order of the dimension variables is not in the same order as I specified in query designer.  It does not appear to be alphanumeric or even based ont the technical name.   How can I control the order of the default values?
Thanks for any information
Lee Lewis

Simply go to the query properties and here you can re-order the charachteristics

Similar Messages

  • 2 Sales order types to post to 2 value fields

    Hi,
    Previously, 2 sales order types ZSA4-samples med. & ZSA5-samples adv. posts to one value field which is VV310 Local mktg mgt.  Business users now requires these sales order types to post to 2 new separate value fields.  
    So,  in Controlling I assigned condition types Z231 VAT Expense & Z232 VAT Exp/Sample FOC to value fields VV230 & VV201 respectively. 
    The SD consultant then changed the ZTHV07 pricing procedure to include these 2 condition types by creating 2 new steps and assigning them to  routines 914 & 915.  I am not sure if I should change these routines.
    ZSA5 sales order type is posting correctly to value field VV201 but ZSA4 is also posting to VV201.  It should post to VV230.
    Thanks to advise if there's any setting whether in SD or CO I should change.
    P.S.
    The following are the other configurations inside the system:
    ZSA4 & ZSA5 sales order types are assigned to D (Sample) document pricing procedure. 
    Pricing procedure ZTHV07 is assigned to document pricing procedure D.
    Thanks and regards,
    Thess

    Let us understand more on your requirement.
    For doc.type ZSA4, you want to have only condition type Z231.  And for doc type ZSA5, you want to have only condition type Z232.  Therefore, each document type will post to COPA to correct value field.
    Well, then if that's the case, I would say your requirement number 914, 915 doesn't work (it's definitely on SD side).  They are developed based on your requirements so I cannot comment since it is not standard routine.

  • SQL query returns varchar - default value type!!!

    On a field in my portal form there is a default value type of 'SQL query returns varchar', where can I put this sql to get a default value from a table?

    Hi again
    I have this code in 'additional pl/sql code' - '...before displaying the page'. But it comes up with an error when I run the form.
    declare
    prop_v varchar2(20);
    group_v varchar2(3);
    el1_v varchar2(3);
    blk varchar2(10) := 'DEFAULT';
    begin
    prop_v := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT', p_attribute_name => 'l_property_p');
    group_v := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT', p_attribute_name => 'l_group_p');
    select element_code
    into el1_v
    from eh_risk_element_detail
    where property_ref = prop_v
    and group_code = group_v
    and line_no = 1;
    p_session.set_value(p_block_name => blk, p_attribute_name => 'L_ELEMENT1_P', p_value => el1_v);
    end;
    Rich

  • Infoset-query-selection-screen-default-values

    Hi All,
    I am having the requirement as I need to put default values in the selecion-screen of the report by using  Infoset query. Let me know the settings required for this.
    I am using SQ01, SQ02, SQ03 T.Codes.
    And I need display  one record only if any field contains mulitple records, for example in the HR-ABAP, field p0105-usrid contains multiple values depending on the subtype.So, I need to display USRID when URSTY = '900'. All these should display by Infoset query only.
    Pls help me in this scenario , its an urgent requirement.I am very much thankful for you for reading my proble, if you will provide some sort of solution, I feel very happy.
    Advance thanks for this .
    Regards,
    Prakash.

    Prakash,
    To default the values on your selection screen, you will need to do some ABAP I guess. (if you do not want to use variant). Open up the infioset in SQ02 and then goto code option for the PNP**** field and then you can code to initialize the selection screen variables. Test with an ABAPer.
    To display multiple records as multiple columns, you will have to create custom fields in infoset, and then go from there. Again see ABAPer.

  • Subtotal value in sales order not coming into the net value field.

    Dear Gurus,
    I am entering two manual conditions in sales order and the total of the two conditions is taking into subtotal step. I want to show that subtotal value into Net Value field(i.e. avilable in the conditions tab).
    I tried number of combinations.
    Please help.

    As taking two pricing conditions, system is deactivating one condition. That's why the net value is considering one pricing condition only.
    to make both active, one pricing condition and the other condition as surcharge with positive value.

  • Select front end printed

    Hi experts
    i wolud execute without dialog a sapscript.
    So when i call the FM 'OPEN_FORM', with parameter i pass:
      itcpo-tddest = 'LOC4'.
      itcpo-tdimmed = 'X'.
      itcpo-rqposname = name of front-end printer.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device   = 'PRINTER'
          dialog   = 'X'
          form     = 'ZBOX_LABEL'
          language = 'I'
          OPTIONS  = itcpo
        IMPORTING
          RESULT   = itcpp
        EXCEPTIONS
          canceled = 1.
    Also with the name of front end printer, the sistem in dialog box, set the default windows printer.
    Anybody can tell me how i can set the value rqposname?
    Thanks in advance
    Marco

    Hi,
    If you want a particular windows printter, you need to define it in the definition of the output device via transaction SPAD in the field Host Printer. So in output device LOC4, set name of front-end printer in field 'Host Printer'.
    Regards,
    Aidan

  • How to use SYSDATE as a default value of a bind variable in a query report?

    Hi,
    I want to use SYSDATE as default value for a bind variable in Query based report.
    I don't see any way to do it, someone helps?
    Thanks a lot.
    Paulo.

    You can aslo use #sysdate directly.
    Hi,
    The way I'm doing in my report is, I have a database function (f_ret_sysdate) with the following code
    create function f_ret_sysdate return varchar2
    begin
    return to_char(sysdate,'mm/dd/yyyy');
    end;
    Now, in the 'Customization Form Display Options' section of the report I'm calling this function as #f_ret_sysdate in the default value field of corresponding bind variable to display SYSDATE with the format.
    Hope this helps!...
    -Krishnamurthy

  • Query to set item default value

    I'm trying to set a default value of an item by using a query. The first thing I tried is setting the source value to be:
    select 'TRDM-R-'||LPAD((MAX(SUBSTR(EXPAND_REQ_ID,8,3))+1),3,'0') EXPAND_REQ_ID FROM BANKSRG.TRDM_REQUIREMENTS;
    with item display type as Text, source type SQL Query. This displayed the value in the form, but did not save to the DB. (I tried all the other display types for text too)
    The next thing I tried (a suggestion for someone else in the forum) was set item display type is Display as Text (based on PL/SQL, does not save state), and the source type is PL/SQL Anonymous Block, with this query:
    for c1 in
    (select LPAD((MAX(SUBSTR(EXPAND_REQ_ID,8,3))+1),3,'0') EXPAND_REQ_ID
    FROM BANKSRG.TRDM_REQUIREMENTS)
    LOOP
    htp.p('TRDM-R-'||C1.EXPAND_REQ_ID);
    EXIT;
    END LOOP;
    but I get this error: Error ERR-9132 Error in PLSQL expression for item default code, item=P2_EXPAND_REQ_ID
    Then I tried the above query in the Default Value section, with the same error.
    I've also tried adding computations, but if i get the value to display, it still won't save to the DB.
    I would greatly appreciate any suggestions!
    Robin

    In case anyone else is new to HTMLDB and needs the answer to this question, I finally figured it out.
    In the Item the Display is Text Field, Source Used is Always..., Source Type Database Column, Source Value EXPAND_REQ_ID, Default Value &P2_EXPAND_REQ_ID., Default Value Type is Static Text...
    Then I created a Before Region computation, type sql Query, entered my query in the computation,
    select Condition Type Value of Item in Expression 1 is NULL, Expression 1 is P2_EXPAND_REQ_ID.
    Not so difficult, it just took a lot of time to try all the options.

  • BW Query variable default value put in Crystal report variable question

    Why BW Query variable default value put in Crystal report variable for BO InfoView to open crystal report.
    I using Analyzer to open bw query,variables had default value ,but crystal report can't had variable default value ,and can't search variable  value.
    pho:
    [http://file.itpub.net/f/e38876ad4f6efb7e73980488e7d71f8d/4ae940e9/day_091029/20091029_2b04da1232144feba180OrB23SNvXtoT.gif/p/1.gif]
    [http://file.itpub.net/f/d93ddfe61e0eaf80429726c61f1a02ff/4ae940e9/day_091029/20091029_3211ffe04bf0302fbab5FRKnbwmH80p7.gif/p/BW_QUERY_Crystal.gif]
    Edited by: flying on Oct 29, 2009 8:20 AM

    I Know what to do .
    but Crystal report date variable value are Garbage characters "###".
    PHO:
    [http://file.itpub.net/f/39a8510104476707ae21c945db93ecba/4ae97949/day_091029/20091029_32dcbb7e7d99141483aesJ9KBJHXN0Kj.gif/p/2.gif]

  • Ssrs parameter default value not showing ,when available values is binded to query dataset

    I have developed a report using sql server data tools for vsiual studio2012 ,i have defined few parameters ,on one of the parameter when available values is binded to a dataset query, the report default value is  not showing in report preview .
    Many Thanks
    Chandra

    Hi Chandra,
    According to your description, you have set the default value for a parameter, but it's not displayed when initially running the report. Right?
    In this scenario, since you have set the available values bind to query, so your default values should be within these available values. If these default values are not within the available values, the default values will be not displayed. So please check
    the default values.
    Reference:
    Add, Change, or Delete Default Values for a Report Parameter (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Design Question: Can I use Rest-CsPoolRegisterState command in order start Front End Service when Quorum is lost and less than 85% of FES are available?

    Hi, 
    Assuming below setup for Enterprise edition Lync 2013
    Single Pool Stretched architecture with 4 FES servers
    Site A Data Center
    Site B Data Center
    FES
    2
    2
    SQL
    1 Primary
    1 Mirror
    Fact: In a situation when we lose network connectivity to Site A DC, and due to less than 50% FES servers, Quorum will be lost and as a result Front End Service will stop after 5 minutes. 
    The question is, would I be able to do a manual intervention by using this command
    Reset-CsPoolRegistrarState –PoolFqdn <pool name fqdn> –ResetType QuorumLossRecovery , and start FES with just 2 FES servers in Site B DC and 1 SQL
    Server?
    The reason I am asking this question is because it is mentioned in one of the Lync manuals that at least 85% of the servers must be available to recover once the Quorum has lost. The same manual also mentions to use above
    mentioned command in order to recover from Quorum Loss despite the fact that the lost FES servers are still not available.
    Thanks in Advance

    Hi,
    In Lync server 2013 Stretched pools are not supported for the Front End, Edge, Mediation, and Director server roles. It need two Lync pools.
    If one pool fail to connect, An administrator can declare an emergency and fail over the pool to the backup pool.  That is done by using the:
    Invoke-CsPoolFailover –PoolFQDN <Pool fqdn> –DisasterMode –Verbose
    More details:
    http://blog.avtex.com/2012/07/26/understanding-lync-2013-server-failover/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information
    found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Front end query writing.

    Hi gurus,
       I know about query designer, Bex analyzer, Bex browser and other related topics such as variables, Conditions and exceptions? But i cant understand what's this Front end query writing or Back end data modelling. Will you plz give me detailed description on this topic, how it should be used  in real time scenario.
    Thanks,
    Sameer.

    Hi Sameer
    If I understand ur question correctly
    <b>query designer, Bex analyzer, Bex browser and other related topics such as variables, Conditions and exceptions?</b> all these are for creating queries and used for generating reports. So these come front end side.
    And abt <b>Back end data modelling</b>, it is modelling thing we do in Adminstrator work bench(RSA1) i.e creating infoobjects, datatargets etc.,
    In real time we will get the data from source system and store it in the data targets and infoobjects we modelled in AWB and then we report on this datatargets.
    So this ETL and modelling part becomes back end and Reporting becomes front end.
    I think it's clear for u now
    Any doubts let me know
    Regards
    Kiran

  • How front end query invoke error message at backend

    Dear all,
    Please help me this out! I'm working on servlets(using Apache server). I'm sending sql statement to (dbaccess) database. If I do a sql statement directly at backend, the db will generate an error message. Now I'm sending the query at front end. When error occurs, the backend doesn't show the error message. I have no idea how to 1) generate the error messages at backend when a sql from front end is executed. 2) And then how the backend send the error message to the frontend.
    If you have any idea, please help me. I greatly appreciate that!
    Regards,
    Grace

    Thanks. Backend means database. But I just wonder why this exception not shown on my webpage. I made it to print out in html file.
    And are you sure that the exception front end caught is the same error message that I get if I run the sql statement at backend directly? Because I'm thinking of ways to make the error message both detail and user friendly to understand.
    What would you think?
    Thanks again!
    Grace

  • SQ01: Creating Front end for a set of query programs

    Hi,
    I need to create a front end to display a set of queries or query programs.
    We can use SQ01 to open all queries, but my task is to create a front end
    and let the users only acccess the queries i want( e.g some 50 queries).
    Using the new front end users should be able to access only these 50 queries.
    Any ideas.
    Thanks,
    Rao

    Hi Rao,
    Assign that particular user group or the role to the infoset of those query using SQ02. In this way they will be able to access those queries.
    Regards,
    Atish

  • LOV query attached to fields from EBS front end

    Can anyone please tell me, is there any way to find the query of dynamically attached LOV to corresponding field from EBS front end without using corresponding .fmb of form. I read posted threads and got the option of trace with binds (for finding the queries of LOV) from Help -> Diagnostics -> Trace ->Trace with Binds -> trc file
    ,But the problem is, it is not specified in the trace file that which field is having which query.
    Or is there any other way regarding this issue
    Versoins are
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.1
    Please correct me if I am wrong
    Regards
    Trupti

    You can open the form using forms builder and get the code.
    How To Bring Up 10G Forms Builder In R12 Environment? [ID 579318.1]
    Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12 [ID 444248.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Can numbers open and view excel files with filters applied?

    Hi - I don't currently have iWork but was considering purchasing it.  I frequently get sent excel files from work (which I view on my iPad 3) that have got filters in the column headings applied and I need to be able to change the dropdown values in

  • PhPMyAdmin and Yahoo webhosting

    I am using Yahoo to host my website and I can not figure out how to connect to Mysql database directly through yahoo. Any ideas? Has anyone been able to connect direct? I do not have MySql or PhPMyAdmin installed on my computer.

  • OBIEE 11g and Weblogic on different Servers

    Hi every Can we install OBIEE 11g on one server and weblogic and another server? How to indicate in obi configuration, that weblogic is on another server? Is there a manual or link that prove it? I appreciate your prompt replies Regards Pedro

  • Java not detected even though installed?

    I'm trying to access a web based VPN client. When I go to the necessary website I get 'Java not detected or installed. Cisco Secure Desktop requires Java to be present and configured on your desktop.' I definitely have Java, so how do I make it detec

  • Question on Migration Assistant

    My new Macbook Pro (13 inch) is arriving in few days. Currently i have a Macbook (Matte Black) which i have been using for 2 years. I wish to migrate all my stuffs to the new Macbook Pro. Once this is done, what happens to all the application and oth