How to get the Parent Id using Groovy script in FCRM

Hi,
I have created one custom object A. I related this object with Opportunity. I created one custom button in custom object. When I click the button I need to get the Optortunity Row Id and pass it to external system.
If I define the OpportunityVO itself it throwing error.
Our application Version : 11.1.7.0.0.
Thanks in Advance,
Mohan

Hi Mohan,
You'll have to use the internal "bindings" to get this value from the session context. As a general recommendation, look at the properties of other pages where this is included (incl. hidden) and see if you can derive the groovy expression from that. You can see an example in this video.
Kind regards, Richard
FA Developer Relations
http://blogs.oracle.com/fadevrel

Similar Messages

  • How to get the context data using java script in interactive forms

    Hi All,
    How to get the context data using java script in interactive forms by adobe,  am using web dynpro java
    thanks.

    Hi venkat,
    Please Refer this link.
      Populating one Drop-Down list from the selection of another Drop-down list
    Thanks,
    Raju.

  • How to get the parent of a component in fx?

    Here is an example:
    Index.fx:
    Stage {
        title: "Online book library";
        width: 1024
        height: 768
        scene:Scene {
        fill: Color.WHITE
        content: [
           banner ,
           login = Login{translateX:715 translateY:135}
    };Login.fx:
    var logOn : Button = Button {
            translateX:25 translateY: 170
            text: "Log On"
            font: Font {size:11 name: "Verdana Bold"}
            action: function() {
                showHello();
    function showHello(){
       // add a label in index.fx whose text is "welcome!";
        }I want to show something on the index.fx but I don't know how to get the parent from the child component?
    In Flex, we use parent or parentApplication, Is there a similar function in JavaFX?

    Reusing the same Tile example, I had no problems, I suppose I was doing wrong the first time:
    def IMAGES_WIDTH = 100;
    def IMAGES_HEIGHT = 100;
    var COLUMN_NB = 3;
    var ROW_NB = 3;
    var scene: Scene;
    var previews: Container;
    Stage
      title: "Test of Tile layout"
      scene: scene = Scene
        width: 500
        height: 500
        fill: Color.LAVENDER
        content:
          previews = Tile
            hgap: 10
            vgap: 10
            layoutX: bind (scene.width - previews.width) / 2
            layoutY: bind (scene.height - previews.height) / 2
            columns: COLUMN_NB
            content: for (i in [ 1 .. COLUMN_NB * ROW_NB ])
              ImageView
                id: "IV{i}"
                image: Image
                  url: "{__DIR__}clock.gif"
                  width: IMAGES_WIDTH
                  preserveRatio: true
                onMousePressed: Hide
    function Hide(evt: MouseEvent): Void
      println("{evt.node} ({evt.node.id}) - {evt.node.parent}");
      var nm: Node = evt.node.parent.lookup("IV5"); // Middle node
      nm.visible = false;
      var ntl: Node = evt.node.parent.lookup("IV1"); //Top left node
      (ntl as ImageView).viewport = Rectangle2D { height: IMAGES_WIDTH/2, width: IMAGES_WIDTH/2 };
      (evt.node.parent as Tile).hgap = 20; // Strange effect, but works
    }

  • How to get the parent Frame of a component ?

    Hi,
    I'm wondering how to get the parent JFrame (or JDialog) of a component.
    Thanks for tips

    I'm using this code:
    public Component getFrame(Component comp)
        Component frame = comp;
        while ((frame != null) && !(frame instanceof Frame))
            frame = frame.getParent();
        if (frame == null)
            frame = comp;  // no parent found
        return frame;
    }

  • How to get the parent window in sub-child controller class in javafx?

    how to get the parent window in sub-child controller class in javafx?

    You can get the window in which a node is contained with
    Window window = node.getScene().getWindow();Depending when this is invoked, you might want to check the Scene is not null before calling getWindow().
    If the window is a stage that is owned by another window, you can get the "parent" or "owner" window with
    Window owner = null ;
    if (window instanceof Stage) {
      Stage stage = (Stage) window ;
      owner = stage.getOwner();
    }

  • How to get the list of Used Quotations & Non Used Quotations

    Hi MM Gurus,
    How to get the list of Used Quotations & Non Used Quotations.
    i am not talking about Open quotation ,closed quotation..
    if once i created PO through quotation it should be used quotation. i not created PO through quotation
    it s should be Non used quotation. how to get this list through when we create PO  through ME21N
    document over view. is there any opetion in Dynamic selection or somthing ..???
    Thanks in Advance..
    Anthyodaya.

    ok.

  • How to get the computer name using C#?

    Hi all,
    Does anyone know how to get the computer name using c#?
    Thanks

    Try this, string computer_name = System.Environment.GetEnvironmentVariable("COMPUTERNAME");
    Naren.

  • How to Get the Parent - Child Relationship

    Hi ,
    In my application having 100 tables with parent - child releation ship without using casecade constraints
    i want to delete the parent with child and sub child records
    Example
    Table - 1
    parent1
    child 2
    Table - 2
    Child 1 - Parent 1
    Parent 2
    Table - 3
    Child 1 - Parent 2
    Parent 3
    Table - 4
    Child 1 - Parent 3
    How to delete the parent table ? Is it any scripts available ?
    Regards
    Sudhakar P.

    Hi,
    1) Firstly identify the parent tables using
    SELECT a.table_name, 0
    FROM user_tables a, user_tab_columns b
    WHERE a.table_name = b.table_name
    store these in one table say ID_table
    2) Identify dependent tables and sore in table say table_dependency using
    SELECT LEVEL, parenttable, parentcol, childtable, childcol
    FROM (SELECT UNIQUE parenttable, parentcol, childtable,
    b.column_name childcol
    FROM (SELECT p.table_name parenttable,
    k.column_name parentcol,
    k.POSITION pos,
    c.table_name childtable,
    c.constraint_name CONSTRAINT
    FROM all_constraints p,
    all_constraints c,
    all_cons_columns k
    WHERE p.constraint_name =
    c.r_constraint_name
    AND c.r_constraint_name =
    k.constraint_name
    AND p.constraint_type IN ('P', 'U')
    AND c.constraint_type = 'R'
    AND p.table_name != c.table_name
    ORDER BY p.table_name,
    c.constraint_name,
    k.POSITION) a,
    all_cons_columns b
    WHERE a.CONSTRAINT = b.constraint_name
    AND a.pos = b.POSITION)     
    3)Now using these details find tables without cascade rule as below
    SELECT *
    FROM table_dependency
    WHERE child_table IN (
    SELECT DISTINCT table_name
    FROM user_constraints
    WHERE constraint_type = 'R'
    AND delete_rule <> 'CASCADE'
    AND table_name IN (SELECT child_table
    FROM table_dependency)
    AND r_constraint_name IN (
    SELECT constraint_name
    FROM user_constraints
    WHERE table_name IN (
    SELECT table_name
    FROM id_table
    UNION
    SELECT child_table
    FROM table_dependency))
    AND table_name NOT IN (
    SELECT table_name
    FROM id_table));

  • How to get the parent node of the current node?

    Hi all,
    i want to get the parent node of the current node and the not the parent of the parent node.
    thank you very much

    Hi,
    the parent node of <subnode1-2>29.99</subnode1-2> is (node1), how can do to get <node1> throw <subnode1-2>29.99</subnode1-2> the sub node of <node1>.
    As per my understanding the parent node of <subnode1-2>29.99</subnode1-2> is book not the node1.
    If you want node 1 as a parent of subnode1-2 than your xml will look like this.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
    <book>
    <fathernode>Harry Potter</fathernode>
    <node1>
           <subnode1>29.99</subnode1>
           <subnode2>29.99</subnode2>
    </node1>
    <node2>
           <subnode1>19.99</subnode1>
           <subnode2>19.99</subnode2>
    </node2>
    </book>
    </bookstore>
    and also if you want tom retrive float data than refer following XPATH.
    "//book[[price='1000']]/price/text()"
    Regards,
    Manoj Bilthare

  • How to get the directory name using vnode address

    All,
    I am writing a C program and need info on the following:
    1. I have got the vnode address of the current directory. my question is "How to get the inode information (in particular, directory name) from the vnode address ?". What calls i need to use in order to get the info ?
    2. Any helpful web sites containing the above information ?
    Thanks in advance

    package x.y;
    import java.io.File;
    public class Test {
        public static void main(String[] args) {
            System.out.println(new File(Test.class.getResource("").getFile()).getAbsolutePath());
    }

  • How to get the best results using the refine edge tool?

    how to use the sliders in the refine edge tool? how do you get the best results using the fine edge tool?

    You should ask in the forum for the (un-named) program you are using
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How to Get the Parent Process ID from Child BPEL Process

    Hi All,
    We have a requirement to get the Parent BPEL Process ID from Child BPEL Process. One way is we can pass the Parent BPEL process ID from Parent BPEL Process to Child BPEL process. Is there any standard function available to get the Parent BPEL process ID from Child Process?
    P.S: We are using BPEL 10.1.3 Version.
    Please share any info on this.
    Thanks in Advance,
    Saravana

    Hi Saravana,
    The existing methods in 10.1.3x allow a following (a bit of a convoluted way):
    In a BPEL Java embedding activity, you can use the following code to get the parentProcessname:
    String parentInstanceId = getParentId();
    String parentProcessname = getLocator().locator.lookupInstance(parentInstanceId).getProcess().getProcessId().getProcessId();Hope this helps,
    Regards,
    Shanmu
    http://www.prshanmu.com/articles/

  • [CS3] How to get the parent spread of a page?

    Hallo!
    I have the page UID.
    How to get the spread of this page?
    Thanks,
    Alois Blaimer

    You'll also need an IDataBase*, from any object in the same document.
    Then you can follow IID_IHIERARCHY one up to the kSpreadLayerBoss, two up to the kSpreadBoss or just refer to the hierarchy root.
    Dirk

  • How to get the parent value

    Hi
    I am using jdev 11.1.1.5
    In this i had used gl_acct_classes VO and gl_accounts VO and an updatable AccountsVO
    select * from gl_acct_classes,gl_accounts from gl_acct_classes.acct = gl_accounts.acctI have the fields gacl_id , gacl_prim_id
    In this which ever gaclid has the value null in gacl_prim_id had been consider as parent
    for eg
    sno        gacl_id       gacl_prim_id
    1             a                                       //It is consider as parent since gacl_prim_id is null
    2             o                  a
    3             e                  a                  
    //In this a is parent for o and e
    4             b                                       //parent
    5             t                   b
    6             r                   b
    // b is parent for t and rI need to get the sum of all the accounts having o,e as a class id in which a is a parent and t,r as a class id in which b is a parent
    I hope that i may be clear for u..,

    I had used ParentVO GlAccountClassVO
    I had also created a viewlink
    ParentVO.cl_id = AccountClasses.GACL_ID
    Querry for ParentVO updatable
    SELECT GlAccountClasses.GACL_ACCT_TYPE,
           GlAccountClasses.GACL_BU,
           GlAccountClasses.GACL_CRE_BY,
           GlAccountClasses.GACL_CRE_DATE,
           GlAccountClasses.GACL_DESC1,
           GlAccountClasses.GACL_DESC2,
           GlAccountClasses.GACL_GP_FLAG,
           GlAccountClasses.GACL_ID,
           GlAccountClasses.GACL_OPTYPE,
           GlAccountClasses.GACL_PRIM_ID,
           GlAccountClasses.GACL_PT_SEQ_NO,
           GlAccountClasses.GACL_SCH_NO,
           GlAccountClasses.GACL_SEQ_NO,
           GlAccountClasses.GACL_UPD_BY,
           GlAccountClasses.GACL_UPD_DATE
    FROM GL_ACCOUNT_CLASSES GlAccountClasses
    WHERE GACL_PRIM_ID is nullI had created a Transient attrbute with the following groovy expression sinct it doesnt work
    AccountClass.sum("GapbDebitAmt")

  • How to get the parent name in the hierarchy

    Hi Colleagues.
    Im working on with java webdynpro by showing hierarchical data.
    When I select a leaf item, I should get the possible parent items.
    For Ex:
    A
    B
    C
         |
    D
    When I select D, I need to get the information as A-B-C-D.
    How can I acheive this?
    Thanks
    Rakesh

    Hi Rakesh
    You can go up to the root using the following methods:
    IDNode dNode = dElement.node();
    IWDNodeElement cElement = dNode.getParentElement();
    IWDNodeElement bElement = cElement.node().getParentElement();
    BR, Siarhei

Maybe you are looking for

  • Compile other languages in a Java program

    Hi all, Is it possible to compile and run other programming languages in a java program? Thx in advanced!

  • File Sharing with Windows (XP/Vista)

    Hello all, I've studied various websites including the Apple support documents and I'm still a little confused about file sharing. Is there a way to share only certain folders via SMB with a vista/xp machine? E.G. can I just share my 'public' folder?

  • Connect airport to tv

    Hi, What do i need to connect my airport express to my tv? I have the audio working through my stereo, but want to put pictures and video onto my TV like in the adverts... Many thanks Al

  • Question about resizing a 'decorative' object

    Hi all Please bear with me this is tricky to describe. I have on a form I have obtained from formcentral an attractive banner: its just a nice colour nothing else but it spans the entire width of the form and is about 2 inches high. I wanted to copy

  • Cannot open illustartor cc 2014 files from bridge

    cannot open illustartor cc 2014 files from bridge... after I installed Illustrator CC 2014 and updated Bridge CC I cannot open the Illustrator files from Bridge as it seems the path for opening such files still points to the old Illustrator CC folder