How to populate LOV of one prompt based on other prompts w/o cascade

Hello All,
Scenario- There are three prompts in my report.
Source_Prompt1, Source_Prompt2 and Target_Prompt.
There is no direct reletion between Source_Prompt1 and Source_Prompt2.
And user wants Target_Prompt data on selection of these source_prompts.
Is there any way to populate target prompt on selection of source prompt.
Note- This can be implemented by applying cascading between all three prompts fields.
However user dosent want Cascading between source prompts.?
is there any other method except cascading prompt to populate LOV of one prompt based on selection of other prompt values?
Your insights are most welcome.
Amit

I believe the only way to populate LOVs is directly from a database. E.g.; you can not populate it "manually". In your case, you may have to create your own prompt forms and use those.
- Ludek

Similar Messages

  • UIX- How to populate values from one view to the other- JDev10.1.2

    Hi,
    I have an enquiries table shown in a uix page.
    Once a user selects a particular enquiry, some of the details should be passed on to the Student Master table which is on a seperate UIX page.
    Could some one tell me how to achieve this.

    This is way my pages are displaying when i select first row "mady" another page display detail but not showing anything but when i click back navigation it shows that selected row on list page...
    see my code i have posted... i think i missed something....please help me!!

  • HOW TO CREATE PROMPT BASED ON ANOTHER PROMPT IN OBIEE

    HOW TO CREATE PROMPT BASED ON ANOTHER PROMPT IN OBIEE.
    Requiremenst is as follows.
    Year ,Qtr columns in first prompt.Based on selection on these prompts second prompt should display corresponding prompts
    Second prompt will have Month ,Week and Day columns.Second prompt should be hidden and based on first prompt selection second prompt should display with constraint based on first prompt.
    Any help would be highly appriciated!!!

    hi,
    Using Guided navigation it is possible,
    Please refer the below links.
    http://gerardnico.com/wiki/dat/obiee/dashboard_prompt_1_eq_0
    http://businessdecisionsystems.com/blog/?p=448
    Hope this help's
    Thanks,
    Satya

  • Automatically populate fields in jsp documents based on other fields

    hello guys. I have a jsp document
    that has the following
    <af:inputText value="#{bindings.SourceDocumentId.inputValue}"
    label="#{bindings.SourceDocumentId.label}"
    required="#{bindings.SourceDocumentId.mandatory}"
    columns="#{bindings.SourceDocumentId.displayWidth}"
    binding="#{backing_transactions_editTransactions.docId}"
    id="docId">
    <af:validator binding="#{bindings.SourceDocumentId.validator}"/>
    <f:convertNumber groupingUsed="false"
    pattern="#{bindings.SourceDocumentId.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.DocumentName.inputValue}"
    label="#{bindings.DocumentName.label}"
    required="#{bindings.DocumentName.mandatory}"
    columns="#{bindings.DocumentName.displayWidth}"
    binding="#{backing_transactions_editTransactions.docName}"
    id="docName">
    <af:validator binding="#{bindings.DocumentName.validator}"/>
    </af:inputText>
    And I have created the generated the backing beans automatically.
    public class EditTransactions {
    private CoreInputText docId;
    private CoreInputText docName;
    public CoreInputText getDocId() {
    return docId;
    public void setDocName(CoreInputText inputText7) {
    this.docName = inputText7;
    public CoreInputText getDocName() {
    return docName;
    I have a method in appmodule that has this
    public String getDocName(Number docId)
    {String docName;
    return docName
    on the document Id field I have to input a certain docId after I input the docId I have to populate automatically the docName based on the doc Id being given.
    question
    1. how can I set the document name automatically w/out submitting the page ?
    2. how can I use my backing bean to set the docName using the method in my AppModule.?
    Can anyone help me regarding this one.
    Thank in advance
    alvin.

A: automatically populate fields in jsp documents based on other fields

here is what you need to do:
1. Change the definitions for your fields as following
<af:inputText value="#{bindings.SourceDocumentId.inputValue}"
                        label="#{bindings.SourceDocumentId.label}"
                        required="#{bindings.SourceDocumentId.mandatory}"
                        columns="#{bindings.SourceDocumentId.displayWidth}"
                        binding="#{backing_transactions_editTransactions.docId}"
                        id="docId" valueChangeListener="#{backing_transactions_editTransactions.docIdChange}"
autoSubmit="true">
            <af:validator binding="#{bindings.SourceDocumentId.validator}"/>
            <f:convertNumber groupingUsed="false"
                             pattern="#{bindings.SourceDocumentId.format}"/>
          </af:inputText>
          <af:inputText value="#{bindings.DocumentName.inputValue}"
                        label="#{bindings.DocumentName.label}"
                        required="#{bindings.DocumentName.mandatory}"
                        columns="#{bindings.DocumentName.displayWidth}"
                        binding="#{backing_transactions_editTransactions.docName}"
                        id="docName"
partialTriggers="docId">
            <af:validator binding="#{bindings.DocumentName.validator}"/>
          </af:inputText>2. add the followig method to your backing bean:
  public void docIdChange(ValueChangeEvent valueChangeEvent) {
    getDocName().setValue((String)getDocId().getValue() + "suffix");
  }Run your form and enter the value into docId field, then press tab to go to the next field - docName will be populated

here is what you need to do:
1. Change the definitions for your fields as following
<af:inputText value="#{bindings.SourceDocumentId.inputValue}"
                        label="#{bindings.SourceDocumentId.label}"
                        required="#{bindings.SourceDocumentId.mandatory}"
                        columns="#{bindings.SourceDocumentId.displayWidth}"
                        binding="#{backing_transactions_editTransactions.docId}"
                        id="docId" valueChangeListener="#{backing_transactions_editTransactions.docIdChange}"
autoSubmit="true">
            <af:validator binding="#{bindings.SourceDocumentId.validator}"/>
            <f:convertNumber groupingUsed="false"
                             pattern="#{bindings.SourceDocumentId.format}"/>
          </af:inputText>
          <af:inputText value="#{bindings.DocumentName.inputValue}"
                        label="#{bindings.DocumentName.label}"
                        required="#{bindings.DocumentName.mandatory}"
                        columns="#{bindings.DocumentName.displayWidth}"
                        binding="#{backing_transactions_editTransactions.docName}"
                        id="docName"
partialTriggers="docId">
            <af:validator binding="#{bindings.DocumentName.validator}"/>
          </af:inputText>2. add the followig method to your backing bean:
  public void docIdChange(ValueChangeEvent valueChangeEvent) {
    getDocName().setValue((String)getDocId().getValue() + "suffix");
  }Run your form and enter the value into docId field, then press tab to go to the next field - docName will be populated

  • How to pass Data from one form to the other

    Hi all
    Can any one suggest me how to pass data from one form to the other form, which i zoomed from the original one?
    I tried to do this by passing parameter in Event Procedure but i am getting error msg when i am opening the zoomed form.
    If any one of u have any idea, give me a reply
    Thank you
    Suhasini

    If you choose the second alternative you should erase these global variables after the second form is opened
    You can erase the global variable using:
    erase('global_var')
    Greetings,
    Sim

  • Hi. We have two iphones and one Itunes account. How do back up each one without getting the others contacts

    Hi. We have two iphones and one Itunes account. How do back up each one without getting the others contacts and without syncing each phone to each other?

    Welcome to the Apple community.
    Ideally you should each have your own iCloud account, providing you with your own contacts, calendars etc, not doing so will result in exactly what you have experienced. The contacts have likely been lost due to the options you have chosen at the login stage on each device.
    Unless you have the missing contacts in a backup file, they won't be recoverable unfortunately. You can add them manually to the contracts that already exist and continue to share the iCloud account if you wish, but I suggest that you each have your own iCloud account.
    Note, you can each have your own iCloud account, but continue to share an iTunes account for purchases of apps, books, music, TV shows etc etc.

  • How I forward text from one iphone 4 to other, only forward the calls

    how I forward text from one iphone 4 to other, only forward the calls

    you can't forward incoming texts to another phone automatically.

  • Filter Page Prompts based on Dashboard Prompts Presentation Var

    Hey, No one has faced this issue? Can I get some inputs please?
    Hi,
    I have a requirement where in I need to filter the multi-select values in the page prompt, based on the presentation variable that is set by dashboard prompt. Oracle said that its a bug,
    that once a presentation variable is set, we can't use that in SQL, when using multi select. But, I am wondering if anyone has some work around solution for this?
    TO be more clear, here is the explanation.
    I have a dashboard prompt that is selected initially in a page, which sets a presentation variable. Now, in another page, I want to use a multi-select prompt, which take the SQl values that filters based on the presentation variable set initially. But, this is not working. I am not able to filter values when I use the SQl like, "select .. from ..where var = presentation_var."
    If anyone has any workarounds, thats appreciated.
    Thanks.
    Edited by: Chandu.bi on Dec 2, 2010 8:37 AM
    Edited by: Chandu.bi on Dec 2, 2010 11:29 PM

    Sorry, no such functionality, at least not yet.
    Build two dashboards, one for the business users and one for the technical users. Then build a third "cover page" dashboard with two links using the Link or Image object. One link will say "Business Users" the other "Technical Users" and the links will take them to their own dashboard with just the prompts that concern them.
    If you want to bypass the "cover page" idea, you can use Portal Path to direct all business users to the "business" dashboard and the technical staff to the "technical" dashboard based on their login.
    Check this out for how to do this:
    http://obiee101.blogspot.com/2008/06/obiee-directing-user-to-default.html

  • How to show data from one web site to other web site having diffrent domain.

    Dear all,
             i want to show the selected data from one web site to other web site.
    the location of the two web site is geographically seprated (and diffrent domain)
    Please tel me in how many ways it can be accomplished.
    If it can be done using jquery then please tel me the function or procedure to do it.
    Note: ( i have seen the above behavior in many web sites .
    like, i was purchasing some thing but finally declined,
    after that i visited some other web sites to gets some other data on other area
    , and i show my selected items of the first web site  on second website as advertisement.)
    i would like to know how these things are accomplished and how it can be done in asp.net.
    yours sincerely

    Hello,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is about ASP.NET website programming, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I move from one tab to the other?

    I know you can move from one tab to the other with the mouse, but how do you do it with the keyboard

    From the Safari Help menu after searchf for "keyboard':
    Bring the next tab to the front: Control-Tab or Command (⌘)-Shift-[
    Bring the previous tab to the front: Control-Shift-Tab or Command (⌘)-Shift-]

  • How to copy data from one planning area to other planning area

    Hi ,
    I need to copy data from one planning area to other planning area, the MPOS for two planning areas are differant and  here my scenario is one planning area having extra key figures.
    First i need to release forecast data to CIP planning area and then,  i load the data from infocube  to MPS planning area and copy the data from CIP planning area. here both MPS and CIP planning areas having different MPOS .
    Please help me in this. Please give me the stepls i need to follow.
    Thanks in advance.
    Regards,
    Chandu

    Hi,
    You can use the transaction /sapapo/tscopy.
    In this you can configure your source plng area and destination plng area. You also have an option to map your KF. There is no problem if the MPOS are different as long as you are able to map the characteristics between the 2 MPOS.
    Alternatively, you can create an Infocube which shares common ground between the 2 planning areas and extract data from CIP plng area into the infocube and then copy teh data from infocube to MPS plng area using the the transaction /sapapo/tscube.
    Hope this helps.
    Thanks
    Mani Suresh

  • How to move Person from One org.Unit to other

    Hi,
         I want to move a Central Person from One Org.Unit to Other Org.Unit programatically ( through function module ). I am trying to use the FM "OM_CREATE_NEW_RELATIONS" .
    But, it's not working. Can anyone through some light on this ?
    Thanks in Advance..
    Prasad

    Thanks for the reply,
    But, i do not want to delete and then assign.
    I just want to mimic the Drag & Drop option available in PPOMA_BBP.
    In the background system is using a FM "OM_CREATE_NEW_RELATIONS". I am trying to use this FM in similar way . But, it is not moving the CP and Position.
    Thanks,
    Prasad

  • How to push tickets from one solution Manager to other Solution manager

    Hello,,,,alll
    i want to push tickets from one solution manager to other solution mamager. Also the status along with various partnet function to be updated as well.
    i have done lot of rnd over it..weent thru all the spro settings......even had my developers work day in day out....but the output is not satisfactory!!!!!
    is there  any way i can do it only via customizing!!!...no development ....
    Achilles!!!!!

    Hey Shridhar,
    I think you can do this by copy the whole client from one system to another.
    Instead of using the ABAP consultants, get in touch with BASIS consultant to achieve this.
    I have not tried this, but do let me know about it holds for you.
    Reward for usefull answer,
    Regards,
    Anand.

  • How to populate LOV using Runtime values

    Hi!!
    I am using jdeveloper 11.1.1.5
    I had created GlJrnlHd VO as a af:form and GlJrnlLnVO as a af:table I had also created a viewlink between TwoTable
    I have an LOV in GlJrnlLnVO [GjlAcct] When my user clicks the Lov the values in the LOV must be shown using the below queryy
    select * from gllvlacct where glalplant = :plant [This plant must be get from the Runtime i.e., Plant of GlJrnlHd]
    How can i acheive this.,

    Hari,
    There is something not clear in your use case.
    >
    I have an LOV in GlJrnlLnVO [GjlAcct] When my user clicks the Lov the values in the LOV must be shown using the below queryy
    select * from gllvlacct where glalplant = :plant [This plant must be get from the Runtime i.e., Plant of GlJrnlHd]
    >
    Do you mean that once the user try to select from LOV, it should be filtered based on :plant value?
    Does :plant value comes from an attribute in the current row?
    Do you want to change the values in LOV once the :plant value have changed?
    Are you asking about cascade LOV?
    Edited by: M.Jabr on Jan 12, 2012 8:44 AM

  • 11g: How to populate LOV from button click

    Hi,
    I want to populate a LOV when the user clicks a button (no af:inputlistofvalues is used)
    How to do this?
    regards
    Peter

    I was looking something like what you've asked and found a solution for my requirement, it might help ..
    Basically I have a RichInputListOfValues on my page but it is set to invisible and I am using a commandlink to popup the LOV ..
    See the code below..
            RichInputListOfValues lovComp = getPostingTemplate();
            FacesCtrlLOVBinding.ListOfValuesModelImpl lovModel = null;
            lovModel =
                    (FacesCtrlLOVBinding.ListOfValuesModelImpl)lovComp.getModel();
            lovModel.performQuery(lovModel.getQueryDescriptor());
            LaunchPopupEvent e = new LaunchPopupEvent(lovComp);
            e.queue();

  • Maybe you are looking for