How do I relate two parameters in concurrent program run

Hey, I'm a kinda new to oracle apps
I have 2 parameters, lets say P_office_id and P_emp_id. What I want is a LOVs in P_office_id and P_emp_id (that one I am done with) and my problem is when I choose some value for P_office_id, the corresponding P_emp_ids should be populated in LOV of P_emp_id.
Somebody help me out. I need it

Hi,
You can define a dependent value set called P_emp_id dependent on the P_office_id using the +:$FLEX$. P_office_id+ along with the SQL which joins the office_id in this profilw in the condition for the emp_id value set.
Karthik

Similar Messages

  • Restrict number of concurrent programs running by one user.

    Hello,
    How can I restrict whole number of concurrent programs running by one user?

    Hi
    I am not sure if I understand the question correctly, but if you are asking what I think you are asking, then you can restrict the number of simultaneous concurrent jobs that a user is allowed to run with this profile option;
    "Concurrent:Active Request Limit"
    I recommend that you set this at the User level and not the Site level since this parameter has caused problems for me in the past (certain types of transactions submit a batch of concurrent jobs, and if all the jobs are not able to start at the same time then the concurrent jobs go into a pending state and never complete. I have not worked out why this happens, so I just stopped restricting the number of concurrent jobs that a user could run).
    Frank

  • How to find the patches for perticular concurrent program

    HI
    How to find the patches for perticular concurrent program. suppose for one concurrent program we create the patch and applied now i want know the which patch applied for perticular concurrent program through back end.
    Thank's

    Query the concurrent program in Sysadmin responsibility.
    Note the concurrent executable.
    Query the concurrent executable in Sysadmin.
    Note the file name.
    If it is a package, open the package in TOAD and note down the file name.
    If it is a report/form, open it in form developer and note down the file name.
    Go to patch find screen in metalink. In the advanced search screen, enter the file name and you will see patches that contain it.
    Hope this answers your question
    Sandeep Gandhi
    Independent Consultant
    513-325-9026

  • How can i Add two parameters to Account Analysis Report  R12?

    Please i need to add two parameters Vendor Name & Currency to Account Analysis Report?

    Dear Helios
    1- I added the two parameters through navigating to concurrent ->Program - > Define
    2 - Modifiy XLAAARPT.xml (Adding paramters and modify the query)
    is this correct?
    Regards,
    Edited by: user565050 on Sep 6, 2012 1:17 AM

  • How to control range of dates in concurrent program parameters

    Hi,
    I have a requirement to show date fields in the concurrent program parameters and I also need a validation as follows:
    TO_date between from_Date and from_Date+30
    Can we achieve this ?
    Any pointers/he is highly helpful as this is quite urgent for us.
    Thanks in Advance.
    regards,
    Mukthi

    Please see if these links help.
    Enabling/disabling DATE parameters of a concurrent program
    http://chandramatta.blogspot.com/2009/11/enablingdisabling-date-parameters-of.html
    Enable/Disable Concurrent program parameter based on Other Parameter
    http://sureshvaishya.blogspot.com/2008/05/disable-concurrent-program-parameter.html
    Thanks,
    Hussein

  • How to add VB porgram in the Concurrent Program Source type

    Hi Everybody,
    We have lot of Scheduled programs in VB. For example fetching data from prod and insert those into data warehouse related table. Similarly we have lot of VB programs
    This is already written in VB and working fine. These are all in the Standalone system. Now the Management wants them to be as a part of the application, so that they can get rid of the stand alone processing.
    They asked me to create a concurrent program and schedule it for each and every scheduled VB programs. We are using oracle apps 11.5.10 and db 9i. I have a little experience in concurrent programme executable and defn for the reports, SQL, PL/SQL and host. I don't have any idea for the VB programs. What type of execution method I can use for my problem.
    Please give me any idea/suggestions.
    Thanks,
    Vimal

    I do not think you can register a VB program as concurrent program -- Re: How can we register a VB Script into Oracle Application as concurrent P
    You may log a SR and confirm this with Oracle Support.
    Thanks,
    Hussein

  • How to use form personalization to lunch concurrent program

    Hi,
    Now I am using the form personalization to lunch a concurrent program with global variables.But how to post the global variables to the program parameters.
    Thanks and best regards
    Fang
    Edited by: 895910 on Dec 25, 2011 7:54 PM

    Hi,
    I have defined global variables using form personalization. But how should i launch a SRS Form to submit a request and pass the variables as parameters. What should the syntax be.
    Thanks and best regards,
    Fang

  • How to create a value sets for concurrent program?

    Hi Friends,
    I am creating a concurrent program with a parameter period...
    In the value set for the parameter period, I am using the following query :
    ---where application_id = 101
    and set_of_books_id = :$PROFILES$.gl_set_of_bks_id
    and closing_status IN ( 'O', 'F', 'C')
    order by period_year, period_num' ----
    In my cursor, i have a condition 'where set_of_books_id = ' ---
    How can I pass the above set of books id into the cursor ?? it is not working when I am defining another parameter as Book and passing that value to the cursor....
    I need that period parameter to return all the periods for the set of books where we are running the concurrent request from...I also need to get the set of books id for my cursor...
    Hope I am making sense...All that I am trying is to have period parameter and also a SOB id in cursor condition...
    Rgds,

    Hi Vamsi /Nitin,
    Let me explain the whole thing now.....
    My plsql procedure is ......
    CREATE OR REPLACE procedure GL_INT(
         perrbuff     out varchar2,
         pretcode     out varchar2,
    pbook          in varchar2,
    pperiod          in varchar2
         ) is
    cursor cur1 (p_sdate in date, p_edate in date )is
    select distinct group_id groupid,
    user_je_source_name source
    from gl_interface
         where accounting_date >= p_sdate
    and accounting_date <= p_edate
    and set_of_books_id = pbook;
    cursor cur2 is
    select distinct start_date sdate,
         end_date edate, period_name period
    from gl_period_statuses
    where      period_name = pperiod
         and set_of_books_id = pbook
         and application_id = 101;
    i               cur1%rowtype;
    j               cur2%rowtype;
    begin
    open cur2;
                   fnd_file.put_line(fnd_file.output,'PERIOD'||'----'||'GROUPID'||
                                       '----'|| 'SOURCE');
              loop
                   fetch cur2 into J;
    exit when cur2%notfound;
                   open cur1(J.sdate,J.edate);
                   loop
              fetch cur1 into I;
                        exit when cur1%notfound;
              fnd_file.put_line(fnd_file.output, J.period||'----'||I.groupid||'----'||
                                  I.source);
                   end loop;
              end loop;
         Close cur1;
    close cur2;
    Exception when others then dbms_output.put_line(SQLERRM);     
    end;
    ==================================================================================================
    For SOB value set, I have passed the default value as vamsi suggested ($profiles$.gl_set_of_bks_id)....
    For period value set, I have entered query as ..where application_id = 101
    and set_of_books_id = :$PROFILES$.gl_set_of_bks_id
    and closing_status IN ( 'O', 'F', 'C')
    order by period_year, period_num...................
    It still doesn't work....I don't know how to derive those Periods based on the SOBs and at the same time pass SOB id into the cursors...
    Please help...
    Rgds,
    Murali

  • HOW TO: EAM - Work Order Page - Change Concurrent Program to run

    Hi,
    my customer is using EAM and in the Work Order Search page the customer can select a work order and press the button "Print Work Orders". The standard work order (BI Publisher report) print is submitted.
    Their request is to submit the Customized version of this concurrent program.
    Can this be done and how can this be done?
    Thanks in advance.
    Regard Roel
    Edited by: user13071061 on 6-okt-2010 6:26

    Hi,
    Can you please check that what is the Template of Standard Work Order Report.
    It comes from the setup for Document Types in Oracle. Most probably the template will be
    XXL-FO. And if yes, then you need to have the customized report also, in XXL-FO Template and then in Document Types just give the name of the customized Template Name (Register the Template and Data Definition in Oracle first). Save it
    and then run the page again to see if now it picks the template of your customized report or not.
    Thanks,
    Gaurav

  • SQL* Loader Parameters in Concurrent Programs

    Dear All,
    I have used an Execution file type of SQL*Loader. So, I put the execution file name as my .ctl file. I put that .ctl file in my ../bin directory in my custom application tree.
    Can any one tell, how a parameter for datafile, bad file and log file can be passed or can achieve an output report for such a concurrent program out?
    Thanks
    Faisal Anwar Khan.

    Hi
    I agree to what you say. But i want to control the same at SRS Form itself.
    If suppose i do the same at my Custom Program Level it will still allow me to submit null values for the parameter which i do not want to.
    Unless and until the User at the SRS Form passes a value for any one parameter then the system should allow him to submit the request then and there.
    Hope you are clear with the requirement.
    Regards
    Nakul.V

  • Multi-selection of parameters in concurrent program

    Hello,
    I have a requirement wherein I should be able to select multiple employee numbers from employee_number parameter and the report should run for the selected employees. Please let me know how this can be achieved.
    Note:- I am making the concurrent program available from self-service screen by attaching the function 'Schedule Requests' (FNDCPSRSSSWA) to the responsibility. I would like to see this multi-selection option on the self-service screen.
    Regards
    Suresh

    Even if we say you were able to do it, you need to verify that the report logic and layout can stand multiple values to print out the report as intended.
    With EBS there is always more than one way to solve a problem.
    -AC

  • How can i give two tcode in same program

    Hi all,
    How can I give two tcode to the same program in which two conditions call in that two t codes
    how can I do so please help me for that.
    Ketan
    ABAP consultant

    hi,
    In your case, if the calling of the two transactions is mutually exclusive,
    then
    IF
    call transaction 'A'.
    else.
    Call transaction 'B'.
    endif.
    else,
    if you need to call the transactions one after the other,
    CALL TRANSACTION 'A'.
    CALL TRANSACTION 'B'.
    Thanks
    Sharath

  • Dynamic parameters for concurrent programs

    All
    Is there any way to add/remove concurrent program's parameters dynamically. If the concurrent program's parameter p1 has a value v1, parameter p2 should get displayed. If parameter p1 has a value v2, parameter p3 should get displayed and parameter p2 should get hidden and disabled. New parameters (p2 or p3) should allow the user to enter free text.
    I reviewed the usage of :$FLEX$ and value sets to achieve this requirement. However, this approach grays out the unwanted parameters (parameters still gets displayed) and the new parameters (p2 or p3) become an LOV instead of allowing the user to enter free text.
    Thanks.

    Hi,
    I don't think it's possible to make the parameters disappear. All you can do is to gray out them so that the user cannot enter any value (that is what you've already done). About allowing the user to enter a free text, you simply need to use a value set that is not validated (Validation Type = None). You can create a new one or you can use the ones already existing in the EBS, like '30 Characters', '120 Characters', ...
    Hope it helps.
    Regards.

  • How can I get the responsibility for concurrent programs

    Guys,
    How can I get the responsibility for a list of concurrent programs. Is there a query that I can run to get the results?
    Thanks in advance,

    Refer to Note: 134036.1 - WHOCANRUN.SQL - List Responsibilities That Can Run a Given Concurrent Program
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=134036.1
    From the output of the query in the note referenced above, you can run "Users of a Responsibility" concurrent program then to find out the list of users who have access to a certain responsibility.

  • How to capture the parameter value of Concurrent Program submited

    Hi,
    I would like to capture the Parameter value of Concurrent Program submitted through Submit Request screen based on that i want to return value.
    When Conc prog "Payroll Run" along with parameter like "Pay Period" which has LOV attached to it, which has one coulumn named "End Date", this value selected needs to be captured. Can you please tell the Table name where the value is stored or Captured.
    I want this value to be used in Fast Formula which will return the desired value to Input Value.
    Actually in one of the Element I have Input Value as "Monthly Days" which should be populated with the "Number of days" in the period in which Payroll is being processed.
    Thanks in advance.
    Ram

    Hi,
    fnd_concurrent_requests.argument_text stores the argument values in comma separated form. But check the prior response from thierry first - fnd_concurrent _requests is not the place you want to be getting things from as it can be purged and so you source data is gone!
    Gareth
    http://garethroberts.blogspot.com

Maybe you are looking for

  • How do i update my podcast on iTunes?

    Hello, I submitted a podcast to iTunes and I need to update my image file, but cannot find where to do so. Anyone know where update podcast can be found? Thanks, Jeff

  • How do I add multiple faces to a slideshow on appleTV?

    I have had appleTV for about 2 years. Mainly use it for playing iTunes library from TV. I have always had a photo slideshow for a screen saver while playing tunes. Now that I have two children, I would like to add pictures of our recent addition usin

  • CNTL_ERROR while calling an FM through WebDynpro

    Hi All, I'm using an function module for rejecting PO through BDC for Transaction - ME29N  using call transaction method. Function module works well on R/3 System , but while calling it in WebDynpro it throws an CNTL_ERROR . What could be the problem

  • Failed boot after (apparently) successful SSD installation

    Tried to replace the main hard drive of my wife's 13 inch MacBook with an SSD restored from a Time Machine backup. Everything seemed to go smoothly, but the machine won't boot, it just keeps showing "You need to restart your computer." Ran disk utili

  • SSO-Logon from mobile device - create logon ticket from WebDynpro for Java

    Hi Experts, I'm developing WebDynpro-JAVA application for some warehouse stuff  (runs on a portal system, clients are mobile barcode-scanners with Windows mobile 5.0). JCOs from the portal system to the R/3-backend are confirgured for SSO with Logon-