Passing a value from one page to another with multiple projects?

Hi,
I am trying to do something and I am not quite sure what I may be doing wrong. Situation is this:
I have 1 project which is our Model, deployed into a .jar and imported successfully into the main project. No problems with this.
I also have another project for editing profiles, in it it contains a taskflow running off of page fragments to accomplish a CRUD design. This is also deployed and imported into our main project successfully. It has a parameter value that should be detected upon entry into the pageflow called inEntityID.
I have our main project application which has both imported .jar files into the library.
I am using the unbounded adfc-config Flow to make sure that the pages can see each other. They can.
If I use no data being sent from my main page to my edit page I can see both the main page fine and what would be a working region that is displaying the task flow from our editing project. If I attempt to send a value from my main page to the edit page it will not show up.
ADFC looks like so: MAIN goEdit>EDIT
Code snippet from my button which gathers data from the main page table to send to the edit page via action goEdit
<af:commandToolbarButton text="Edit Entity"
id="ctb3" action="goEdit">
<af:setPropertyListener type="action"
to="#{pageFlowScope.sendID}"
from="#{bindings.PseLegalEntityId.inputValue}"/>
</af:commandToolbarButton>
PseLegalEntityId is the value that I have named which is an attiributevalue from my mainPageDef which links to the primary key that I want to send to edit.
The paramenter that I have set in the region is set as such: Task Flow Binding Parameters : id* inEntityID | Value* #{pageFlowScope.sendID}
I am using Jdeveloper 11.1.1.2.0
Any insight on what I may be doing wrong would be helpful. Thanks in advance,
PSP

Is more information needed to answer this? if so let me know which.
Thanks,
PSP

Similar Messages

  • Pass lov value from one page to another page

    hi
    can any one please help me how to pass selected lov value in one page to another page
    iam able to get the lov value in controller but how to pass that value as parameter to the VO in another page.

    Hi,
    Get the value in controller, create a hash map and put that value in hashmap.
    Then pass that hashmap in pageContext.forwardImmediately method.
    If you want to use that value in multiple pages, then put that in session variable.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Passing a Value from one page to Another is not working

    Hi friends,
    I have a table called country in which i build a Form in page1 with a report in page2 based on the table. So iif i clicked the edit icon in the page 2 report means then it can fetch the corresponding record in the page 1 form as well(so that i can update the record in the form).
    My scenario is i have one more search page  in page 3 which has one page item like Country_id(text item) with a Region button "Find".
    If i typed any country id in the text item and pressed Find, means then it should redirect to the form page 1 inorder to fetch those correponding country id details that i entered in the search page page 3.
    For that i followed the below steps like in the search page 3
    created a Find button in the page 3 with below options
    Button Style: Template Based Button
    Button Template: Button
    Button Type: Normal
    Action: Submit Page
    Button Style: Template Based ButtonThen under the after Processing i created a branch condition:
    On submit: After processing(After Computation, Validation and Processing)
    Target Type: page in this Appliction
    page           : 1
    Set these items P1_COUNTRY_ID
    with these values: &P3_COUNTRY_ID.
    (when button Find is pressed)
    But the id is not passing to the page 1 from the page 3(search region) that i entered inorder to query my form in page 1 according to the value that i entered in  search region in page3
    kindly help me friends with this.. Hope u understand my scenario..
    Brgds,
    Mini

    Hi,
    Source setting for that form page item P1_COUNTRY is
    Source Used:"Only when current value in the session state is null"
    Source Type: Static Assignment.Since i build this form along with report.
    Is im missing something.
    Regards,
    Mini

  • How to pass the value from one page to another page

    Dear Gaurav
    I have three pages
    1-creation page
    2-search page
    3-creation page
    in first creation page I have column name user write a% and submit to that search for that name.
    it is going to second page (search page)name a% is passed and search that corresponding value,the corresponding values are not there user will call third creation page and enter the details and save and click back to first page the value is not calling passing from third page to first page I submit the button in 3rd page the error is coming like this.
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example). If the browser's navigation buttons were not used, this error could have been caused by coding mistakes in application code. Please check Supporting the Browser Back Button developer guide - View Object Primary Key Comparison section to review the primary causes of this error and correct the coding mistakes.
    Cause:
    The view object xxcrmleadmgmtAM.xxcrmleadmgmtVO contained no record. The displayed records may have been deleted, or the current record for the view object may not have been properly initialized.
    in first page column name I removed view instance and view attribute the value is passing from third page to first page
    my requirement is the value call from 3 to 1 and user will enter remaining fields in 1st page and save the records.
    Regards
    Mahesh

    Hi Mahesh,
    Use
    OA.jsp?page=/oracle/apps/................&retainAM=Y).
    Thanks
    Jegan

  • How to pass column name as a   values from one page  to another

    hi
    i have created a report(pivot) from a table
    SQL> SELECT * FROM T;
    C1  C2          C3 D                SEQ
    A   AA           2                    1
    A   AB           3                    2
    A   AC           2                    3
    B   AB           5                    4
    B   AC           6                    5
    SQL> SELECT C1
      2  ,NVL(MAX(CASE WHEN C2='AA' THEN C3 END),'') AA
      3  ,NVL(MAX(CASE WHEN C2='AB' THEN C3 END),'') AB
      4  ,NVL(MAX(CASE WHEN C2='AC' THEN C3 END),'') AC
      5  ,SUM(C3) FROM T GROUP BY C1;
    C1          AA         AB         AC    SUM(C3)
    A            2          3          2          7
    B                       5          6         11
    SQL>
    my requirement in Apex is like this(reverse)
    eg-
    when i click on cell values '2' then,it should return
    C1  C2          C3 D                SEQ
    A   AA           2                    1
    {quote}how to pass column name as a  values from one page to another
    for example i have to pass 'c2' as a value to next page{quote}for report pivot you can reffer below link
    Report
    Amu

    thanks for your reply
    i 'm doing what exactly you mention here .
    my problem here is
    i have 15 columns
    i am executing a query based on the values of the column(column name)  in the target page
    1)here i am passing(all) the column values to the next page-but  i want to pass only one column values(column name)
    when i click on any cell of that  column
    OR
    2)i can pass all column name to target page -there(in the target page) i can filter out
    i think option 1 would good if you filter out the unwanted columns
    Regards
    Amul

  • Pass value from one page to another

    Hi All,
    "How to pass the value from one Flex page to anothere Flex
    page".
    In First Flex page contains One Inputtext and one button is
    there.After entering the data in inputtext box,the user clicks on
    the button then get the data from inputtext box and then i need to
    send that value to another flex page and display there.
    Can u tel me plz............
    Thanks & Regards,
    Nagarjuna.

    I believe you are thinking in terms of HTML and traditional
    page coding. As an old school ColdFusion guy I understand it is
    difficult to leave that behind. (at least it was for me.) Unless
    you literally have two different HTML pages that each have their
    own Flex app running in them you do not need to send data from one
    page to the next like you would with Web Forms. (If you are doing
    that you may want to simply write the data to a Shared Object, Pass
    it to a server to store and then feed back into the second Flex App
    when it loads or perhaps use the ExternalInterface to then pass it
    through as a series of URL parameters that can be loaded into the
    next Flex App.)
    In Flex you do not have to worry about loosing state between
    pages because there are literally no pages. Only different views.
    You would not "Send" the value from one page to another. You
    provide a mechanism for the second view to reference the same model
    or data object (most call them ValueObjects) that the first view is
    setting via the form fields.
    You would want to use a ValueObject in the first VIEW and
    then fill the object with the form data using setter methods on the
    object. For example set the fields onChange event to call the
    setter on the object and pass it the form fields value as the
    property. Alternately you could bind the values of the model
    directly to the fields so that they automatically obtain the data
    that is being filled in.
    Depending on how complex of an application you are going to
    build and how scalable it must eventually be you have many
    different options to choose from to allow the second View to use
    the data set but the first. However to make the application
    ultimately more scalable you are going to want to keep your view
    separated from the controller and that separated from the
    Model/ValueObject. (By seperated I mean in different classes.)
    I would suggest looking up the subject of MVC in Flex and
    also the Mediator Design pattern. There are many great sources of
    information.
    Here are a few links that may help with ideas.
    http://flexblog.faratasystems.com/?p=246
    http://pages.cpsc.ucalgary.ca/~heatond/mediator/
    http://livedocs.adobe.com/flex/3/html/help.html?content=introbd_2.html

  • Passing the values from one pgm to another pgm (Calling pgm has no sel scr)

    Hi gurus,
    In my requirement i need to pass the values from one program to another program.
    I am using SUBMIT statement . But , the program which i am calling has no selection screen.
    So how can i pass the values?
    Please help me ASAP.
    Regards,
    Bhanu.R

    Export your internal tables or work areas to a memory id in ur program before u use submit.
    Then in second pgm you have to import from memory id given above.
    example.
    EXPORT gs_header FROM gs_header to memory id 'HEADER'.
    EXPORT gt_item FROM gt_item to memory id 'ITEM'.
    SUBMIT YFIIN_DISHC_MAILREPORT EXPORTING LIST TO MEMORY AND RETURN.
    In your second pgm you can write
    import gs_header TO gs_header from MEMORY id 'HEADER'.
    import gt_item TO gt_item from MEMORY id 'ITEM'.

  • Pass variable value from one dashboard to another dashboard

    Hello,
    I have one main dashboard which have "year" prompt with drop down and variaous links & also some reports.
    And we have same year prompt on another dashboards only difference is, this prompt is editable not drop down.
    The requirement is, when I navigate from main dashboard to another dashboard through reports, that time selected prompt value
    comes in navigated dashboard prompt.
    But When I navigate from main dashboard to another dashboard using Link or using <A Href> tag, now selected prompt value can not come in navigated dashboard prompt.
    How can we pass selected prompt value from one dashboard to another dashboard? OR Is there any other technique?
    Thanks,
    Pradip

    Hi,
    You need to make the scope of the prompt as 'Dashboard' and if this doesnt work.
    Then use presentation variable in the first prompt and pass it to the second prompt.
    So this will surely pass the values across pages.
    Regards
    MuRam
    NOTE: Please mention if this resolved your problem/still facing and close the thread.

  • Is it possible to pass selected value from one jsp to another jsp page?

    In my welcome page(in jsp), if the user is selecting some values, is it possible to pass those values to another jsp page and display?
    If yes, how can it be done?
    please help..

    Yes, you would have to make the motion from one page to the next submit a form. Then on the second JSP you can use request.getParameter("nameOfInputField") to get the value the user selected.

  • How can I pass a value from one application to another through URL

    I am passing a value APP_USER from one application to another application (item is P_ASK_U) through navigation bar entrees URL.
    This is working with in the application..(javascript:popupURL('f?p=&APP_ID.:165:&SESSION.::&DEBUG.::P_ASK_U:#&APP_USER.#') )
    This one is not passing the value, eventhough it open the application..
    javascript:popupURL('http://htmldb.oracle.com/pls/otn/f?p=35129:1:::P_ASK_U:&APP_USER.');
    Is there any syntax error or is it not possible, please let me know..
    Thanks
    Venu

    Hi Scott,
    You are right, the first one do not need # character.
    In the Doc it is mentioned as....
    Pass the value on a URL reference using f?p syntax. For example:
    f?p=100:101:10636547268728380919::NO::MY_ITEM:ABC
    I am using the following URL, it pops up the external application, but it is not passing the APP_USER value to the page item of that application.
    javascript:popupURL('http://htmldb.oracle.com/pls/otn/f?p=35129:1::P_ASK_U:&APP_USER.');
    sorry I still do not know what I am missing..
    Thanks
    Venu

  • Unable to pass the values from one report to another using navigation links

    Hi All,
    I am facing a strange issue where I have to pass a column value from one report to other.
    I have kept navigation link in the 1st report and 'is prompted' option in the 2nd report
    Issue was , I'm not getting the filtered result in the 2nd report (all the records are being displayed)
    Can anyone advice where I was going wrong
    Thank you,
    AO

    Hi,
    The column which you have given navigation link and 'is prompted' column should same and exist in both the reports.You have to give the guided navigation in the value interaction of the column in the report1.
    mark if helpful/correct.........
    thanks,
    prasanna

  • How to move the dock from one display to another with multiple monitors?

    Sometimes the dock will switch from one monitor to another just by clicking in the dock area of the second montor. Other times it does not.

    I found out that I have to keep moving downward on my trackpad after the cursor hits the bottom of the screen. It works now.

  • Passing a field from one page to another

    Page 1 has fields that can have information entered or left blank. I need to pass these fields to page 2 were they can be used in the SQL to select rows from the oracle table. below is my sql. I can hard code the account no and it works.
    select
    "LOAD_ID",
    "ACCOUNT_NO",
    "PERMIT_NO",
    "PERMIT_YEAR",
    "PAYMENT_TYPE",
    "PERMIT_VOIDED",
    "NO_OF_AXLES",
    "AXLE_1_FEET",
    "AXLE_1_INCHES",
    "AXLE_2_FEET",
    "AXLE_2_INCHES",
    "AXLE_3_FEET",
    "AXLE_3_INCHES",
    "AXLE_4_FEET",
    "AXLE_4_INCHES",
    "AXLE_5_FEET",
    "AXLE_5_INCHES",
    "AXLE_6_FEET",
    "AXLE_6_INCHES",
    "AXLE_7_FEET",
    "AXLE_7_INCHES",
    "AXLE_8_FEET",
    "AXLE_8_INCHES",
    "PERMIT_COST",
    "PERMIT_TYPE",
    "LOAD_TYPE",
    "TRUCK_TOTAL_WEIGHT",
    "TRUCK_TOTAL_WEIGHT_DESC",
    "TRUCK_WIDTH_FEET",
    "TRUCK_WIDTH_INCHES",
    "TRUCK_WIDTH_DESC",
    "TRUCK_LENGTH_FEET",
    "TRUCK_LENGTH_INCHES",
    "TRUCK_LENGTH_DESC",
    "TRUCK_HEIGHT_FEET",
    "TRUCK_HEIGHT_INCHES",
    "TRUCK_HEIGHT_DESC",
    "TRAILER_LOAD_FEET",
    "TRAILER_LOAD_INCHES",
    "TRAILER_LOAD_DESC",
    "COMPANY_INFORMATION1",
    "COMPANY_INFORMATION2",
    "TRUCK_MAKE",
    "TRUCK_LICENSE_NO",
    "TRUCK_LICENSE_ST",
    "TRAILER_MAKE",
    "TRAILER_LICENSE_NO",
    "TRAILER_LICENSE_ST",
    "ORIGIN",
    "DESTINATION",
    "ROUTING1",
    "ROUTING2",
    "CMNT1",
    "CMNT2",
    "CMNT3",
    "CMNT4",
    "CMNT5",
    "CMNT6",
    "CMNT7",
    "CMNT8",
    "CMNT9",
    "CMNT10",
    "CMNT11",
    "COMMODITY_DESC1",
    "COMMODITY_DESC2",
    "PERMIT_BEGIN_DATE",
    "PERMIT_END_DATE",
    "PERMIT_ISSUE_DATE",
    "PERMIT_VOID_DATE",
    "OVERRIDE_SINGLE_AXEL_WEIGHT",
    "OVERRIDE_DOUBLE_AXEL_WEIGHT",
    "OVERRIDE_TRIPLE_AXEL_WEIGHT",
    "DELETE_AXLE",
    "CHECK_NO",
    "FRONT_AXLE_WEIGHT",
    "MIDDLE_AXLE_WEIGHT",
    "REAR_AXLE_WEIGHT",
    "TRUCK_TOTAL_FEET",
    "TRUCK_TOTAL_INCHES",
    "AXLE_SPACING",
    "PERMIT_FEES",
    "HOLIDAY_MSG",
    "GOVERNMENT_PERMIT",
    "OVERRIDE_AXEL_ALL",
    "MULTI_ST_TAG",
    "PERMIT_AGENT_ID",
    "PERMIT_SPECIFICATIONS1",
    "PERMIT_SPECIFICATIONS2",
    "SUPER_LOAD_AXEL_NO",
    "AXEL_BOOSTER_WEIGHT",
    "MULTISTATE_PERMIT",
    "MODIFICATION_COUNT",
    "USDOT_NO"
    from "LEGACY_ODOW_PERMITS"
    where
    (upper(nvl(:P1_SELECT_PERMIT,"ACCOUNT_NO")) is null)
    or((upper("ACCOUNT_NO")) = (upper(nvl(:P1_SELECT_PERMIT,"ACCOUNT_NO"))))
    )

    Your query on page 2 should be able to use the values submitted for page 1. I guess I'm assuming that your page 1 is a form wherein you're submitting the data for insertion/update to the database.
    The query on page 2 would be something like:
    select * from my_table where load_id = :P1_LOAD_ID, etc...
    This will probably get very complex very fast if you're going to allow nulls for very many of those fields.
    What exactly is your question/problem?
    Earl

  • How to pass the values from one screen to another

    HI,
    consider me21n,
    po is created with the item category L,so components tab is enabled.that u all know.
    i have added the custom tab in the item details with netwt,gross wt,no of pieces and one more field.
    those fields are also in component structure of material data.
    i need to pass the matnr,maktx,quantity,ntwt,grosswt from the component to be displayed in  the subscreen.
    i used import mdpm to xmdpm from memory id 'subcon',  where it is exported from the function module 'me_components-maintain'.
    how to pass  all the values from component of structure MDPM to the subscreen of custom tab in the item details.
    help me pls........................'

    hi everyone,
    MODULE status_0111 OUTPUT.
    data : fill type i.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.,
      DESCRIBE TABLE lt_zzmm_po_comp LINES fill.
      ctrl_0111-lines = fill.
    ENDMODULE.                 " STATUS_0111  OUTPUT
    MODULE fetch_data OUTPUT.
      ctrl_0111-lines = 2.
    import xmdpm to lt_xmdpm from memory id 'SUBCON'.
    IF not sy-subrc eq 0.
        CLEAR lt_zzmm_po_comp[].
        LOOP AT lt_xmdpm.
          MOVE-CORRESPONDING lt_xmdpm TO lt_zzmm_po_comp.
          APPEND lt_zzmm_po_comp.
        ENDLOOP.
    MOVE-CORRESPONDING lt_zzmm_po_comp TO ctrl_0111.
      read table ctrl_0111-cols into col where index = 3.
      ENDIF.
    ENDMODULE.                 " FETCH_DATA  OUTPUT
    MODULE pass_line OUTPUT.
      READ TABLE lt_zzmm_po_comp INDEX ctrl_0111-current_line.
      MOVE-CORRESPONDING lt_zzmm_po_comp TO ctrl_0111.
    ENDMODULE.                 " PASS_LINE  OUTPUT
    flow logic
    PROCESS BEFORE OUTPUT.
    MODULE status_0111.
    MODULE FETCH_DATA.
    loop at lt_zzmm_po_comp WITH CONTROL ctrl_0111 cursor
    ctrl_0111-current_line.
       module pass_line.
    endloop.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0111.
    loop.
    *module read_data.
    endloop.
    but i cant see my fields in the table control .....i dont know y it is  not coming?can anyone help me with code...

  • Passing a Rowkey from one page to another?

    One page A: I use the navigator and the CurrentViewRecord to
    show my Attributes. I extract the key, i add the value to the
    session.
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule
    configname="Bc4jPackage.Bc4jPackageModule.Bc4jPackageModuleLocal"
    id="Bc4jPackageModule" username="cbetb_java"
    password="cbetb_java" />
    <LINK REL=STYLESHEET TYPE="text/css"
    HREF="/webapp/cabo/images/cabo_styles.css" >
    <TITLE>
    Client-Projects
    </TITLE>
    </HEAD>
    <BODY>
    <jsp:useBean class="oracle.jbo.html.databeans.JSNavigatorBar"
    id="nav" scope="request" >
    <%
         nav.setShowNavigationButtons(true);
         nav.setReleaseApplicationResources(false);
         nav.initialize
    (pageContext,"MyProject2_Bc4jPackage_Bc4jPackageModule.ClientsVie
    w");
    nav.addButton(nav.NAVIGATE_INSERT, "ClientEdit.jsp");
         nav.render();
    %>
    </jsp:useBean>
    <BR><BR>
    <jsp:useBean
    class="oracle.jbo.html.databeans.JSViewCurrentRecord"
    id="currentRecord" scope="request" >
    <%
         currentRecord.setShowRecordNumbers(true);
         currentRecord.setReleaseApplicationResources(false);
         currentRecord.setDisplayAttributes
    ("Clientid,Companyname,Address,City,Stateorprovince,Postalcode,Co
    untry,Phonenumber,Faxnumber,VatNr,Vat,Notes,UrlWebsite,Oracle,Mic
    rosoft,Powerbuilder,Customer,Lead,Supplier,Created,Lastupdated,Ba
    nkaccountnr1,Bankaccountnr2");
         currentRecord.initialize
    (pageContext,"MyProject2_Bc4jPackage_Bc4jPackageModule.ClientsVie
    w");
         currentRecord.render();
    String k ;
    Row r = currentRecord.getRowSet().getCurrentRow () ;
    out.println ( r.getAttribute ( "City") ) ;
    k =currentRecord.getRowKey( r ) ;
    out.println ( currentRecord.getRowKey( r ) ) ;
    session.setAttribute("rkey",r);
    %>
    </jsp:useBean>
    On page B: I want to get the row associated with the rowkey i
    passed to the session. But i seem to be unable to get that
    rowkey correctly?!
    <jbo:ApplicationModule id="Bc4jPackage.Bc4jPackageModule"
    configname="Bc4jPackage.Bc4jPackageModule.Bc4jPackageModuleLocal"
    username="cbetb_java" password="cbetb_java"/>
    <br>
    <% Key key = (Key)session.getAttribute("rkey");%>
    <>
    <jbo:DataSource id="ds" appid="Bc4jPackage.Bc4jPackageModule"
    viewobject="ClientsView"/>
    <jbo:Row id="crow" datasource="ds" action="Find"
    rowkeyparam="key" >
    What is wrong with the code? Is there a better way to pass the
    rowkey?
    thx

    One page A: I use the navigator and the CurrentViewRecord to
    show my Attributes. I extract the key, i add the value to the
    session.
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule
    configname="Bc4jPackage.Bc4jPackageModule.Bc4jPackageModuleLocal"
    id="Bc4jPackageModule" username="cbetb_java"
    password="cbetb_java" />
    <LINK REL=STYLESHEET TYPE="text/css"
    HREF="/webapp/cabo/images/cabo_styles.css" >
    <TITLE>
    Client-Projects
    </TITLE>Hi,
    The api for setting of session objects is session.setAttribute
    (String name, Object obj). In your first jsp, you set a string
    with a string and then tried to get back the object referencing
    the a key with (Key)session.getAttribute.
    You can do this two ways, you just have to be consistant with
    your implementation:
    One way is to get the string and set the attribute like you did
    in the first jsp with String k. In the second you must retrieve
    it with a string call (String)session.getAttribute and then
    maybe do a findbyPrimaryKey method.
    The second way is to set the attribute with the key and retrieve
    it with the a key:
    jsp1:
    Key key;
    key = getmyCurrentRow().getKey();
    session.setAttribute("myk", key);
    now in the second jsp2:
    Key key = (Key) session.getAttribute("myk");
    Just remember to compare apples to apples and oranges to
    oranges!!!!!
    -aaron
    </HEAD>
    <BODY>
    <jsp:useBean class="oracle.jbo.html.databeans.JSNavigatorBar"
    id="nav" scope="request" >
    <%
         nav.setShowNavigationButtons(true);
         nav.setReleaseApplicationResources(false);
         nav.initialize
    (pageContext,"MyProject2_Bc4jPackage_Bc4jPackageModule.ClientsVie
    w");
    nav.addButton(nav.NAVIGATE_INSERT, "ClientEdit.jsp");
         nav.render();
    %>
    </jsp:useBean>
    <BR><BR>
    <jsp:useBean
    class="oracle.jbo.html.databeans.JSViewCurrentRecord"
    id="currentRecord" scope="request" >
    <%
         currentRecord.setShowRecordNumbers(true);
         currentRecord.setReleaseApplicationResources(false);
         currentRecord.setDisplayAttributes
    ("Clientid,Companyname,Address,City,Stateorprovince,Postalcode,Co
    untry,Phonenumber,Faxnumber,VatNr,Vat,Notes,UrlWebsite,Oracle,Mic
    rosoft,Powerbuilder,Customer,Lead,Supplier,Created,Lastupdated,Ba
    nkaccountnr1,Bankaccountnr2");
         currentRecord.initialize
    (pageContext,"MyProject2_Bc4jPackage_Bc4jPackageModule.ClientsVie
    w");
         currentRecord.render();
    String k ;
    Row r = currentRecord.getRowSet().getCurrentRow () ;
    out.println ( r.getAttribute ( "City") ) ;
    k =currentRecord.getRowKey( r ) ;
    out.println ( currentRecord.getRowKey( r ) ) ;
    session.setAttribute("rkey",r);
    %>
    </jsp:useBean>
    On page B: I want to get the row associated with the rowkey i
    passed to the session. But i seem to be unable to get that
    rowkey correctly?!
    <jbo:ApplicationModule id="Bc4jPackage.Bc4jPackageModule"
    configname="Bc4jPackage.Bc4jPackageModule.Bc4jPackageModuleLocal"
    username="cbetb_java" password="cbetb_java"/>
    <br>
    <% Key key = (Key)session.getAttribute("rkey");%>
    <>
    <jbo:DataSource id="ds" appid="Bc4jPackage.Bc4jPackageModule"
    viewobject="ClientsView"/>
    <jbo:Row id="crow" datasource="ds" action="Find"
    rowkeyparam="key" >
    What is wrong with the code? Is there a better way to pass the
    rowkey?
    thx

Maybe you are looking for

  • BUPA_REL: Custom Function exit

    Hi I'm replicating BP in CRM as Vendor in ECC. When a BP and its relationship is created in CRM, the following BDOcs are generated: VEND_MAIN, BUPA_MAIN & BUPA_REL. To extend the Vendor to a particular company code and update couple of fields for ven

  • Dynamically load content by date using xml

    i would like to load content by date using xml. meaning if i have 5 upcoming social events listed, i want them to dynamically drop off from my webpage as the event date passes. i would like to use the built in spry xml dataset functionality, but don'

  • Service process is running in code page [MS Windows Latin 1 (ANSI), superse

    All, I am trying to create Integration service, getting errors on Windows. Can anyone tell me where exactly where the service process is pulling the Latin 1(Ansi) settings from. I am stuck on this setup. regards girish

  • Hide values in URL, passing data between two webdynpro(ABAP) applications.

    Hi    When transferring the data between two webdynpro applications,  How to hide the values in URL. Example : First application is using for login                 Second application is for some transactional screens. Based on first application login

  • Seting the default JTree icons

    Hello, I want to edit another icons than the default icons in JTree object. I look in the javadoc at the several methods, but I do not find a method witch can give me the possibility to setup the collapsed and expanded icon. If some one now how to do