Details page displays nothing

Hi there,
DW CS3, PHP mySQL DB.
I have a:
Search Page: Works!
Results Page: Works!
Details Page: Does not display any data!
For some reason my Details page displays nothing. I have the
"Goto
Details Page for PHP" server behaviour" from
http://www.dengjie.com/
I have other details pages that work excellent but cannot get
this to
work.
My details page's SQL looks like this:
SELECT *
FROM test
WHERE p_ID = colname
Name: colname
Type: numeric
Default Value: -1
Run-time Value: $_GET['p_ID']
The fields I want to display are binded with the
corresponding fields of
the DB.
Please help me out.
Regards,
Deon

Hi there,
DW CS3, PHP mySQL DB.
I have a:
Search Page: Works!
Results Page: Works!
Details Page: Does not display any data!
For some reason my Details page displays nothing. I have the
"Goto
Details Page for PHP" server behaviour" from
http://www.dengjie.com/
I have other details pages that work excellent but cannot get
this to
work.
My details page's SQL looks like this:
SELECT *
FROM test
WHERE p_ID = colname
Name: colname
Type: numeric
Default Value: -1
Run-time Value: $_GET['p_ID']
The fields I want to display are binded with the
corresponding fields of
the DB.
Please help me out.
Regards,
Deon

Similar Messages

  • Notification Detail Page is not displaying

    Hi All,
    I have a requirement of creating a read only workflow admin responsibility. For that I have followed the below steps.
    1. Set 'Workflow Administrator Web Applications' as the Workflow Administrator from administration tab.
    2. Create a grant with the below details.
    Grantee Type: All Users
    Responsibility: Workflow Administrator Web (New)
    Object: Workflow Items
    Data Context Type: All Rows
    Permission Set: Business workflow item permission set
    I have done this for viewing the workflow owned by all users and followed the ID 1328447.1 for doing this.
    Now everything is working fine, but Notification Detail page is not displaying. It is loading for a long time and
    giving the errors, ('The connection was reset' in Mozilla and 'Page Cannot be Displayed' in IE).
    Notification detail page will come when I remove this Grant, but it will display only the workflows owned by
    that particular user. So this grant is a mandatory component for me.
    The issue is there even for the admin responsibility(Workflow Administrator Web Applications) when assigning
    this grant.
    Can anyone help me on this to resolve this issue.
    Thanks & Regards,
    Charls

    Hi Helios,
    Thanks alot for replying. Below are the answers to your queries.
    1. EBS Version : 11.5.10.2
    Client Version: 11.2.0.1.0
    2. Browser version:
    IE: 7.0.5730.13
    Mozilla: 14.0.1
    3. I have tried it in different machines(4 machines). There also I am facing the same issue.
    Hoping for your valuable comments.
    Thanks & Regards,
    Charls

  • Display additional fields in Service Request detail page

    Hi All,
    Is it possible to display some fields like Account Type, Contact Type etc. in Service Request detail page?
    Service Request Field Edit page only allows to add default value to the newly created field, that's not the result that I needed.
    Any suggestions are appreciated.

    Bruce,
    There's a function called joinfield value that will allow you to bring across information from those pages, if you email me (alex.neill@{see profile}) I'll send you the document.
    cheers
    Alex

  • Detailed page to be called and displayed from 3 different tabs

    Hi,
    That's my problem. I have a detailed form called from 3 different pages. When calling the detailed form the 3 tabs are highlighted.
    Is there any way to tell Apex which tab is to be highlighted on each time.
    Many thanks

    Hi,
    Why don't you simply NOT list the Detail page on any of the tab properties? i.e. when the detail page is being shown, none of the tabs will appear lit up. Would that work?
    Wouldn't this look akward?
    Or you could create the form region on Page 0 and conditionally display the region as appropriate so you don't have to duplicate it on multiple pages.
    The detail form contains two updatable regions. I don't think this is a good idea.
    Any ideas what people normally do in scenarios like mine?
    I don't mind replicating the page if "that's a good practice" but I would appreciate other suggestions.
    Many thanks again.

  • Displaying messages on a details page

    i have a website for musicians each musician has their own
    details page that displays all their details i want to create a
    section that will display messages to the band and the band can
    answer these comments and they will be displayed on the same page
    it will be like a guestbook for each musician how do i do this do i
    just need to link the database tables or what? im not sure if
    anyone can help please let me know. cheers

    Since it sounds like you're using a standard relational
    database, then there should be a field in the first table that ties
    to the second table. Lets call that field name1 for demo's sake.
    In the 2nd Recordset (switch to advanced mode so that you can
    put it in manually)
    SELECT * FROM TABLENAME2
    WHERE name1 = DBNAME.TABLENAME1.name1
    ORDER BY record_number (or a date field) DESC
    Another way to do it is to set it up in two pages. set up the
    first page using your first recordset and bind it into a form. then
    pass the name1 value in that form to the second page (GET not POST)
    and you can set up your second page's recordset to filter (name1 =
    URL Parameter = name1 (the passed field from the first page) that
    will pull all info based on the info passed from the first
    recordset and display it.
    Cheers
    Chuck

  • Details page : no information display.

    Hi all,
    I'm new on OA F. so started with the tutorials exercises.
    At the end of exercise "Drilldown to Details", my page didn't look like expected.
    I should have a link to display details of an employee.
    I do have a link, it does got me to the details page, BUT there is no informations display face to the prompt of each properties.
    I do compile properly so there is no log.
    I tried to use the debug mode but it seems to me that I am not going into the method "intiDetails()" at the right time.
    When I click on the link, I expect to enter the method but I don't.
    (I do when I start the "debug EmpDetailsPG.xml" command on jDev)
    I checked I have correctly written the parameters in the property "Destination URL" of the component used for the link :
    OA.jsp?page=/mfab/oracle/apps/ak/employee/webui/EmpDetailsPG&employeeNumber={@EmployeeId}&employeeName={@EmployeeName}&retainAM=Y&addBreadCrumb=Y
    I compared with the solution given in LabSolutions project but I didn't find my mistake.
    Does this kind of problem rings any bell to you ?
    Cheers,
    Marine

    Hi AJ,
    Thanks for your answer. I hadn't thought of using S.O.P. ... I gave up a while ago this habit and became used to IDE debuggers.
    So, I tried your trick but I had the same problem : I didn't reached the processRequest() of my controller when I clicked the detail's link.
    I had the thought to check whether or not a controller was specified for my EmpDetailPG. Indeed, there was not.
    I tried to add EmployeeDetailsCO as the controller class in "MainRN" wich is the messageComponentLayout of the pageLayout of EmpDetailPG.
    At that time, I was able to see my values on the console (which is an improvement !) but I had a technical error in my page.
    So I defined the controller class not in MainRN but in PageLayoutRN (which is the pageLayout of EmpDetailPG, as you may guessed) and it dit it !
    I don't know why it should be define in the pageLayout instead of messageComponentLayout, but it's working.
    Thanks again.
    Marine

  • Inserting a new extension field in the line item details page

    Hi!
    Is it possible to insert an extension field/collection in the line item details page of the master agreement? I have tried supplying several Field ID found on that page on the DISPLAY AFTER field of the extension, but nothing works - the new field still gets displayed at the header page.
    Thanks in advance.

    Hi,
    Line Item is an independent class. You cant add an extension to Line Item through Master Agreement. This is the reason why the extension you add appears on the header tab of Master Agreement.
    When I go to create an extension definition, I don't find Line Item in the drop down of Extended Class Name. So, my guess would be that we cannot create an extension definition for Line Items.
    Let us know if you, or anybody, has a way to achieve it.
    Thanks
    Devesh

  • How to add custom link or button to task details page to open a different t

    Dear All
    In HumanTasks Workflow, On task details page, I want to add a custom link or button. Clicking on this link or button, should load a different task details page.
    The exact business usecase is like this:
    1. We have some human tasks with very detailed payload like about 100 attributes. When the task is submitted for Approval, we send notification emails. These emails shows the Task Details with all these 100 attributes along with standard Approve, Reject buttons etc. NOW in addition to this, we want to add extra custom button/link like Custom View. When we click on this buton or link, it should replace the task details page with the Custom task details page contents. The reason is most of the managers/approvers access their emails on smart phones like iphones. So in these phones, seeing full task details (100 attributes) is very tedious. So we want to provide a simplified view of same task with very minimum attributes like about 10 with Approve, Reject buttons. Now this compact view details will have a button called Detailed View on click on which it loads details page.
    So we want to have 2 pages for a task:
    taskDetails1.jspx -> Has all 100 attributes with a custom button/link called "Compact View". Click on Compact View switch to below page.
    taskCompact1.jspx -> Has only 10 attributes with a custom button/link called "Detailed View". Click on Detailed View switch to above page.
    1. I tried implementing this using the VacationRequest sample where the payload is like creator, startdate, enddate, reason. I already have taskDetails1.jspx page, which shows this information in the email body.
    2. I want to add another button to taskDetails1.jspx so that when I click on it, I want to load a different page like taskCompact.jspx which has only say creator, reason.
    I already added a link and gave the url with parameters like taskId, taskContext etc which I got from bindings, but nothing is displayed when I click on custom button. The taskId, context values are comming correctly in the url.
    So bottom line, what is the URL that I can provide in the task details page, to load a different task details page contents. I want to pass other taskdetails jsp details.
    Please let me know, if there is any other approach to implement this usecase.
    Thanks in advance
    Ravi Jegga

    Hi,
       I am not sure if you can add your own custom buttons to the application tool bar because your table control is in a sub screen area in a standard screen so the menu area would be controlled by the standard screen and not the subscreen , but along side the table control you can give buttons for scrolling and handle the same in the subscreen if you check the FM EXIT_SAPLMEREQ_002 it has a variable IM_UCOMM which would have the ucomm set in the subscreen so here you can handle your user command to scroll on the table control.
    Regards,
    Himanshu

  • Master Detail page join

    I am trying to create a master - master -detail page
    environment in PHP which uses joining between two tables within the
    same MySQL db.
    The first page (chessmenu.php - recordset chessmenu) displays
    a list of chessboard types from a MySQL table called chessmenu in
    the chess db:
    The 3 fields are:
    itemID (auto_increment),
    itemName (ie. Marble) and
    itemType (M)
    (NOTE: In this test, there are 3 rows, Marble, Glass and
    Theme -
    itemType will be my joining field, M, G, and T respectively
    - which are all unique)
    I want this first page to link to the next page and send the
    URL parameter = chessboards.php?recordID=<?php echo
    $row_chessmenu['itemType']; ?>
    I created the second page (chessboards.php - recordset
    chessboards) and made the FILTER within the recordset as follows:
    itemType = URL Parameter recordID
    When I run the first page, displays the proper items,
    however, when I click one of those items (ie Marble (M)) it
    displays nothing on the second page. I ran the query TEST on the
    second page in the recordset filtering and when I enter M, it
    displays the correct records (2 total).
    They would then select the type of Marble Chess board from
    the second page, which would then, send them to the detail page (3
    pages total, thus my comment about Master, Master, Detail)
    What am I doing wrong? Am I sending the URL Parameter
    incorrectly? Any help would be appreciated. I thought I was
    following the instructions in the TUTORIAL on this site:
    "If the recordsets are different, make sure the recordset on
    the detail page contains at least one column in common with the
    recordset on the master page. The common column is usually the
    record ID column,
    but it can also be the join field of related tables."
    BTW - Both ItemType fields in both Tables are the same
    (CHAR(1))
    Thanks,
    Steve

    On Mon, 11 Dec 2006 04:03:08 +0000 (UTC), "omnigate"
    <[email protected]> wrote:
    >UPDATE: This does work (forgot to refresh the page in
    testing) to a limited
    >degree. As I mentioned above, when it sends the URL
    Parameter from first page
    >to second page (itemType = M), the second page IS
    receiving the info, HOWEVER,
    >it only displays the first record (There are 2).
    >
    > Is there a way to get the URL parameter to pick up
    multiple records or am I
    >just going about this the wrong way. Thanks.
    Are you using a Repeat Region server behaviour on your second
    page?
    Steve
    steve at flyingtigerwebdesign dot com

  • Can't view the Database source details page

    Hi,
    I am trying to create a database source.
    Sources -> select a Database,
    then clicks on the Create button.
    It's going to next page. but, Nothing display this page. I am trying to create some other sources. Its display the corresponding details.
    I tried to remove my local cache files and also restart the search server. But, nothing display in this page. Anything wrong?
    FYI: Yesterday i tried,
    Sources -> select a Database,
    then clicks on the Create button.
    It's displays the database source details.
    Thanks!
    Message was edited by:
    user633593

    Not sure I understand your problem.
    What should happen:
    1. In the Admin screen, you click on the "Sources" tab.
    2. This lists all your current sources (if any).
    3. Then you open the drop-down list next to "Source Type" and choose "Database".
    4. Click "Create"
    5. This should open a page "Create User-Defined Source: Step 1: Parameters"
    where the first parameter listed in "Database Connection String".
    Are you saying you get a blank page instead of step 5?
    What version of SES do you have? (It should be listed at the bottom of the first Admin page). If it's less than 10.1.8.2 I would strongly recommend you upgrade.

  • ADF BC - One Master and Two Detail pages How To?

    I have an existing ADF BC .jspx master-detail page that works fine. It shows one product as the master (read-only; no navigation controls) and assocatied customer feedback as the detail (multiple records; read-only.) Now I also want to compute some averages from the same table used to create the detail view object. I have created a second view object because this requires a separate query that calculates aggregate values. I want to take advantage of using view links so that this 2nd view object is automatically linked to the master record via the primary key.
    My question is how can I link this into the existing master-detail data control so that I can drag/drop it to include id on the existing .jspx page and the primary key linkages will be handled automatically?
    Tables
    Product
    Feedback
    View Objects
    ProductView
    FeedbackView
    FeedbackAVGView
    Current ViewLink
    ProductFeedbackViewLink = ProductView + FeedbackView
    Current DataControl
    ProductFeedbackViewLink-Instance
    Data Control is displayed on .jspx page; want to also include 3rd View Object, FeedbackAVGView, in the Master-Detail relationship and display on the .jspx page

    Thanks for the reply. The existing customer feedback view object displays the customer's text feedback (testimonials) - these will be displayed in a read-only table with multiple records.
    The new view object aggregates the ratings score from the customer feedback (same FEEDBACK database table) and will use a form to display the results (not multiple rows.) The PK is included in the aggregate view object query.
    Note there is already an existing viewlink between the PK (Master) and FK (Feedback) - in the data control, this viewlink is an instance of the Master View Object and the Customer Feedback View object. Now that I have created a third view object, should I create another View Link between the Master View Object and the Customer Feedback AVERAGES View Object? If I do this, how do I include it in the existing .jspx page? If I add this new View Link to the Application Module I will have two different Data Controls:
    Data Control #1: Master (Product) View Object + Customer Feedback View Object #1 (implemented as a master-detail read-only form/table on a .jspx page)
    Data Control #2: Master (Product) View Object + Customer Feedback AVG View Object #2
    I'm confused as to how to integrate the second customer feedback view object into the existing Data Control / Master-Detail read-only form/table on my .jspx page?
    thanks

  • OAF matester detail page : How to have a "Show All" feature on screen, so that all the master and details records are expanded .

    Hi ,
    I was trying to have a "SHOW ALL" feature on the master - detail page,
    the detail table is an advancec table.
    Please help me with inputs on how to have  "SHOW ALL" feature,
    Currently, we have to click on  ":Show" for each record at master level to view the child data.
    Trying to achive "Show All" Feature so that on click of this the master records on the page 'Expands"  showiing all master records with respective detail records.
    Regards
    bhuvanm

    Hi,
    You should not set DetailFlag = "Y" in whereclause because there is no such record.
    Also detail flag is transient attribute and not the query column, hence the error "Invalid indentifier".
    I asked you to use DetailFlag as query column with static value "Y".
    for example:
    SELECT "Y" detail_flag
    FROM <table_name>
    This will display all the table records in expanded format. if you want it conditionally then use decode on some bind parameters.
    For example:
    SELECT DECODE(:1, "SHOWALL", "Y", "N") detail_flag
    FROM <table_name>
    This bind parameter should be passed whenever you want to execute query for the table.
    Regards,
    Sandeep M.

  • Graph not loaded on navigating to another detail page

    Folder Structure :
    webcontent
    index.html
        view
          -lineDetails.controller.js
          -lineDetails.view.js
          -lineStatus.controller.js
          -lineStatus.view.js
          -MainApp.view.js
          -MainApp.controller.js
          -MasterPage.controller.js
          -MasterPage.view.js
    I've a splitapp consisting of a masterpage - MasterPage and two detail page - lineStatus & lineDetails.
    there is a table in lineStatus page and a line graph in lineDetails page,
    when one clicks on show graph in table user is navigated to lineDetails page.
    The problem is that graph in lineDetails page is not visible, though <div> for graph is created.
    If I load lineDetails page first(where the graph is), then everything works fine and graph is visible.
    Code :
    Adding a column to table.
    var oColumn4 = new sap.ui.table.Column({
             label: new sap.ui.commons.Label({text: ""}),
             template: new sap.ui.commons.Link({text:"show graph",press:function(){
              splitapp.toDetail("lineDetails");
             width: "25%"
    Adding a graph to the page and returning it.
    createContent : function(oController) {
      oModelLineDetail = new sap.ui.model.json.JSONModel({
      businessData1 : [
      {Time :"1:00",Level:10},
      {Time :"2:00",Level:10.5},
      {Time :"3:00",Level:9.5},
      {Time :"4:00",Level:4},
      {Time :"5:00",Level:9.6},
      {Time :"6:00",Level:10.1}
      oDatasetLine = new sap.viz.ui5.data.FlattenedDataset({
        // a Bar Chart requires exactly one dimension (x-axis)
        dimensions : [
        axis : 1, // must be one for the x-axis, 2 for y-axis
        name : 'Time',
        value : "{Time}"
        // it can show multiple measures, each results in a new set of bars in a new color
        measures : [
           // measure 1
        name : 'Oil level', // 'name' is used as label in the Legend
        value : '{Level}' // 'value' defines the binding for the displayed value 
        // 'data' is used to bind the whole data collection that is to be displayed in the chart
        data : {
        path : "/businessData1"
      oLineChart = new sap.viz.ui5.Line({
        width : "80%",
        height : "300px",
        plotArea : {
        'colorPalette' : d3.scale.category20().range()
        xAxis : {
                    isIndependentMode : false,
                    title : new sap.viz.ui5.types.Axis_title({text: 'Time', visible: true})
        yAxis : {
                    isIndependentMode : false,
                    title : new sap.viz.ui5.types.Axis_title({visible: true})
      oTextView = new sap.ui.commons.TextView({
      text: "Line Speed",
      tooltip:"Line Speed",
      //width: "100%",
      design: sap.ui.commons.TextViewDesign.H1
      }).addStyleClass("lineDetHeader");
      oLineChart.setModel(oModelLineDetail);
      oLineChart.setDataset(oDatasetLine);
      var btn = new sap.ui.commons.Button({text:"button",press:function(){location.reload();}});
      lineDetPage = new sap.m.Page({
      title: "Line varaible details",
      showNavButton:true,
      navButtonPress : function(){splitapp.toDetail("lineStatus");},
      content: [oTextView,oLineChart,btn]
      return lineDetPage;

    Hi,
    Use the following code for navigation from one iview to another:
    WDPortalNavigation.navigateAbsolute(
    "ROLES:portal_content/com.cv.kaar.Test_Page2",
    WDPortalNavigationMode.SHOW_INPLACE,
    (String) null,
    (String) null,
    WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
    (String) null,
    (String) null,
    "Name=" + wdContext.currentContextElement().getName());
    You have other options too like, External Window etc. other than the SHOW_INPLACE.
    The last line of the above coding is used for passing parameter to another iView.
    Give the right path of the iview PCD path, omitting pcd:
    Hope this helps.
    Regards,
    Srinivasan T
    <b>Helpful answers=>points</b>

  • Can I set up a Master-Detail Page with report regions for 2 Detail Tables?

    Hi there,
    I am just starting to use Application Express.
    I have a Table (A) with Master-Detail relationships to two Tables B & C.
    I can set up a Master-Detail Page between Table A and Table B, where the records displayed in Table B change when switching between records in Table A. I would like to add Table C to the page and for this to work in the same way.
    Is this possible in APEX? (I've tried adding a report region for Table C and making the Region Source dependent on the same ID field as is used by the report region for Table B but I keep getting "No Data Found" for Table C).
    Many thanks.

    Thanks, but the text needs to be on a single master page which every page is assigned to. This is so the text alternates correctly regardless of whether new pages are inserted or moved. If I assigned separate master pages to individual pages and then moved the pages to a different location, the alternating footer text would then fall out of sync. I hope that made sense!

  • Master & Detail Pages

    Hello all,
    I am asking for help on creating Master - Detail pages. I am using Wamp version 2. Database name "TestingCo" with 3 tables:
    Users:      user_id                int(4)           Primary_Key
                   user_fname          varchar(30)
                   user_lname          varchar(30)
                   user_license_id    int(4)
                   user_pix_id          int(4)
    Licenses: license_id           int(4)             Primary_Key
                   license_no          varchar(10)
    Pictures:  pix_id                 int(4)             Primary_Key
                   pix_url                varchar(50)
    1. I create a recordset called: rsMasterDetail:
         * with all fields from all 3 tables.
         * Where users.user_pix_id = pictures.pix_id AND users.user_license_id = licenses.license_id
         * Order By users.urser_fname
    2. On Master page, I insert Master Detail Page Set:
         * Master page fields: All fields from rsMasterDetail recordset.
         * Link to Detail from: user_id          / later I tried: user_fname         
         * Pass unique key:   user_id          / later I tried: one by one from each field of Users table.
         * Show: All records
         * Detail page name:     Detailpage.php
         * Detail page fields:     All from rsMasterDetail recordset.
    3. Result: (I always get the same result as below).
         * Masterpage.php - perfect - All correct display between 3 relational tables
         (*) Detailpage.php - when I click on any link from the Masterpage.php:
              - All the fields from Users table are displayed correctly depending on which link I clicked on Masterpage.php
              (+) The fields from table Licenses are displayed the first row only (1st record of the table.)???????????????
              (+) The fields from tabel Pictures are displayed the first row only???????????????
    A. When I built the rsMasterDetail recordset, I test it and the result is good.
    B. The masterpage.php shows all fields in perfect order.
    There must be something wrong when the information passes from Master page to Detail page!??!!???
    Please help me!
    Thank you

    Hi Lon,
    When I test it, the tables relationship is perfect since all three tables line up correctly on the masterpage.php. If there is problem with tables relationship, I should also have such problem with the masterpage.php.
    I, once tried to build another recordset called: rsTest. This time I had only 2 tables: Users and Licenses. The result was the same; only the first row of the licenses table would show on the detailpage.php; while the masterpage.php the rows on both tables line up correctly.
    I have tried many ways to find solutions unsuccessfully. What I get so far is:
    * The recordset is display correctly every single time when I click the "Test" button, as well as on the masterpage.php (I meant the tables relationship).
    * When the link on the masterpage.php is clicked, the detailpage.php supposes come up and display all rows of 3 tables of the linked record. However, all rows of the 1st table are correctly displayed, and the other table(s) only show its first row regardless which link on the Masterpage.php was clicked.
    I hope you and others gurus can help me out.
    I appreciate your help.

Maybe you are looking for