How to read responsibility level profile in forms personalization r12.1.3

All, I have one custom profile option at responsibility level. I am wondering if I can read that value in WHERE CLAUSE of a WHEN_VALIDATE_RECORD trigger?
I am trying to access responsibility level profile option using "${ps.up_prior_gl_period_allow.VALUE}". But, it doesn't seem to work.
However, I am able to read site level profile option using "${ps.up_prior_gl_period_allow.VALUE}".
Please help.

Have you tried using fnd_profile.get_specific()?

Similar Messages

  • How to read SYstemstate level 266 dump trace file?

    Hi I have simple question regarding documentation availability.
    How to read SYstemstate level 266 dump trace file?
    I tried googling it but didnt find any good article?

    Hi,
    It is supposed to graph frequency content vs time, and the display I get comes all black. Look at the attachments for the load state, the first one is the legacy SW and the second one is the modified one.
     I put probes on them, and the legacy one gets the 250,000 from the Value embedded. The modified one it is supposed to get it from the sample rate path, please let me know if this is enough info, thanks. 
    LabVIEW Intermediate I level!
    Attachments:
    sample rate-load state legacy.JPG ‏174 KB
    sample rate-load state modified.JPG ‏198 KB

  • How to migrate 'responsibility' level personalizations?

    Hi all,
    We have done a set of personalizations at responsibility level in our UAT instance.
    We have no problem migrating the 'site' level personalization. We use the 'Functional Administrator' -> Import/Export utility.
    But, We find that the responsibility level personalizations are stored under a folder hierarchy as below:
    Eg:
    Responsibility: XXRecruitment Manager
    Responsibilty Key: XXRECRUIT_MAN
    Responsibility ID: 50977
    Personalization is exported in this folder:
    /oracle/apps/per/irc/vacancy/webui/customizations/responsibility/50977/RectrDetsRN
    It is stored under a folder '50977' corresponding to the responsibility id of the responsibility that we personalized.
    Our problem is, the responsibility id's and responsibility key's are different in UAT and production instances:
    Responsibility: XXRecruitment Manager 01
    Responsibilty Key: XXRECRUIT_MAN_01
    Responsibility ID: 50900
    Now, how to migrate such personaliations? Our client have personalized atleast 25 pages at various responsibilty levels. Please suggest a suitable way to migrate these personalizations.
    thanks in advance,
    Hem

    Hem,
    We had the similar discussion in past once, but I guess the user didn't update the final results. As far as I think, 'Functional Administrator' -> Import/Export utility should be handling this scenario.
    Did you try it atleast on one such responsibility level personalization?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to Restrict Site Level Profiles in Oracle E-Business Suite 11.5.10.2

    Friends -
    Could you please advise how to restrict control on site level profiles in 11.5.10.2
    For a user who is having system administrator responsibility is there any way that we can restrict site level profiles
    Appreciate your support on this.
    Regards
    Satish Vellampalli

    Hi,
    I believe there is not direct way to restrict a person with System Administrator responsibility from accessing profile options. However, you may achieve this by creating a new responsibility (identical to System Administrator responsibility) and exclude the profile option window from it, and assign it to the user.
    Regards,
    Hussein

  • How can we disable Block Level Trigge using Form Personalization

    Hi,
    I want to disable block level trigger(WHEN-NEW-RECORD-INSTANCE) using forms personalization at responsibility level.
    Can any one please give me the answer.
    it's urgent
    Thanks and Regards,
    Dhana

    No, Firefox is user choice rules over the "wants" of individual websites as far as disabling contextual menus and the keyboard commands.
    Placing a transparent image over the image will keep the less technical user from saving the main image. If they do try to save it all they'll get is the transparent image overlay.

  • Quick Tip: How to handle responses for fillable PDF forms | Acrobat X Tips & Tricks | Adobe TV

    Learn how to view and filter responses to your fillable PDF form and how to send data from your PDF form to an Excel spreadsheet using Acrobat X Std. or Pro. You can also check for responses on Acrobat.com.
    http://adobe.ly/GJAFlC

    I cannot believe the quality of the Acrobat X tutorials. Why can’t they be like the ones for CS.  Some balloon text boxes flash by so fast they cannot be read, timing is also an issue for other balloons. 
    Disappointed, If you like I can make better ones for you

  • How to read 'Barcode' in Adobe PDF Forms?

    Hi Everybody,
    I have a scanned pdf of 20 pages. There is a barcode in every page in a serial order like in first page it is 545001 in second page it is 545002 and in third page it is 545003 and so on. I want to automate a process sothat i can know that all the barcodes are in serial order or not. Or, I could know whether it is tempered or not.
    Please tell me. How i can do this using Adobe Acrobat or Adobe LiveCycle?
    Is there any features in acrobat or livecycle?
    Thanks,
    Manjeet

    It is an offline form.
    We are consuming the web service in Form to create a PR.
    However we also need the user to attach some documents before it actually clicks on the "Create PR" button.
    User can attach the file through "Attachments"  facility provided on Adobe Reader.
    Our problem is how to check whether user has attached the documents or not. If the documents are attcahed then how to read them using JavaScript?
    Thanks,
    Taha

  • How to read response from WebService call

    Hi,
    I am consuming webservices in ABAP. I got proxy classes created. Port is also created.
    I am calling classes generated by proxy in ABAP. Classes creates few structure by system. when i make a call to service, I am not getting importing values in veariables declared. Trace file (in SOAMANAGER ) shows call successful & XML file shows the correct response values, but are not appearing in program variables. I declared variables of same type generated by system.
    My question is, am I missing any step.configuration? or how to read the variables?
    Thanks in advance.
    Sunil

    You coud create a procedure like this:
    CREATE OR REPLACE PROCEDURE soap_env_pr (p_soap_env IN VARCHAR2)
    IS
       v_start     NUMBER;
       v_end       NUMBER;
       v_message   VARCHAR2 (400);
       v_length    NUMBER;
    BEGIN
       v_start := INSTR (p_soap_env, '<ns0:Ok>');
       v_length := LENGTH ('<ns0:Ok>');
       v_end := INSTR (p_soap_env, '</ns0:Ok>');
       v_message :=
              SUBSTR (p_soap_env, v_start + v_length, v_end - v_start - v_length);
       HTP.prn ('Ok: ' || v_message);
       v_start := INSTR (p_soap_env, '<ns0:SessionNumber>');
       v_length := LENGTH ('<ns0:SessionNumber>');
       v_end := INSTR (p_soap_env, '</ns0:SessionNumber>');
       v_message :=
              SUBSTR (p_soap_env, v_start + v_length, v_end - v_start - v_length);
       HTP.prn ('SessionNumber: ' || v_message);
       v_start := INSTR (p_soap_env, '<ns0:ErrorMessage>');
       v_length := LENGTH ('v_length');
       v_end := INSTR (p_soap_env, '</ns0:ErrorMessage/>');
       v_message :=
              SUBSTR (p_soap_env, v_start + v_length, v_end - v_start - v_length);
       HTP.prn ('ErrorMessage: ' || v_message);
    END;and call it like this:
    BEGIN
       soap_env_pr
          ('<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header/>
    <env:Body>
    * <invokeScenarioResponse xmlns:ns0="xmlns.oracle.com/odi/OdiInvoke/" xmlns="xmlns.oracle.com/odi/OdiInvoke/">*
    * <ns0:Ok>true</ns0:Ok>*
    * <ns0:SessionNumber>2223201</ns0:SessionNumber>*
    * <ns0:ErrorMessage/>*
    * </invokeScenarioResponse>*
    </env:Body>
    </env:Envelope>'
    END;That would give you this output:
    Ok: true
    SessionNumber: 2223201
    ErrorMessage:Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • How to read attachment from adobe interactive form

    Hi,
    My requirement is- vendor should fill all the detail in an offline interactive form and attach necessary documents in the form itself. How can i read the attachments from the form inside my program and how can i store it in SAP. I am using FM ' SMUM_XML_PARSE' to read all the data in the form.
    Best Regards,
    Tofan

    mailForm
    Parameters: bUI, cTo, [cCc], [cBcc], [cSubject], [cMsgBody]
    Returns: nothing
    This method exports the form data and mails the resulting FDF file as an attachment to all recipients,
    with or without user interaction depending on the value of  bUI.
    If it is set to true then the rest of the parameters are used to seed the compose new message window that is displayed to the user.
    If bUI is set to false, the cTo parameter is required and all others are optional.
    You must use a semicolon u201C;u201D to separate multiple recipients in cTo, cCc, cBcc parameters.
    The length limit for cSubject and cMsgBody is 64k bytes.
    Example:
    /* This will pop up the compose new message window */
    this.mailForm(true);
    /* This will send out the mail with the attached FDF file to fun1 @ fun . com and fun2 @ fun . com */
    this.mailForm(false, "fun1 @ fun . com; fun2 @ fun . com", "", "", "This is the subject", "This is the body of the mail.");
    Note:
    This is a Windows-only feature. In addition, the client machine must have its
    default mail program configured to be MAPI enabled in order to use this method.
    I had to change the code:
    instead of this.mailDoc :
    var myDoc = event.target;
    myDoc.mailDoc(false, "fun1 @ fun . com; fun2 @ fun . com", "", "", "This is the subject", "This is the body of the mail." );       
    But the outlook new message window still opens...
    Any Idea's?
    Eran

  • How to call a particular Customer through form Personalization

    Hi,
    Environment :- R12
    I have a requirement, to search a Customer info based on Sales Order form.
    Requirement:
    1. Open the Sales Order form, Query any order
    Now the user wants to pull the XBC Cusotmer information which was in the Customer Field.
    Naturally we can do by form personalization but here the Customer window is web based one. Can anybody have a hands-on on this. Please let me know.
    Thanks,
    ABR

    Pl see if the steps in MOS Doc 856139.1 ((Pics) How To Create Personalized Views For All Users In Professional Buyer Work Center) can help.
    HTH
    Srini

  • How to displlay multiple Invoice Numbers through Form Personalization?

    Dear All,
    In Ap invoice form if I query one Invoice and click new menu which is created by me, then it shows Invoice Number as a popup. It's done through Form Personalization. But If we Query 5 Invoices and select all by press and hold the control button and select each and every Invoice and then click our menu, that time I need All 5 Invoice Numbers in Popup. So how Can I do this?
    Currently It is showing only one Invoice which currently cursor is there.
    So I need all Invoice Numbers in Popup. So plz give suggestions....

    Pl see if the steps in MOS Doc 856139.1 ((Pics) How To Create Personalized Views For All Users In Professional Buyer Work Center) can help.
    HTH
    Srini

  • How to Chage the data format through Forms Personalization

    Hi Experts,
    I would like to do like,
    for example in the oracle form has two fields called
    start data(DD-MON-YY)
    end date(DD-MON-YY)
    but actullay i would like to have like
    start date(DD-MON-YY HH24:MI:SS)
    end date(DD-MON-YY HH24:MI:SS)
    It can be done through forms personalization?
    we are using Apps 11.5.8.
    Please help me to do it.
    Regards
    R.Sundaravel

    Try using FORMAT_MASK property in Forms personalization
    Property name - FORMAT_MASK
    Value - DD-MON-YYYY HH24:MI:SS

  • How to open Workflow status monitor from form personalization

    I am trying to open workflow status monitor page from special menu using form personalization and encountering below error message.
    Any help or guidance in this regard will be much appreciated. Here are the personalization details that I have set.
    Builtin Type : Launch a Function
    Function COde: FND_FNDWFIAS
    Function Name: Monitor Activities List
    Parameters:
    I tried both the below in parameter field and both are returning null point exception while opening page.
    =SELECT 'FUNCTION_NAME='||'FND_FNDWFIAS'||' OPEN_FLAG='||'Y'||' SESSION_FLAG='||'Y'||' ITEM_TYPE='||'XXOMCP'||
    ' ITEM_KEY='||:GLOBAL.XXG_WF_KEY||' ADMIN_MODE='||'NO'||' ACCESS_KEY='||'Y' FROM DUAL
    =SELECT 'FUNCTION_NAME='||'FND_FNDWFIAS'||'OPEN_FLAG='||'Y'||'SESSION_FLAG='||'Y'
    ||'OTHER_PARAMS ='||'ITEM_TYPE=XXOMCP'||'&ITEM_KEY='||:GLOBAL.XXG_WF_KEY||'&ADMIN_MODE=NO&ACCESS_KEY=Y' FROM DUAL
    Regards,
    Sree

    Sorry Phil,
    but that's all you got.
    Frank

  • Enable Property Not working in Form Personalization- R12

    Hi All,
    I have an requirement to grade out the button item for Production Supervisor- Batch details, The Button Item is Transact Material, This Button should be grade out always for this particular responsibility.
    See below what logic i used for this requirement in Form Personalization.
    1. For the Batch Details Form Created one Personalization with trigger condition WHEN-NEW-BLOCK-INSTANCE and processing mode Not in Enter-Query Mode.
    2. In Actions tab - Type : Property
    Object Type : Item
    Target Object: GME_BATCH_HEADER.TRANSACTIONS
    Property Name: ENABLED
    Value : FALSE
    After i validate it and pressed APPLY NOW- only at that time the "Transact Material" Button showed as Grade out but after i closed the personalization window and reopen the Batch Details form and am seeing that Transact Material still Enabled instead of Grade out.
    I prefectly saved the personalization window.
    I dont knw why it is working only when i see preview(APPLY NOW) option and not working once i reopen the batch details or logout the apps and reloged again still having the same issue.
    Please help me out if any one come accross this type of issue.
    welcoming your comments on this...
    Regards
    Prabu

    Are you making the fields "required" using personalization?
    The Raise FTF action won't produce any message.
    It looks like some other code is firing before your personalization fires.
    It seems user is unable to save the record. So your requirement is achieved.
    If not, please post details of the personalization.
    Sandeep Gandhi

  • How to read data from writable PDF Form?

    Hi,
    I need some help for the web site that I am working on.
    This is asp.net website. Client is requesting to provide writeable PDF forms on this website for download.
    These forms will be downloaded by customers, they will fill in the required data on these forms save it and upload the forms back on the website.
    Once uploaded we need to read whtever client has written in these forms and update in the database (SQL server).
    I have been going through adobe web site and lot of other web sites to understand this concept (as i have never done this).
    What I understood is, with Adobe LiveCycle designer and forms we can create writeable forms.
    However I have not got any idea or seen any documentation on how do I read the data that user has typed on these forms.
    This reading the data from pdf and saving into sql server, I have to do it in asp.net app.
    Could anyone please help me understand how to achieve this.
    Thanks a lot for you time.

    How do we do that?
    Just to clarify myself, I am not putting any button on PDF to invoking submit action from PDF. I am allowing user to upload the pdf and they click submit button on my aspx page.
    Are you saying that when user submits the aspx page there is a wasy to retrieve the data in the form of XML or name/value pair on this aspx submit? if so please send me some pointers/examples or let me know how to do this? Is there any additonal tools/software that we will need to buy from adobe for this?
    thanks for you time!
    Praxo

Maybe you are looking for