Setting Prompt precedence

I have set of prompts which are available in BI Query and used in WebI. My problem in WebI is that I am not able to get the prompt order which is set in BI Query.
How I can set the prompt order in WebI if these prompts are created in BI Query.
Thanks
Raghu

In had a similar problem. I didn't saw the variable prompt used in BEX query.
I resolve it moving the BEx filters (and caracteristic) from the "filters" area  to the "free characteristics" area and then the prompt appears to BO Universe and Infoview Prompt .
Some variables used in limited and calculated caracteristcs (in structure) was not visible on BO.
I inserted the caracteristics in Free area and the prompt appears in Universe and Infoview.
I hope it help you,
Hi Andrea.

Similar Messages

  • Set prompt in .cshrc causing startup timeout in 4.3

    In our generic login for csh users, we set the prompt with:
    if ($?prompt) then
    if ($?tcsh) then
    set prompt='%m(%n)\!: '
    else
    set prompt='`uname -n`(`whoami`)\!: '
    endif
    endif
    This works with a console login, an ssh, etc. for Solaris and RHEL systems. If we login to tarantella, we are able to login, but when an X application is started, the connection gui opens and the application will probably timeout. This happens with konsole, with full desktop, etc. If I comment out the section setting the prompt, there are no problems. Has anyone seen this? It seems very strange because the /etc/csh.cshrc sets the prompt without this happening.

    The expect script was looking for typical prompt characters like '$', '%', or '#' followed by one or more spaces. Since you modified your prompt to ':' followed by a space, SGD was having trouble looking for the prompt character.
    So, to answer your question, if you changed the ':' to any one of the typical prompt characters, then it should be ok.

  • Can we set prompts value in Webi to schedule thru JAVA SDK 4.0

    Hi,
    I need to schedule webi report which has prompts.  Can we have schedule webi report with prompts in 4.0.
    I was able set values for prompts and refresh the webi report using documentInstance object. I think we can't use this object for scheduling right?
    Also, I would like set values from LOV.
    Could you please help to find solution.
    Thanks
    Venkat

    Hello Venkat,
    Unfortunately the feature of scheculing a webi reports with prompts have been deprecated from the
    version 4.0 using the enterprise java sdks.
    In XI 3.1, promtsutil class was used for setting prompts while scheduling a webi report using java sdks, which have been deprectaed from 4.0 and there is no replacement for the same in enterprise java sdks.
    However, this feature was re-implemented in the new Restful web services and is availble for BI 4.0 SP6 onwards as far as I am aware of.
    Please refer to the below document for better understanding.
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4sp6_webi_restful_ws_en.pdf
    Also please refer to the forum http://scn.sap.com/community/restful-sdk for any queries related to Restful webservices sdks.
    Thanks,
    Prithvi

  • Setting Prompt Directory path using a string variable?

    So when you define a Prompt you get the form P[promptname.wav] and all is good.  What we want to do is have that prompt name be retrieved from a prompt directory which is defined by a string.   So assume all your prompts have the same numbers like 1001.wav but the actual file is customized based on things like Sales/1001.wav and Marketing/1001.wav   and you want to have a StringValue DirectoryName set the Directory to Sales or Marketing.   The Script does not seem to support setting P["DirectoryName"/1001.wav] where Directory Name is a string variable.    Is there a solution to this other than changing the entire prompt to a string type and dropping the P[] data type entirely?   

    I am working with a similar issue.   It is simple enought to set the Prompt Directory but when it is a variable it seems to have different results.  The attached simple script is used to demonstrate Sam's recommendation.  The XML document is embedded in the script variable, so you dont need to create it.   So the script reaches into the XML document and pulls up the variable strDirectoryName and then adds "/" to it and then sets the strPromptDirectory.   I have done it three ways:  Hard coded, string value for prompt' and prompt data type resolved from string.  As you single step through the script you will find that all values populate appropriately, but only the hard coded play prompt actually plays the prompt.  The other two assemblies fail.  (Clearly it assumes the prompt 10001.wav is in the directory Generic/ if you want to try it).    Written in  Version 8.5 editor.  

  • How to Set Prompt of a Field in OAF using lookup

    Hi Gurus!!
    We have a requirement to change the Prompt of some fields and also have to give the flexibilty to the business user's so that in case if they wants to change the promt of a field in future then they should also be able to change it.
    Is it possible to set the promt of field using lookup. So, that if users want to change it then they can go and change the lookup value .
    If yes, can you please give me an example of this code .
    Please let me know if any alternative approch is there to achive this requirement.
    Any help would be grately appreciated.
    Thanks
    KR

    Hi KR,
    System.out.println(">>>"+pageContext.getMessage("FND", "FND_TEST1", null)); *//displying my custom msg*
    is the message is printing the value,?
    projNum.setPrompt(pageContext.getMessage("FND", "FND_TEST1", null));
    Instead of above can you try with a hardcoded value like,
    make sure projNum is not null, you can just print the value projNum.
    projNum.setPrompt("Test Prompt");
    And one more way you can try is create a VO which will pickup the value from Lookup
    and use dataBinding (PROMPT_ATTR) and set the value.
    You can search the forum for how to use the dataBinding
    Eg.
    OAMessageTextInputBean mTextBean_Y =
    (OAMessageTextInputBean)tbl.findChildRecursive("NU_Y");
    if (mTextBean_Y != null) {
    OADataBoundValueViewObject promptNU_Y =
    new OADataBoundValueViewObject(mTextBean_Y,
    "QuestionName");
    mTextBean_Y.setAttributeValue(oracle.cabo.ui.UIConstants.PROMPT_ATTR,
    promptNU_Y);
    Thanks,
    With regards,
    Kali.
    OSSi.
    Added sample code.

  • Setting prompt value based on another prompt selection

    I have 3 prompts. The first one contains 'Y' and 'N'. The other 2 are for start-date and end-date so the report runs for this date range. I would like the start-date to be set to, say, '01/01/2009' if the user selects 'N' in the first prompt. If the user selects 'Y', the start-date will be set to, say, '02/01/2010'. These values are not dynamic though.
    Please let me know how I can do this.
    Thanks,
    Bhusan

    Sandeep,
    Here is what I did.
    1. The first prompt has 'Y' and 'N' that comes from a database table. So did not have to create these.
    2. The second prompt - Used the following SQL for Show - select (case '@{LegacyVal}{N}' when 'N' then '01/01/2009' when 'Y' then '02/01/2010' end) from SubectArea."Registration Date". I kept "All Choices" checked. In the default to, I selected "All Choices".
    Now when I test this and select any value from the first prompt, the second one does not change. It keeps the All Choices value always. What am I doing wrong here? I went through the earlier posts and tried to follow the steps, but looks like I am not doing the right way.
    Thanks,
    Bhusan

  • Webi report would NOT refresh even after setting prompts and refreshing document instance.

    I am a .NET developer and a newbie to the world of BO I have just written a simple application in C# making use of the BO.NET Enterprise SDK and the ReportEngine.NET SDK to open a WEBI document and export it to Excel.  I have got the whole thing working - starting from establishing the EnterpriseSession, obtaining the reportEngine instance and also opneing the Webi document and exporting it to Excel. 
    The problem is the even after setting a different value for the prompts I ALWAYS get the same report  - for example if I set the Country prompt to India I always get the previous one that was set in the universe (Brazil).  These are not optional prompts and I do refresh the documentInstance after calling "SetPrompts"  Did anyone elase have the same problem with caching?.  Any help would be greatly appreciated.  Please find the snipped of the code attached.

    The link is correct, however you need access to SAP Service Market Place (SMP), which you should have since you are using BOE / BI. If not, ask your BOE / BI administrator to set you up with logon to SMP.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Share Your Knowledge in SCN Topic Spaces

  • Setting Prompt Visual Attribute Group

    Hi,
    i'm trying to set the prompt visual attribute for a text item is the Forms Builder 6i patch 5. The only available choice is default. I'm using a named visual attribute for the text item and it's working just fine.
    thanks.

    Sorry about this one. I've forgot to change the visual attribute type for prompt.
    thanks.

  • Setting prompt colour and weight

    Hi guys,
    Im having an issue I would very much appreciate your help with. I have the code below which I want to change the prompt font to bold and red on a post query trigger hence have coded the code below. However it doesnt seem to be setting the prompt to bold or red. Am I doing something stupid?
         set_item_property('block_name.item_name,prompt_foreground_color,'red');
         set_item_property('block_name.item_name,prompt_font_weight,'BOLD');
    Thanks.

    it isnt a multi-line layout...Then you should use the Set_Item_Property() built-in.
    I tried the code below but got numeric or value error, no data found
    set_item_instance_property('block.item_name,visual_attribute,'PROMPT') You got this error because you didn't include the record_number of the item to modify. Your code should have been:
    set_item_instance_property('block.item_name,CURRENT_RECORD,visual_attribute,'PROMPT')But again, as you are not using a Tabular layout, you don't need to use the Set_Item_Instance_Property().
    Taking a closer look at Visual Attribute (VA) objects, you cannot set the attributes of the Prompt using a VA. Sorry to mislead you on this. :8}
    HamidHelal is right, to set a color you have to use the RGB values. However,
    Prompt_Font_Weight doesn't work...is not accurate. To set the Font Weight you have to use one of the predefined weight variables. They are: FONT_MEDIUM, FONT_ULTRALIGHT, FONT_EXTRALIGHT, FONT_LIGHT, FONT_DEMILIGHT, FONT_DEMIBOLD, FONT_BOLD, FONT_EXTRABOLD, FONT_ULTRABOLD. Search the Forms help on Font Weight Property for more information.
    Try this code:
    -- Set Bold
    set_item_property('block_name.item_name,prompt_font_weight,FONT_BOLD);
    -- Set back to normal.
    set_item_property('block_name.item_name,prompt_font_weight,FONT_NORMAL);Craig...

  • Error when setting prompt as optional

    Hi Gurus of BO.
    I just have started to get my hands on BO and require some assistance.
    I have a requirement to create a report with two filters that should prompt user. One of the filters should be obligate (in this example it is region), and the other should be optional (e.g. the user should be able to see data either on all customers or ane specific customer)
    So? to accomplish this task i created an report and put into the filter of the query my two filters. I first set the filter as obligate - and everything was working fine. But then, when I set the customer filter as optional, my BO started to give me crippy errors:
    A database error occured. The database error text is: Сбой при выполнении запроса MDX SELECT  { [Measures].[Z_CENA], [Measures].[Z_SUMMA], [Measures].[Z_OBEM], [Measures].[Z_NEDO] }  ON COLUMNS , NON EMPTY CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( [Z_POKUP].[LEVEL01].MEMBERS, [Z_GRUPPOL].[LEVEL01].MEMBERS ), [0CALDAY].[LEVEL01].MEMBERS ), [Z_MANAGER].[LEVEL01].MEMBERS ),  { [Z_NOMENKL].[!+0000000027] }  ),  { [Z_REGION].[Белгород], [Z_REGION].[Брянская область] }  ) DIMENSION PROPERTIES MEMBER_NAME, MEMBER_CAPTION ON ROWS FROM [$Z_SALES]  в связи с ошибкой Системная ошибка в программе CL_RSR_HIERARCHY и FORM MEMUNAMS_TO_MEMBERS-01- (обратите вним. на подр. текст). (WIS 10901)
    Did anyone encountered such error? Any help/input will be much appreciated.
    I tried to search for WIS 10901 over the google - with no success
    Thanks
    Dmitry

    I changed the type of filter and  the error message somehow changed -
    A database error occured. The database error text is: Сбой при выполнении запроса MDX SELECT  { [Measures].[Z_CENA], [Measures].[Z_SUMMA], [Measures].[Z_OBEM], [Measures].[Z_NEDO] }  ON COLUMNS , NON EMPTY CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( [Z_POKUP].[LEVEL01].MEMBERS, [Z_GRUPPOL].[LEVEL01].MEMBERS ), [0CALDAY].[LEVEL01].MEMBERS ), [Z_MANAGER].[LEVEL01].MEMBERS ), [Z_NOMENKL].[LEVEL01].MEMBERS ),  { [Z_REGION].[Архангельская область] }  ) DIMENSION PROPERTIES MEMBER_NAME, MEMBER_CAPTION ON ROWS FROM [$Z_SALES]  в связи с ошибкой Значение Архангельская область. (WIS 10901)

  • How to set the precedence of conflicting contact photos

    I have two accounts in my contacts app, one for iCloud (my personal contacts) and one from my employer's CardDav server.
    My problem is that some of my work colleages are also personal friends, with contact records in my iCloud account—and I myself have a contact card in both places.
    In such cases, my Apple Mail app seems to choose which contact photo to display at random (either my carefully selected iCloud account photo, or the boring work account mugshot). Also, the photo displayed for any one individual often changes after a restart—sometime an individual gets their work mugshot, sometimes their nice iCloud photo.
    Strangely, the Messages app always seems to choose my iCloud photos.
    Is there any way to give the iCloud account precidnce for contact photos as displayed in Mail and Messages? If I've gone to the trouble of selecting a photo for someone, I'd like to it to be displayed, even if the CardDav server has an alternative photo.
    Regards,
    J.

    For me its:
    1. Open the phone app and dial *#61# on the Keypad. Press the Call button.
    2. Locate this text on the screen: "Setting Interrogation Succeeded, Voice Call Forwarding, When Unanswered, Forwards to +" and record the 11-digit number after the + symbol.
    3. Touch the Dismiss button. Now enter this code on the Keypad: *61*+ followed by the 11-digit Forwards to number recorded in step 2, followed by *11 and *ringtime#. Ringtime is the number of seconds you want your iPhone to ring before voicemail picks up. Your finished code should look something like this:
    *61*+18555513466*11*30#
    In the example above the ring time is set to 30 seconds. Press the Call button.
    4. You should receive the message: Setting Activation Succeeded. Press Dismiss and next time you receive a call it will ring for the new amount of time before going to voicemail.

  • Set execution precedence for sections on dashboard

    Hi
    I have 1 dashboard prompt and 2 sections placed on a dashboard. When I make a prompt selection and hit the go button, I want the section B to be executed and return results before section A gets executed. Here guided navigation is not being of much use. Can somebody help please

    Do you mean, section A must have a time lag after section B is executed?
    Try this, use Advance filters in reports of section A and choose values to be passed from the columns of reports in section B and make section B reports prompted for values from the dashboard prompt.
    In this case, the order of execution would follow this pattern
    1.You choose value from prompt
    2.Value passed to reports in section B (executed 1st) (not to Section A as its not prompted)
    3.The values of reports in section B is now passed to reports in section A (executed after section B reports are executed completely)
    thus order of execution would be B-->A
    What is the exact thing are you trying to do? please explain.

  • How to set doDML precedence in VO with multiple EOs

    Hi All
    I' developing a web app using jdeveloper 11.1.1.3
    I have 3 EOs with have references each other
    I created a single VO using these 3 EOs
    when I excecute the Commit methos the doDML method in second EO will be called, But I want to get called in first EO's doDML
    Pls tell me how to do this
    Tx
    Padma

    Is the relationship between the EOs defined as composite?
    http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/bcentities.htm#sm0150

  • Setting a Prompt value for KeyDate in WebI on SAP OLAP universe

    I have a webi report which has as its dataprovider a query against an SAP olap universe against a BEx query which has the KeyDate parameter exposed.
    Iu2019d like to get at this prompt from the SDK.
    In infoview if I run the report it pulls up the keydate prompt (a special dialogue which seems to be implemented as part of the connection definition) - this prior to pulling up the full prompts dialogue and showing all universe based @prompt filters.  In WebI I can see the prompt value entered using =UserResponse("dp.kd.value") .   So it does seem to see the keydate as a prompt of some sorts.
    I've got a little jsp that allows me to set prompts very nicely (and packeaged as a jar in the CMC that schedules ok as well) but when I put it against a report with a key date u201Cpromptu201D it just wonu2019t see it.  When I call a getCount() as below it returns 0.
    oDocumentInstance.getDataProviders().generateQueries();     
    Prompts oPrompts = oDocumentInstance.getPrompts();
    out.print(oPrompts.getCount());
    This is all in an attempt to get around the scheduler limitations of key date which would give me two queries, two universes and two reportsu2026 one report for scheduling (using a customer exit to set key date) and a second for user refresh  (with a prompted key date)  which would all be rather messey to say the least!
    So any cunning ideas on how I can get hold of this key date thingymebob in the SDK?
    (ps. "Fixed in V4" would be nice to hear as an aside to thisu2026 In playing with the ramp up Iu2019ve got the same issues however so Iu2019m not to hopefull )
    Thanks!
    Jeremy.

    Hi,
    First I think you have to create a support ticket because normally the object in the universe must be generated with data data type nad it is not the case.
    We are awere of some limitations with data types.
    Secondly, if you want to have users entering date you have to specify date in the prompt data type like this:
    <OPTIONAL><FILTER KEY="[PERIOD SD].[DB Full Date].[DB Full Date]"><CONDITION OPERATORCONDITION="Equal"><CONSTANT CAPTION="@Prompt('Enter Date ','D',,mono,free)"></CONSTANT></CONDITION></FILTER></OPTIONAL>
    Regards
    Didier

  • Setting the command prompt...

    Can anyone tell me what I would use to set the command prompt?
    On HP-UX, I would reset the PS1 variable...
    i.e. PS1="
    \$ID @ \$HOST | \$PWD
    --> "
    On Linux, I would reset it as follows:
    i.e. PS1="
    \u @ \h | \W
    --> "
    Neither of these seems to work here...
    I tried the following, and it give me the correct visual layout, but the values don't change when you change directories:
    i.e. PS1="
    `whoami` @ `uname -n` | `pwd`
    --> "
    Any help would be greatly appreciated...

    Hi,
    Changing Your Command Prompt
    The syntax you use to change your command prompt depends on whether you are using the Bourne,
    Korn or C shell.
    Bourne and Korn Shells
    For the Bourne or Korn shells, you redefine your command prompt with the PS1 command. The
    following are three examples:
    PS1=": "
    PS1="`hostname`: "
    PS1="`hostname`{`id`}}: "
    The first example sets the prompt to a colon (:), followed by a space.
    The second example creates a prompt consisting of your machine name followed by a colon and a
    space.
    The third example sets the prompt to your machine name, followed by your login name in braces
    {}, a colon, and a space.
    Type any of the examples above to change your current command prompt. The prompt will remain until
    you change it again, or logout.
    If you want to make your changes more permanent, add one of the above examples (or a prompt of your
    own creation) to your .profile file. If you do this, the prompt you specify will appear each time you
    login in or start a new shell.
    C Shell
    For the C shell, you personalize your command prompt with the set prompt command. The following
    are three examples:
    set prompt="% "
    set prompt="`hostname`\!: "
    set prompt="`hostname`{`id`}}: "
    The first example sets the prompt to the percent sign, followed by a space.
    The second example creates a prompt consisting of your machine name followed by the history
    number of the command (hostname1, hostname2, hostname3, and so on).
    The third example sets the prompt to your machine name, followed by your login name in braces, a
    colon, and a space.
    Type any of the examples above to change your current command prompt. The prompt will remain until
    you change it again, or logout.
    If you want to make your changes more permanent, add one of the above examples (or a prompt of your
    own creation) to your .cshrc file. If you do this, the prompt you specify will appear each time you login
    in or start a new shell.
    Revert back.
    Thanks.
    Senthilkumar
    SUN - DTS

Maybe you are looking for