Use $PROFILES$.MFG_ORGANIZATION_ID to set DFF values in eAM Self Service

Hi all, I try to set the Reference field for the DFF (Application: Work in Process, Title:Work Request Information), with "$PROFILES$.MFG_ORGANIZATION_ID".
This flexfield is for Self service of maintenance OA Framework. This configuration that work in forms, doesn't work in web application.
What is the correct way to do this?
Thanks

Hi all, I try to set the Reference field for the DFF (Application: Work in Process, Title:Work Request Information), with "$PROFILES$.MFG_ORGANIZATION_ID".
This flexfield is for Self service of maintenance OA Framework. This configuration that work in forms, doesn't work in web application.
What is the correct way to do this?
Thanks

Similar Messages

  • T5SSCXSSSERVICES - Set Data Tracking for Individual Self-Services

    Hi,
    We have a requirement for BI Report to fetch data from table :T5SSCXSSSERVICES
    The above table could be filled with data when we perform any activities in ESS and MSS.
    I wanted to know what are all required configuration to get data in to the table T5SSCXSSSERVICES
    I understand below mentioned configuration are required:
    IMG Node 1: Activate Data Tracking for All Self-Services
    IMG Node2: Set Data Tracking for Individual Self-Services
    Is it required to activate Business FunctionS et - HR Administartive Servcices?
    Guide me with more inputs,
    Regards
    Ramanathan

    Hi Ramanathan,
    I am facing the same doubt now, are you able to share your experience on how to populate  T5SSCXSSSERVICES ? Appreciate that, and thank you in advance.
    Regards
    Kir Chern

  • Using Auto Suggest To Set The Value Of Multipe Form Fields

    I would like to use the Spry 1.5 Preview Auto Suggest widget
    to provide the value for multiple form fields based on the row the
    user selects in the auto suggestion data set. I've placed an
    example of what I want to do here:
    http://www.brucephillips.name/spry/Spry_P1_5_Preview/autosuggest/autosuggestMultipleFields .cfm
    It appears that when the user clicks on one of the rows in
    the auto suggestion data set, the current row for the data set is
    not updated but remains the default (first row in the data set).
    Therefore, if you have a spry:detailregion that uses that data set,
    the values for that detail region are from the first row in the
    data set and not the row the user selected.
    Is it possible to set the current row of the auto suggest
    data set to the row the user clicked on in the auto suggestion data
    set so that the spry:detailregion will have the values from the row
    the user clicked on?
    I had previously modified the Spry 1.4 Auto Suggest widget to
    do this. See:
    http://www.brucephillips.name/blog/index.cfm/2006/11/6/Modifing-Sprys-Auto-Suggest-Widget- to-Bind-Users-Selection-to-A-Form
    Thank you for any assistance.

    Cristian: thank you for the reply. I understand your concern
    about the user changing the auto suggest field after updating the
    complimentary fields. I think that could be handled through user
    instruction. Additionally, instead of using form fields to hold the
    complimentary data I could use non-editable paragraphs.
    I hope the change is not too difficult. I think this
    modification would make the auto suggest widget even more useful.
    For example think about a product auto suggest. User starts to type
    in the name of the product, selects the full product name from the
    auto suggestions, and now the page can immediately show in a
    spry:detailregion all the product details.
    Thanks again for considering my request. I really appreciate
    all the work the Spry team is doing. I'm looking forward to the
    official release of Spry.

  • Using radio buttons to set the value of a text field

    I have a set of three radio buttons on a form (a performance evaluation). If I select the "1" button, I want 1 to populate in the text field. The same goes for "2" and "3"
    I have not been able to code the buttons correctly for this scenario, and can't figure out how to do it.
    From a previous post, I was able to get check boxes to do what I want, but they won't really work because I can't set them so that only one back may be selected.
    Can this be done?
    Thanks!

    The information for this specific case isn't anywhere. The best that you can do is understand what triggers each of the events, then ask yourself which of those triggers are pertinent to your current issue.
    http://help.adobe.com/en_US/livecycle/es/LiveCycle_Designer_Scripting_Basics.pdf ...
    The above link contains a great deal of information regarding how to use scripts within Livecycle Designer. The section that you would be most interested in in order to learn about the available events can be found under "Events >> List of Events".
    You needed to use the initialize event so that the text field would be updated when the document was opened. This ensure that the text field has the value of the default radio button when it is opened for the first time.
    You needed to use the change event so that, when the use selects a different radio button, the text field is updated with the new value.
    That's about it. That PDF file that I link to above is a bit long, but it's a great place to get a good grasp of the basics of scripts.
    If you have any further questions, feel free to ask. =) Have a good one.
    - Scott

  • Using a trigger to set default values

    Hi
    Does anyone know of a way to set a default value of a column in Oracle trigger code? I am trying to write an on Update trigger to set the default value of a column in a relationship when the parent is updated.
    Thanks
    Mike

    Solution :
    Suppose you have 2 tables, Emp and Dept,
    In this case Dept is parent and emp
    is child.
    So if you update parent (change deptno
    from 20 to 21 , then you want the same
    to be reflected in emp table i-e all the
    record in emp table having the deptno as 20
    now should have 21.
    Create trigger upd_emp
    after update on dept
    begin
    update emp
    set deptno = :new.deptno
    where deptno = :old.deptno;
    end;
    Hope this helps
    Naresh
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Mike D ([email protected]):
    Hi
    Does anyone know of a way to set a default value of a column in Oracle trigger code? I am trying to write an on Update trigger to set the default value of a column in a relationship when the parent is updated.
    Thanks
    Mike<HR></BLOCKQUOTE>
    null

  • Using an expression to set checkbox value

    Hi,
    I am working on an application that has a whole suite of javabeans where boolean fields are expressed as Y/N flags. Regardless of whether or not this is a good idea, that is how it is and I cannot change them (it came about because the beans map straight to database tables that do not accept Boolean datatypes).
    I am wanting to render these fields as checkboxes, ideally so that they can be properly bound to a backing bean, but it would suffice if I could just display the checkbox and have it only readonly (doesn't have to map back to the backing bean).
    I have tried to write a converter to handle these fields, but MyFaces doesn't like having a non-boolean binding for the field, even with the converter supplied.
    To just try and render the non-editable checkbox I would to be able to do the following:
    <h:selectBooleanCheckbox value="#{group.external == 'Y'}" />This works fine when the page is displayed, but it still tries to update the model when the form is submitted and throws the following exception:
    javax.faces.el.EvaluationException: Cannot set value for expression '#{group.external == 'Y'}' to a new value of type java.lang.Boolean
    Any ideas would be appreciated...

    I suggest it: on your JSF managed bean wrap your String value.
    String strExternal;
    public boolean isExternal () {
       boolean f =  "Y".equalsIgnoreCase(strExternal);
       return f;
    public void setExternal(boolean f) {
    this.strExternal =  (f ? "Y" : "N");
    }Internally you work with Stirng values, however MyFaces with booleans.

  • Enable only few Person DFF segments at Employee Self Service

    Hi,
    We have a requirment to enable person DFF in ESS --> Personal Information, Which I have managed to enabled it at ESS.
    In Additional person Details (DFF) we have 6 segments in total but we need to populate only 2 segments in ESS personal information.
    Any Idea how to achieve this.
    Thanks,
    Suresh

    Hi
    Thanks for suggestion and it worked, another requirment ment is, can we make the first segment that is "XX Continuous Service Date" read only and another one user can modify ?
    Global Data Elements|XX Continuous Service Date|XXX Continuous Service Date|
    Regards,
    Suresh

  • Need to set effective date on employee self service process

    Help! I need the following:
    My customer wants the employee to be able to change their own hours. If I assign this function in selfservice to the employees, I get no effective date page. And we do need this page.
    Does anyone have a solution how to bring up the effective date page in selfservice for employees?
    Corné

    1. Check personlization
    2. check this parameter &pEffective Date= attached to self service function.
    Thanks

  • How do I retain a PDF form widget's design when setting its value using Javacript in Acrobat?

    I've been experimenting with interactive PDF forms in InDesign and JS in Acrobat. I think I've encountered something that might be a bug: widget design is overriden when using Javascript to set the field's value in Acrobat. Here's what a checkbox, for example, should look like when checked:
    However performing:
    var f = this.getField("Checkbox");
    f.value = "Yes";
    in the JS Console results in the widget's appearance defaulting to acrobat's:
    I've tried every single widget property documented in Acrobat's Javascript API Reference to no avail. Initially, checking/unchecking using the mouse works fine. Once the value has been set using JS, Acrobat's default black check character is used for all subsequent toggling, including when using the mouse...
    How does InDesign export interactive PDFs with custom icons for widgets? Is there any way to enforce the use of those icons using JS in Acrobat Pro? What's the difference between selecting a checkbox or a radio button using the mouse and setting its value using JS?

    I thought it might be the case, too, but all widgets have the same properties both before and after setting the value with JS. I did this check using all documented properties in Acrobat JS Reference in an attempt to figure out what might be going on.
    By the way, I don't think Indesign necessarily uses glyphs for the checked state of widgets, although in this case a glyph is used (albeit with different stroke and fill colours for the glyph, acrobat doesn't allow setting these properties AFAIK). With Indesign CS6 it seems you can practically use any Indesign tool to design the widget's On and Off states. So I'm thinking that maybe Indesign exports these with button-like properties where there are no restrictions on appearance (I think there is an "icon" property/object for buttons or something like that). However Acrobat treats them as checkboxes, so if that is the case it is more of a hack. Is there a way to probe an object's various properties other than using JS or the properties pop-up dialog?

  • How to set the value in the xml node.

    Hi
    I am having the application PDF which can be submitted by user using the button. while submitting 
    i am using below code to set the value in the xml node.
       xfa.data.assignnode("employee.id","123",0):
    So its generating the xml like below.
    <employee>.
    <id>123</id>.
    </name>
    </employee>
    Now i need to generate the xml like  below.
    <employee id= "123" >
      </Name>
    </employee>
    So how to set/create the id node like above?
    Advance Thanks.
    Regards,
    Dhiyane

    Hi Dhiyane,
    You will have to set the contains property if the id node to "metaData", that is;
    xfa.data.assignNode("employee.id","123",0);
    xfa.data.employee.id.contains = "metaData";
    Very clumsy if you have a number of them, in which case you might want to look at using E4X.
    Good luck
    Bruce

  • How to set a value in dashboard prompt based on user id

    Hi
    i have a requirment like i need to set a dashboard prompt value based on user's login.i.e.if i login as administrator
    the adminstrator is belongs to circle(my requirment)then the circle name willbe displayed in dashboard prompt .
    if any idea pease help me.
    thanks

    Thanks for yor reply.please you can tellme clearly how to set use 'NQ_SESSION.USER' to set the value to logged in User.i.e i have circle table in that users and circle names will be there.it is teradata database.so how can i set that in to the dashboard prompt and one thing along with that prompt the follwing prompts will be there
    mobile no<>
    date<>
    circle name<"user">
    this is my requirement so please help me step by step what to do for achiving this.
    thanking oyu

  • Sending controller context value attributes to web service model

    Hi,
    I have put some parameters (value Attributes) in controller context and mapped to different views. Is there any way by which i can send the values to the web service model , each time the web service is called? like through header or some thing like that??

    Hi Sujesh,
    Read those value attributes in your controller using following code:
    wdcontext.currentContextElement().get<attribute>();
    and then set these value in your web service model.
    <model name> model = new <model name>();
    model.set<attribute>(<value>);
    wdcontext.node<nodename of your web service model>().bind(model);
    wdcontext.current<nodename of your web service model>element().modelobject().execute();
    Regards,
    Bhavik

  • Flexfields using Profile Values - How to get working?

    I've setup a Flexfield on a table. the DFF uses a valueset to verify the input. Your normal forms based stuff. the DFF shows up on the OAF page nicely. the value set on the DFF has a where clause that usess the profile mfg_organization_id
    ie
    where organization_id = :$PROFILES$.MFG_ORGANIZATION_ID
    However, at run time the LOV does now show anything. it's like the profile has not org id.
    How do you get around this?
    Thanks

    I would agree on that setting profile value from code make no sense,in fact profiles are used in a reverse way.Based on profile value you can have ur logic.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                               

  • How  to set default value for Zfeild using statusprofile

    hi experts,
    I need to set a default value for a zfeild using status profile.Although we can default the values,using getter and setter methods,but in my requirement,the feild will be defaulted when the page is locked,also in display mode,which will require me to write code to unlock then set the value and then write a commit,as there wont be any user action performed.
    I have created a zstatus profile and have set the required status to inital,but no luck
    please suggest if this canbe achived through status profile.
    Regards
    Anu.

    Hi,
    You can check in the getter if the Page is locked and then display the value to want to display. Note that this will be just Displaying the default value for the Zfield and it will not set the default value into  the Zfield in DB, because when the document is locked ( means locked for editing - mostly when system status is completed ) , setters are not called and so you can display the value but cant set it. This is fine if the value you want to display in Z field is just for user's informations and its not required to save this default value.
    The best approach would be to set the value in the Zfield before the page is locking. For example, If you wat to set the zfield value when status is set to "Completed" , then you can configure an action that is 1) triggered during saving of the document with 2) start condition "When status is completed"  ( both 1 and 2 you can mention in action defination ), then Implement this action badi in which you can set the Zfield to default value.
    This will ensure that default value is always set whenever the page is getting locked for editing ( i assumed that page lock means status completed ).
    Thanks & Regards
    Suchita

  • How to Set Default Value in DFF

    Hi Experts
    I have a requirement to Default the DFF field value as No on Iprocurement Requistion Headers Page.
    I followed the below steps to enable the field. Please help me where can we set the initial value as NO.
    Please help me how to set the default value as No and we would aslo want to give flexibility to the user to change it to Yes if they want to.
    Any Help would be greatly appreciated.
    http://oraclerocks.blogspot.com/2008/04/adding-dffs-to-oaf-pages.html
    Add DFF to iProcurement Requisition header in the same way. Define a DFF again:
    1. Create a new Value Set.
    2. Define Values for the value set created in step 1.
    3. Add Value Set to the Flex Field Segment in Application: Purchasing and Title: ReqExpress Headers.
    4. Freeze and Compile the FlexField definition.
    The steps to enable DFF in IP HTML pages are as follows:
    1. Enable profile Personalize Self-Service Defn to yes at the user level
    2. Log in to iProcurement
    3. Go to Checkout: Requisition Information page
    4. Click Personalize Page at the top of the page
    5. Look for Flex: (ReqHeaderDFF)
    6. Click Edit (Pencil)
    7. Change Rendered from false to true8. Click Apply
    9. Click Return to Application
    Regards
    Krishna

    Hi Gaurav
    Thanks for your quick reply. I did a different solution just by adding value set with Pop List and attached to DFF segment. The value set that I created is for single value saying Yes. So on the page by default it will display NULL. If user want to select a value then they will select Yes from the pop list. On that same region I created TIP and left a note.
    I will follow the approach that you mentioned, for my future extensions. Thank you for your help again.
    Regards
    Krishna

Maybe you are looking for

  • GL Data Conversion from Legacy to Oracle EBS

    Hi All, I am tasked with converting legacy data into GL. I have worked on other conversions like supplier, AR and AP conversions but never worked on GL conversion, so I don't know how and where to start, what are the pre-requisites for entering data

  • Horizontal menu moves when opening new pages

    I have seven top level pages and have used the horizontal  menu widget in my master page. When I view the site in my browser the first four pages load with no problem but when I open the last three pages the menu moves  about 20pixles to the right. I

  • How to download & install Adobe for free

    When I try to download Adobe Flash , I get a screen that says  Blocked Plug-in. How can I get the latest free download for my MAC computer?

  • PUST clocking

    Hi Experts, The PUST transaction is clocking for one process id. The first step (pgm RPCEDTU0) itself is not coming. As I am not a functional person I don't have much idea about it. Any suggestion would be appreciated. Thanks & Regards, Soumya.

  • Question about speakers built into the 3Gs

    Hi, one of my speaker on the phone went dead is this hard ware or soft ware issue? should I reset the phone to original factory spec.? I notice this when plug the phone in to the aux in the car, it only put out music on the right speaker of the car.