Display Only / Non-editable parameters on concurrent programs

Is there a way to have a parameter be "display only" ... and not make it available to the user to change?
Example:
PO Number From:
PO Number To:
User enters PO Number From parameter, then the PO Number To parameter is prefilled with the value entered in PO Number From, but the user cannot change it. But it is available on the parameter screen for the user to see.
Is there a way to do this?

I don't think there's a default way from oracle to make parameter field "read only",
but I can suggest a workaround though for your case.
for example PO_NuMBER_FROM is having value set PO_NUM
you can create new value set specifically for PO_NUMBER_TO (for example PO_NUM_TO).
in the where condition of the new value set you can put condition to make it the same as PO_NUM, for example :
where segment1 = :$FLEX$.PO_NUM
This will make PO_NUMBER_TO LOV could only have one value which is same with PO_NUMBER.
To show the default value in LOV, you can put the default value for paramter PO_NUMBER_TO as SQL Statement with value (for example ) : Select segment1 from po_headers_all where segmetn1 = :$FLEX$.PO_NUM.
To make it perfect, you can make the paramter "Required" checkbox to Yes, so finally it should behave like below :
1. PO_NUMBER_TO LOV will show default value same as PO_NUMBER_FROM shown as default
2. Only one value in LOV, so user can't change into other value.
3. The parameter is required so user can't change it into null.
Hope this helps,

Similar Messages

  • 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.

  • Display only non zero values  in rows

    Hi Friends,
                      I have a key figure "X', and it is split over 12 months (aging buckets), by using formula, but I want to filter values with zero values ie I want to display all non zer values only.
    This looks like
    Apr        100   
    May       200   
    Jun         200 
    Jul            0   
    Aug
    Sep
    Oct
    Nov
    Dec
    Jan
    Feb
    Mar
    In the above example I dont want to display 'Jul' at all, and the rest should be displayed, Wherein all the above are formula(Apr, May,......)
    Is it possible ?
    If so , what is method.
    I tried supress in query properties , Like supress zeros, but it is not working.
    Suggest me
    Points assured.
    Sanjay

    Dear Gupta,
                       In my case condition is not working, as I want to display values that ae non zeros. If I am using conditions, none of the values are displayed like Apr, May,Jun, Jul, etc........, I want to display all values except Jul as that values is zero as per my example.
    Please suggest
    Sanjay.

  • 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

  • Condition record in display mode (Non editable)

    Hi,
    We have upgraded our system from 4.7 to ECC 6.0.
    In ECC 6.0 We have below condition types in case of India import having
    different delivery vendor (Customs.) other than supplier.
    1.JECV 2.J1CV 3.JADC 
    In old version it was not there.
    Now ,for old pending Import POs vendor tab is in display mode,while in case of new import PO I am able to edit the vendor.
    Please guide  me , why the old import POs are not editale and t
    Regards,
    Gitesh
    Edited by: gitesh mahamuni on Nov 1, 2010 12:16 PM

    Hi SAP FC ,
    PO is still not processed , also neccassary changes done to condition types like : C Manual entry is priority.
    Is there any note for above.
    Regards,
    Gitesh

  • How to put display-only condition in a custom include program

    hello everyone,
    I have to make a custom include program that will be used instead of the already available 'bdcrecx1'.
    I have a couple of questions and would appreciate your help.
    I need to create a parameter with a checkbox. When this checkbox is 'X' the following 2 fields need to be greyed out, otherwise user should be able to enter values in them. How can I grey out the fields?
    Using my include I should have just the following:
    1)parameter with checkbox
    (if 'X', session and user greyed out)
    2)Session Name
    3)User Name
    Also, is there a way I can avoid putting the following onto the screen:
    1)Keep session (this will always be defaulted to 'X'
    2)No Data
    <b>Note:</b> I made a copy of 'bdcrecx1'and i'm doing changes according to my requirement.
    Thanks in advance.
    Regards,
    Fred.

    Hi,
    For your first question.
    use
    assign user command for checkbox say 'CLICK'..
    at selection-screen output.
    loop at screen.
    if screen-group3 = 'VALUE' and checkbox condition.
    screen-active = 0.
    else
    screen-active = 1.
    endloop.
    To make sure that the user enters the data in fields if checkbox is not grayed,
    do it in event
    start-of selection.
    if field is initial.
    exit.
    go back to previous screen.
    endif.
    for removing 'keep session' , check out for exits..
    Regards,
    Tanveer.
    Please mark helpful answers
    Sorry about the previous error in reply.
    Message was edited by: Tanveer Shaikh

  • Display only non empty table

    Hi ,
    I have a read only table in a jspx page. In case there is some error or there are no rows to display , I dont want to display the table. Just a label with some text.
    There is a emptyText which checks if there are "no rows yet" , but it displays all the table headers etc and then displays the text.
    Is there a way I can put in a check to display table only if records are present.
    Thanks.
    Amit

    Hi Amit,
    I would suggest you to make use of switcher instead of setting the visible property as in your case you not only want to show/hide the table based on some condition but also you want to toggle between a table or an output text based on some condition.
    When switcher is used, based on the condition it evaluates which component to render in the component hierarchy since you don't want to load(render) a component when you don't want to make it available to the user.
    There is a good example on how to use switcher component in this blog
    Hope it helps.
    Thanks & Regards,
    ~Krithika

  • 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

  • How to pass parameters to concurrent program report from Forms Personalizn

    Hi All,
    I am trying to run a report from a menu entry in the AP Invoice entry form. For this I have done the necessary steps of creating the menu entry and am assigning the values for the 2 parameters to a global variable and then launching SRS form.
    In SRS form created an action to assign the global variable value to work_order.parameters. I can invoke the SRS OK except that my 2 parameter values appear concatenated in the first parameter itself and are not getting assigned to each of them seperately.
    my global variable assignment is as follows :
    =${item.inv_sum_folder.vendor_name.value}||'.'||${item.inv_sum_folder.vendor_site_code.value}
    and my work_order.parameters value assignment is as follows :
    =select nvl(${global.kmg_invalid_po_gv.value}, ${item.work_order.parameters.value}) from dual
    It passes parameters OK if i replace custom report with standard AP report. I also made my parameters to be free text (17 character value set) to not validate input, but still no joy.
    Any ideas why this is not working ?
    Thanks in advance.
    Shankar

    As Francois said in his answer:
    e.g.:Form A call FORM B
    In form A (Button's or menu's Trigger code)
    DECLARE
    param_list_id  ParamList;     
    BEGIN
    param_list_id := GET_PARAMETER_LIST('EMPNO');
    IF NOT ID_NULL(param_list_id) THEN 
    DESTROY_PARAMETER_LIST(param_list_id);
    END IF;
    param_list_id := CREATE_PARAMETER_LIST('empno');
    ADD_PARAMETER(param_list_id, 'EMPNO', TEXT_PARAMETER, EMPNO);
    CALL_FORM ( 'FORM B.FMX',HIDE,DO_replace,NO_QUERY_ONLY,param_list_id);and in FORM B create a parameter EMPNO (e.g.: varchar2) in node tree(parameter) and at Form level (e.g. WHEN NEW FORM INSTANCE read parameter-
    or you could create a GLOBAL variables
    or, still,Global procedure in LIB
    Regards

  • Concurrent programe parameters define ?

    Hello All
    i have created concurrent program parameters as below :
    Report to be automated from Oracle ERP system by a concurrent job on a 1st of each calendar month with date parameters of 15th to 31st of previous calendar month .
    concurrent job on a 15th of each calendar month with date parameters of 1st to 14th of current calendar month .
    i need to define like below :
    Parameter1 : 1-JAN-2013
    Parameter2: 15-JAN-2013
    FUNCTION from_date (from_start_date DATE)
    RETURN DATE IS
    day CHAR(2);
    date_suffix CHAR(18);
    BEGIN
    IF eff_start_date is null
    THEN
    RETURN(NULL);
    END IF;
    day := to_char(eff_start_date,'DD');
    date_suffix:= to_char(from_start_date,'-MON-YYYY');
    IF to_number(day) > 15
    THEN
    day := '16';
    ELSE
    day := '01';
    END IF;
    RETURN to_date(day||date_suffix,'DD-MON-YYYY');
    END get_from_date;
    By default i need to define like above parameters in concurrent program oracle apps.
    please help me on this and pls tell above function is correct  r not .
    thanks
    Edited by: 981527 on Feb 7, 2013 10:43 PM
    Edited by: 981527 on Feb 7, 2013 11:13 PM
    Edited by: 981527 on Feb 7, 2013 11:17 PM

    Hi,
    Please amke the second Value set as Table Validated value set, and use :$FLEX$.<Prior_Value_Set_Name>.OUTPUT = 'A', where :$FLEX$.<Prior_Value_Set_Name>.OUTPUT returns the value returned by the previous value set.
    Regards,
    Kiran

  • Help required for Concurrent program parameters

    Hi All,
    I have a Concurrent program which has the following set of parameters.
    From Project Number
    To Project Number
    From Org
    To Org
    We dont want to make any of these mandatory, but we have a condition that either of the two sets must be entered i.e. before submitting we have to validate that either From Project Number/To Project Number parameter set is populated or From Org/To Org parameter set is populated.
    If someone could help me with this it would be a great help.
    Regards,
    Shruti

    Hi Shruti;
    What is your OS and EBS level?
    Please check below:
    Setup for Defined Concurrent Program with Parameters - SQL Script
    How to enable/disable parameters in concurrent program dependent prev. para
    Concurrent Program with conditionally required parameters
    Need to do validation while entering concurrent program parameters
    If those are not help,please try to look [this search|http://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+program+parameters+&objID=f475&dateRange=all&userID=&numResults=15]
    Also check http://download-uk.oracle.com/docs/cd/A60725_05/html/comnls/us/fnd/progde04.htm and this
    Hope it helps
    Regard
    Helios

  • Making title as non editable for Mail

    Hi,
    I am sending mail by using FM 'SO_DYNP_OBJECT_SEND'. My need is to make title of the mail as non editable in dialog screen.
    How can I do this?
    Thanks,
    Suchender

    Hi Suchender,
             I tried it passing OBJECT_HD_CHANGE-OBJDES = 'test'
                                    OBJECT_HD_CHANGE-PRTCT = ' ',
                                      EDIT_TITLE-FLAG = ' '.
              But i was not successful to display as non editable.
              Please let me know if you got the answer.
    Thanks,
    Dinesh

  • Making an editable PDF Form non-editable (a shortcut)

    How to make a PDF form non-editable or locked.
    For those who aren't script-savvy, I believe this may be a little shortcut to editing a PDF form and then saving and sending it as a non-editable or locked PDF.
    This is what I have written out for my client, whom I provided an editable PDF Form, so they could edit the PDF and then send it out to their own respective clients as a NON-editable PDF.
    Instructions as follows:
    How to save your PDF Form into a separate non-editable PDF to send to your client: (Using Adobe Acrobat Professional)
    Step 1. Fill out the original PDF Form
    Step 2. Once finished, go to “File” menu and click “Save a Copy” - title the file appropriately and save it to the desktop.
    Step 3. Close the editable PDF document and do not save it (Saving it will save over the original file). Now open up the PDF you’ve just saved to
                        the desktop (you’ll now take the steps to make this file only non-editable).
    Step 4. In the top menu, go to “Advanced” then select in that drop down menu “Security” then “Show Security Properties” - a ‘Document Properties’ window will now appear.
    Step 5. From this new window, select the “Security” Menu.  Set your ‘Security Method’ to ‘Password Security’.
    Step 6. A new window will appear named ‘Password Security Settings’. In this menu, tick the box that says “Restrict Editing & Printing of the document”
                you’ll need to a) set a password for it,  and  b) In the ‘Printing Allowed’ drop down box, select ‘high resolution’   and if you want to, tick the
                box that says ‘allow the copying of text, images and other content’
    Step 7. Click OK and Save the document. Now it’s not editable unless you have the password.
    Note: If you happen to want to edit the PDF at a later date, you can open the file and in the ‘Security settings’ menu on the left hand side
    (the menu is represented as a little gold lock) click ‘Permission Details’ then ‘Change Settings’ to revert everything back to an editable document
    - repeat the above steps to make it a locked document again.   

    Thanks for your suggestions. You should also consider flattening a form if you want a non-editable copy; because the permissions password is not always respected by third-party PDF applications (for some people the form will remain editable, depending on what software they're using).
    Flattening a form can be done in several ways in Acrobat: you can run a script - this.flattenPages() - or print the PDF back to PDF (aka refrying), or use the Sanitize tool in Acrobat X. It also strips out hidden content associated with the form (button actions, field calculation scripts, etc.) so provides additional data protection. Sanitize is the heavy-duty option of the three; it will remove all hidden content, leaving only what you see on the page.
    One correction to your workflow - the Save a Copy menu item is not intended for creating a duplicate of a normal form, it's only available if the  form has been rights-extended and it serves to remove the extension certificate from the PDF (allowing full editing in Acrobat again). As your client is working in Acrobat they don't need a rights-extended version in the first place, and working with a normal form will make things simpler for them. In Acrobat X Pro you could create them a custom Action which automatically flattens the file and saves a duplicate, so they don't accidentally overwrite the original.

  • How to notify user about concurrent Program Status from BPEL

    Hi,
      I'm calling Concurrent Program in Oracle Apps Adapter from BPEL 11g . I have to pass the mail id as one of the input parameters to concurrent program. I have to notify the status of the concurrent program to that mail id  it is Success or failure in the EBS itself.  Is there any jca file properties for this?
    Any suggestions Plz????

    Hi Ajay,
       Thanks, for ur reply.. Can u plz tell  how to pass one of the input parameter of concurrent program to that notification?

Maybe you are looking for

  • "input/output error' when making disc image from DVD

    I've had problems installing Logic, and a Pro Apps Genius at Applecare suggested I try making an image of the problematic DVD (Audio Content 1) and then trying an install that way. While I can make an image of the Install disc to my desktop fine, the

  • How to migrate LV 5 vi to LV8.5 - do I need to install V6, V7...

    Hi Have several large app's last worked on in LV5.1.1; these apps need updating to LV8+ now.  Will I have to install LV6 in a machine, migrate the applications, install LV8, migrate the applications, install 8.0, migrate the applications, and then in

  • Problem with the importing wizard

    Hei, I have a dll which I want to import to the Labview project. So, I decided ti use the import wizard, but when parsing the header file, Labview freezes. I am using a couple of structures (3) and a handle. I have also read that the wizard has probl

  • After installing IOS 6 on my iphone 4, why is my camera taking purple pictures?

    Immediately after installing IOS 6 on my iphone 4 on 9/22/12, when I attempt to use any of my phone apps, everything is colored in purple tint (see attached image). This includes taking video as well. If I flip the camera to the self facing camera, t

  • WD ABAP Travel management

    We have activated business function FIN_TRAVEL_1 in ECC in order to use ABAP WD based applications through BP for ESS 1.41. Based on this [online sap documentation|http://help.sap.com/erp2005_ehp_04/helpdata/en/97/7dc46839ff314f863b90e7fbd12c8e/frame