Autopopulating PER_ALL_people_f column fields(related to people DFF) depending on Job title change in assignment form.

Autopopulating PER_ALL_people_f column fields(related to people DFF) depending on Job title change in assignment form.

Can you check these -
http://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=0CDYQFjAB&url=http%3A%2F%2Foracle.anilpassi.com%2Ff…
Forms personalization for DFF

Similar Messages

  • Autopopulating PER_ALL_ASSIGNMENTS_F column fields depending on Job Id.

    Hi,
    Currently the following fields are getting populated in assignment form depending on the Position name.
    1) Payroll
    2) Salary Basis
    3) Working Hours
    4) Frequency
    Now our client want to disable the position field. They want to store these information in Job DFF field. So going forward the above mentioned field need to be populated depending on the Job name in Core HR forms and Self Service pages. I have tried dynamic trigger and API hook. But none of them are working.
    Regards,
    Rakesh.

    Hi Sanjay,
    Thank you for the reply. But we are not looking for any trigger option. Because if we make such trigger on oracle seeded table then later on support from ORACLE would not be possible. Rather if we can do via form personalization then it would be better.
    So I tried it in the following way(form personalization). But it is not working. Please correct me if I am wrong at any steps. Right now I am trying to fetch a constant value after changing the job.
    Condition
    Trigger Event : WHEN-NEW-ITEM-INSTANCE
    Trigger Object : ASSGT.JOB_NAME
    Condition : :SYSTEM.RECORD_STATUS IN ('CHANGED')
    Actions
    Seq - 1
    Type - Property
    Object Type - Item
    Target object - ASSGT.NORMAL_HOURS
    Property Name - VALUE
    Value - 32.12
    But after this when I am changing job name it is not changing the normal hours.
    Regards,
    Rakesh.

  • How to populate custom table field value into standard DFF

    Hi Gurus
    I am newbie to the OAF
    I have a requirement to populate the custom table field value into standard DFF. we enabled the DFF in ReqDistDFFOnAcct(po_req_distributions_all). On the requisition tab as soon as i click on the checkout button, the custom field value has to be shown in the requisition distributions DFF field along with the standard Columns like charge account, percent, qty and when we click on the next button, it has to hit the base table ie., po_req_distributions_all.
    the standard columns data is showing the screen. how to acheive this requirement programatically
    There is a EO for the req distributions table. please help me how to achevie this requirement.
    Any help woud be greatly appreciated.
    Thank You!
    Krishna

    Thanks Aj. Finally i made some progress....but i am getting an error in the inst_top OPMN folder 10/10/08 15:37:14 Error: <connector name="OracleASjms" path="OracleASjms.rar" /> will not be bootstrapped since corresponding module declaration was not found in application.xml. I cleared the cache, bounced the webserver. Could not able to understand what is this error
    Following is the code that i have written. I am not able to find out what is the error. please help me how to fix this error. there is no changes in the page and the value is not auto populating. the page is having the normal behaviour as the standard one.
    Thanks in Advance for your help...
    public class xxCheckoutDistsCO extends CheckoutDistsCO
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String UnitId="";
    //First get the Application Module
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("PoRequisitionLinesVO");
    String Reqlineid="";
    String Linenum="";
    String DeliverLoc="";
    if(vo.first() !=null)
    Reqlineid= vo.first().getAttribute("RequisitionLineId").toString();
    Linenum = vo.first().getAttribute("LineNum").toString();
    DeliverLoc = vo.first().getAttribute("DeliverToLocationId").toString();
    // if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    // pageContext.writeDiagnostics("TEST >", Reqlineid,1);
    // pageContext.writeDiagnostics("TEST >", Linenum,2);
    // pageContext.writeDiagnostics("TEST >", DeliverLoc,3);
    UnitId=null;
    String Querry="select amli_icx_oaf_utils.get_blding_unit_id (?,?,?) from dual";
    try
    PreparedStatement ps=am.getOADBTransaction().getJdbcConnection().prepareStatement(Querry);
    ps.setInt(1,Integer.parseInt(Reqlineid));
    ps.setInt(2,Integer.parseInt(Linenum));
    ps.setInt(3,Integer.parseInt(DeliverLoc));
    ResultSet rs=ps.executeQuery();
    // ps.execute();
    // am.getOADBTransaction().commit();
    while (rs.next())
    System.out.println(" Query Results ");
    UnitId= rs.getString(1);
    System.out.println(" first > ");
    rs.close();
    ps.close();
    catch(SQLException a)
    System.out.println(" Error "+a);
    System.out.println(" Second > ");
    System.out.println(" Third > "); ----the program is executing upto here...it is not setting the value after this.
    OAViewObject povo = (OAViewObject)am.findViewObject("PoReqDistributionsVO");
    if(povo.getCurrentRow()!=null ) --------If i remove this condition i am getting the nullpointer exception in page.....
    System.out.println(" Fourth > ");
    povo.getCurrentRow().setAttribute("Attribute12",UnitId);
    // if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    // pageContext.writeDiagnostics("TEST >", UnitId, 1);
    Thanks
    krishna

  • How  to retrieve a column field value from an ADF table ?

    All,
    I have a backing bean where I have bounded a field of an ADF table.
    I would like, in the bean, to read the value of that field so that I can use it inside a task flow router.
    The question: how to read a value from a ADF table column field ?
    In the bean I have the getter and setter of the RichInputText ADF table field. But when I type:
    System.out.println("the name is: " + this.getName().getValue());
    or
    System.out.println("the name is: " + this.Name().getValue());
    I get a null pointer exception.
    Thanks in advance,
    Sergio.

    Thanks Marvin, but this is not really what I'm looking for. Or at least, it does not sounds like to be :)
    I need to get the value contained in a row cell of an ADF table.
    Let's say the table (two rows, three cells) contains these values:
    "table_A", "123", "John"
    "table_B", "456", "Peter"
    When I click on the first row, I need the value: "table_A". Once I got that value, I extract the last char, in this case: "A", and then I call a specific task flow from a task flow router (specified in the task flow router Cases property).
    When I click on the second row, the same process applies, only the router now points to another flow view.
    So to summarize, I need to get the value of a row cell in an ADF table. How to do that from within a javaBean in JDeveloper 11g Release 2 ?
    This is what I have in the bean; so far I've bounded the related row cell (herkunft) to the bean. Each time I select a row on the ADF table, the function setHerkunft() runs - I see that from within the JDeveloper console - but when I try to get its value, I get a null value - hence the surrounding if statement.
    package bean;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    +public class taskFlowBean {+
    public RichInputText herkunft;
    public static String taskFlowView = "C";
    +public taskFlowBean() {+
    System.out.println("taskFlowBean constructor call");
    +}+
    +public void setHerkunft(RichInputText herkunft) {+
    System.out.println("set herkunft");
    this.herkunft = herkunft;
    if (this.getHerkunft().getValue() != null )
    System.out.println("herkunft is: " + this.getHerkunft().getValue());
    +//here taskFlowView will set accordingly with the herkunft value.+
    +}+
    +public RichInputText getHerkunft() {+
    System.out.println("get herkunft");
    return herkunft;
    +}+
    +public String getTaskFlowView() {+
    System.out.println("get taskFlowView ! : " this.taskFlowView);+
    return this.taskFlowView;
    +}+
    +}+
    Regards,
    Sergio.

  • Drop Column Field and Drop Row Fields in the Details Field area in the Cube Browser of BIDS/SSDT 2012

    Hello. When I right click a cube in the solution explorer and click browse, I am presented with a Details field area which doesn't have "Drop Row Fields" area like in BIDS 2008, and doesn't have "Drop Column Fields" area like in BIDS. It just has one details
    area with the message "Drag levels or measures here to add to the query".
    How do I include the  "Drop Row Fields" area and the  "Drop Column Fields" area in this Details area so it can be like 2008? 

    I am using MDX query to build SSRS report.
    How do i get MDX query from Excel ?
    Hi Vishal,
    We can use "OLAP PivotTable Extension" to get MDX query in Excel, please download it from:
    http://olappivottableextend.codeplex.com/
    In addition, I would suggest you open a new case if you have any more questiosn.
    Regards,
    Elvis Long
    TechNet Community Support

  • We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    Already gone through following three notes but didn't found resolution.
    APXPAWKB: FRM-41830 When Clicking on Payment Document LOV (Doc ID 1081305.1)
    R12: APXPAWKB: Payment Document Lov Is Empty When Entering A Payment (Doc ID 857587.1)
    R12: Payment Workbench Error: FRM-41830 List Of Values Contains No Entries (APXPAWKB.FMB) (Doc ID 1323875.1)

  • Addition of new column /field PO number in list of shopping carts

    Hi All,
    We are working on SRM 6.0
    We want to add new column (field) PO number in list of  shopping carts on the Shopping Carts tab
    Can anyone give me some pointers as to how to achieve this.
    Thanks in Advance
    Snehal

    Hi,
    Please be clear .. where you are going to add column ?
    Standard report BBP_BW_SC2  available in that we can see the shopping cart status and follow on document (PO) information
    Thanks & Regards,
    prasad.s

  • Change 'Created' column/field value

    I have a business requirement of changing the date of 'created' column/field of selected
    document/s in a document library(it has to be changed to current system date). This has to be done by adding a custom button to the ribbon and providing authorization to the button. Please let me know if this is possible?

    Hi,
    Please refer to the following article.
    http://www.learningsharepoint.com/2011/06/13/using-javascript-js-file-in-commandaction-of-custom-ribbon-button-sharepoint-2010/
    In the above article, command action is JavaScript function. For example.
    <CommandUIHandler
    Command=”AboutButtonCommand”
    CommandAction=”javascript:ChangeDate();“/>
    Create a script file and refer to your command action.
    //Referencing the Script
    <CustomAction
    Id=”AboutFilesButton.Script”
    Location=”ScriptLink”
    ScriptSrc =”/_layouts/RibbonScripts/ChangeDate.js”/>
    You can add the following function to the "ChangeDate.js" file.
    function ChangeDate()
    var ctx = new SP.ClientContext.get_current();
    var list = ctx.get_web().get_lists().getByTitle("CM");
    var items = SP.ListOperation.Selection.getSelectedItems(ctx);
    var item = list.getItemById(items[0].id);
    item.set_item("Created", "2/13/2015"); //change the date
    item.update();
    ctx.executeQueryAsync(
    function () {alert("Created date changed") },
    function () {alert ("Error")}
    Hope this works for you.
    Please don't forget to mark it as answered, if your problem resolved or helpful.

  • How do I create a field, in which people can click to accept my general business terms?

    How do I create a field, in which people can click to accept my general business terms?

    I'm not sure what are InDesign's capabilities in this field, but I think
    you can do everything there, except for setting up the button field with
    the right options and applying the one line of code that allows the user to
    import their own images into it.

  • Can you update a table with a column field that has a default value

    I am looking at a developer table(table_one) and basically, he has a column field called is_update and the default for that field is 1,
    I was just wondering whether it would still be possible for me to use an update syntax of the form
    update table_one t
    set t.is_update = 0;
    where t.id = 221;because I have tried doing so and the update isnt working

    Semicolon (;) is the problem!
    update table_one t
    set t.is_update = 0 --Removed semicolon here!.
    where t.id = 221;http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_10008.htm#SQLRF01708
    query & URL added: Saubhik on Oct 21, 2010 7:02 AM

  • Hiding columns/fields in the response portfolio after you distribute your form

    I have a 10 page from that has about 100 radio buttons (yes/no) in it.  After someone submits the form and I open my response portfolio the only columns/fields I want to see is the name, date, age and exclude all the radio buttons. Can you set an option LC ES before you distribute the form?
    I have found I can do this within the portfolio pdf, but only going to modify---view-then unchecking what I do not want to see…………BUT it is ONLY one at a time.  If there is another way of doing it LET ME KNOW!!
    Thanks
    mike

    The response file is a collection. But unfortunately it can't be edited, at least not easily.  You can remove a column with a script run in the console window.
    this.collection.removeField("FieldName");
    The field name is typically the name displayed at the top of the column.
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • How to get difference between two rows for a column field?

    hi, all,
    Could anyone show me what query statement is to get the difference betweem two rows for two column fields?
    The tables and its records are like this:
    id,      begin,      end
    p1         21          30
    p2          45          60
    p3          120          150
    I would like to have the query result like this
    id,    diff
    p1     15    --- which is 45 minus 30
    p2     60    --- which is 120 minus 60
    and so on...
    thank you in advance.
    Raffy

    You can use the LAG function to access values from previous rows:
    with q as (select 'p1' id, 21 v_start, 30 v_end from dual
    union all
    select 'p2', 45, 60 from dual
    union all
    select 'p3', 120, 150 from dual)
    select id, v_start, v_end, v_start - lag (v_end, 1, 0)
      over (order by id) v_diff from q
    ID,V_START,V_END,V_DIFF
    p1,21,30,21
    p2,45,60,15
    p3,120,150,60
    See the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/functions075.htm

  • Hiding columns/fields in the response portfolio in Adobe Pro X

    First WHERE is the modify---view in X
    In LiveCycle Designer, I have a 10 page from that has about 100 radio buttons (yes/no) in it.  After someone submits the form and I open my response portfolio the only columns/fields I want to see is the name, date, age and exclude all the radio buttons.
    In Adobe Standard 9 and while in the response portfolio I can remove the columns/fields, but only going to modify---view-then unchecking what I do not want to see…………BUT it is ONLY one at a time.  If there is another way of doing it LET ME KNOW!!
    Thanks
    mike
    Please send me your email if you do not understand what I am trying to get ask/explain. I can then send screen shots to you to see what i am trying to get across
    mike
    [email protected]

    The response file is a collection. But unfortunately it can't be edited, at least not easily.  You can remove a column with a script run in the console window.
    this.collection.removeField("FieldName");
    The field name is typically the name displayed at the top of the column.
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • How to make a particular row and column field editable in ALV

    Hi Experts,
    I have a requirement to make a particular row and column field editable in ALV output. Like i need to make 2nd row - 4th column editable of ALV output.
    Kindly help me out to solve this.
    Any help would be appreciated.
    Thanks,
    Ashutosh

    Hi Ashutosh,
    please check below, explained by some experts.
    In the below link  editing two columns MOD_RANK and TECH_RANK.
    These two columns will be in edit mode once after selecting the required record
    Editing single cell in a row of ALV table
    And also look for more info
    http://scn.sap.com/thread/884976

  • It's adding same column to relational model over and over

    I'm using 3.3.0.747 now, and I'm pretty sure that it wasn't doing this when I was using 3.1.4. I go into the logical model and add an attribute (say "My notes") to an existing entity (say "Specifications"), adding a preferred abbreviation of "notes" to it. I engineer to the logical model, and it dutifully says that it's going to add a column to the corresponding table ("specs"). And it does.
    Now, later, I add some attributes to some other table. When I do the engineering, it says that "notes" doesn't exist in "specs" and it's going to add it. If I let the engineering go through, I find that the relational model for "specs" now has two columns on it, "notes" and "notes1". If I do it again, I get "notes2". If I delete "notes1" and "notes2" and engineer again, "notes1" comes back.
    I'm not finding that it does it this every time, but it's doing it for maybe half the columns I add to existing tables. (I haven't figured out a pattern.) If it happens to be a foreign key relationship, it creates an additional foreign key.
    So far I've just added a step to my process to hunt down the new columns and delete them (or flag the logical model to not engineer the table at all if I know I haven't changed anything), but there must be something obvious I'm missing..
    Edited by: dbomp on Apr 17, 2013 10:53 AM
    I'll take back one thing I said: If the once-new column is related to a foreign key, it does keep re-creating the column, but it doesn't create new foreign key relationships to go with it.

    I figured it out so I thought I'd put this here in case others bump into it.
    What's going on is that the logical-to-relational engineering comparison tool doesn't recognize relational columns that the engineering tool didn't create.  Sometimes I would add columns to both the logical and relational models manually rather than engineering.  Say all I wanted to do was to add an active_flag to a table.  I'd add it to the relational model and then add it to the logical model's corresponding entity with exactly the same values.  Later, when I had a bunch of logical model changes to engineer, it wouldn't recognize the active_flag ("preferred abbreviation") in the entity as being the same thing as the active_flag in the relational table, and it'd create an active_flag2 column.
    Lesson:  only create new relational table columns by engineering them from the logical model.

Maybe you are looking for

  • Set document name when use PrintToPrinter with Crystal Reports 2008

    Hy, from my application, in .net environment,  I print report on printer at runtime with PrintToPrinter command, but all documents that I print have the same spool name: "document". Is there a possibility to set this name ? Thanks Filippo

  • Import directive

    Hi, what does it really do the import directive/statement? Please don't tell me it includes all the bytecodes from the packages used in the bytecodes generated from the java class which use them. Please help. Marla

  • Clear manual payments

    Hi, We have made some manual payments outside of SAP. But how can we clear the outstandings in the vendor accounts. Can we do this with running a paymentrun or how is this working in SAP? Thanks, Br, Maikel

  • My iMac suddenly goes to sleep

    My I hear some views why my iMac (intel core duo2) goes to sleep suddenly, i.e., even just say browsing the web or doing this message. Thank You.

  • How can I get the orclownerguid (unique user number) in Java Portlet?

    Hi, I find a unique number for each portal user in OID, it calls orclownerguid. And I try to obtain this number in my portlet Java with the JPDK. How can I get the orclownerguid in Java Portlet with JPDK? thanks regards jerome laforge