Context Navigation – Details Page

I am trying to do a product list and details page with individual images instead of list or galleries. I have a screen with individual images, each image points to detail screen and sends the ID of each item.
On the detail screen, I have 2 labels and an image. How can I dynamically load the labels and image from data in table that matches the passed ID?
I have been trying to write a filter script in the image property field and the labels Text property field, but I am missing something.
Thank you 

You can use
LookUp function. Set the label using LookUp(Table1, ID = selectedID, LabelValue) and set the image using LookUp(Table1, ID = selectedID, ImageLink). I am assuming you're passing the selected item's Id using the context variable selectedID and that
you have LabelValue and ImageLink as columns in your table.

Similar Messages

  • 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>

  • Detail page - navigation

    I want users to ckick a thumbnail on my "thumbnails" page,
    then go to a detail page where they can see the full size image.
    But I also want navigation on this details page so users can go
    next next next through all full size (repeat region showing 1 at a
    time)and don't have to return to the thumbnails page everytime.
    Thank you

    Did you ever resolve this? I am having the exact same problem and would love to know how to do this. Thanks, ~ JD

  • Navigating from two different master pages to the same detail page

    Hi. Im using JDev 11.1.1.1.0 JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407. Fusion Web Application.
    I have two ViewObjects based on a unique entity Entity1 and each VO has a different set where clause. First, I create a master view page based on VO1 and a detail page based on the same VO1. Navigation is working fine using a link in the PK of selected row and using setCurrentRowWithKey.
    Next, I've created a second master view page based on VO2 and want to enable navigation to the detail page based on VO1. I figured the key is the same (Entity has a one column PK, and the same thing VO1 and VO2) but when I tried navigation with setCurrentRowWithKey or setCurrentRowWithKeyValue doesn't work.
    Can anybody provide steps to achieve this? Is it possible to do?
    Thanks.

    Hi,
    You might be using setCurrentRowWithKey method of VO2, if so, try to use setCurrentRowWithKey method of VO1(on which detail page is based)
    Sireesha

  • Detail page navigation help needed

    I am running 9iAS 9.0.2 and have a MD Form that displays 10 detial records at a time. I need to develop functionality to allow my users to move between detail pages without having to click "Next","Next","Next",etc....
    I was thinking of using the functionality of the onDetailNext procedure as part of the return value in a combobox LOV for the detail pages, but I don't know what to set the variables to, or if this is even possible.
    My code outline right now is. THis does a simple next. I don't know how to set it to jump to the 3rd or 4th page etc.
    BEGIN
    onDetailNext(
    p_block_name => null,
    p_object_name => null,
    p_instance => null,
    p_event_type => null,
    p_user_args => null,
    p_session => p_session
    END;
    Help on this, or info on a better way to do this would be great.

    As of now, there aren't any simple ways to jump to the nth page. You will have to do a lot of coding yourself.
    Please see the form's package body to get an idea how form's paginate between multiple records.

  • 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

  • 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

  • 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

  • Possible error when using ADFBC selectOneListbox in a master-detail page

    Hi Everyone,
    I'm trying to setup master - detail page with ADF BC, using Dept / Emp.
    I want to use a listbox for the master object, rather than the form + navigation commands as shown in the classic demos, so I've setup a listbox as following:
    <af:selectOneListbox value="#{bindings.DepartmentsView1.inputValue}"
    label="Available Flows:"
    id="listbox_depts">
    <f:selectItems value="#{bindings.DepartmentsView1.items}"
    id="id_Selcet_Items"/>
    The details element is the classic read-only table created by dragging the Employees view (under the departments) into the page.
    The problem arises when I run the page - the list box shows all the departments, but when I click on different departments the table data does NOT change (as it would when navigating between rows with the classical form navigation buttons).
    I've set up the Table's partial triggers to both of the listbox ids: id_Selcet_Items and listbox_depts but this doesn't help.
    Is this a bug, or am I doing something totally wrong?
    Tal.

    Tal,
    You need to drop the Dept collection onto your page as a navigation list.
    Blaise

  • Little different use case to load detail page....

    Guys. .... again in need of you expert advice....
    version: Jdev 11.1.1.3
    Following is my use case:
    - On Department detail page.... I am showing all employees details in form... (using navigation buttons) (example: Dept 1 has employee e1,e2,e3)
    - User can click the employee detail button.....(for a single employee) (example: user clicks on employee e2 detail button)
    - Need to navigate to that particular Employee detail page (with other details) and at the same time be able to navigate through (if needed by user) all employee for that department (system should show e2 detail page but user should be able to navigate through e1 and e3 employees as well)
    I have configured the system to show all the employees for a selected department and page flow works fine but having difficulty setting page to show details for e2 initially
    let me know if you want me to provide further details...
    thank you for your support....

    You need to use the setCurrentRowWithKey
    Like this:
    http://blogs.oracle.com/shay/2009/02/selecting_a_row_in_a_table_to.html

  • Fiori getContext Detail page SAPUI5

    Hello all
    I am currently  workign on Fiori like App using SAPUI5. I have successfully built the Master page, and on item click I set the context and navigate to Detail page.
    The context path from Master page is something like "/SUPPLIER("NAME")". The function in App.controller.js is as follows:
    handleListItemPress : function (evt) {
    var context = evt.getSource().getBindingContext();
    this.nav.to("Detail", context);}
    But I would like to know how can I access this context in the deatil page. I need this because I need to use $expand to build the url and bind the items to a table.
    Here is my Detail.view.js
    sap.ui.jsview("sap.ui.demo.myFiori.view.Detail", {
    getControllerName: function () {
    return "sap.ui.demo.myFiori.view.Detail";
    createContent: function (oController) {
    var page2 = new sap.m.Page({
         title:"Supplier",
         class:"sapUiFioriObjectPage",
         showNavButton:true,
         navButtonPress: [oController.handleNavButtonPress,oController],
           content:[list]});
    var list = new sap.m.List("list2");
    var itemTemplate = new sap.m.ObjectListItem({
                title : "{NAME}",
                type: sap.m.ListType.Active,
                number : "{LIFNR}",
                numberUnit : "ID",
                attributes : new sap.m.ObjectAttribute("attr2",{text:"{CITY}"}),
                press: [oController.handleListItemPress, oController],});
    var test = this.getBindingContext();
    list.bindItems(test.getPath()+"/MASTERDATA",itemTemplate);
    Any suggestions would be highly appreciated.
    Thanks

    Hello Sakthivel,
    You are absolutely right. Logically thinking, I could just bind the items to the list in the "to" function. Better said, I may not have understood the concept behind beforerendering. BUt, as you mentioned earlier, I paste the
    console.log(oODataJSONModel); result here below:
    F {mEventRegistry: Object, oData: Object, aBindings: Array[0], mContexts: Object, iSizeLimit: 100…} 
    aBindings: Array[1]
    0: f
    length: 1
    __proto__: Array[0]
    bCache: true
    bLegacySyntax: false
    iSizeLimit: 100
    mContexts: Object
    mEventRegistry: Object
    mSupportedBindingModes: Object
    oData: Object
    CITY: "HAAKSBERGEN"
    LIFNR: "0003100082"
    MASTERDATA: Object
    NAME: "CONCEPT In Flames B.V"
    POSTZAHL: "5600 JZ"
    STREET: "METAALSTRAAT 3A/C"
    __metadata: Object
    __proto__: Object
    sDefaultBindingMode: "TwoWay"
    __proto__: F
    I also tried adding this line in the "to" function
    var template = page.byId("STOREINFO");
             list2.setModel(oODataJSONModel); 
             list2.bindItems("/d/MASTERDATA/results",template);
    But, this time I  get an error saying "Uncaught Error: Missing template or factory function for aggregation items of Element sap.m.List#Detail--test2 ! . Any ideas.

  • Include DFF in Notifications Detail page

    Hi,
    We have added a DFF in the Intercompany transaction creation in AGIS. We would like to display this DFF in the Notifications Detail page when the approver recieves the notification so that the information in DFF can be used for this purpose. Is there a standard way or personalisation to include DFF in Workflow notification detail page?
    Regards,
    Sohel

    Hello all OAF GURUS,
    Here is the brief explanation of what I am doing Environment :R12.1.2
    I am creating an item type of FLEX and the values are
    Step 2) Set the Read Only property to True
    step 3 )View Instance : PoAgentsVO
    step 4) Application Short name :PO
    Step 5: Set the Name property - PO_AGENTS name of the DFF
    Step 6: Set the Type property to descriptive
    Step 7: Set the Segment List property as appropriate here I am giving as Attribute1||Attribute2
    Step 8: Finally, set the Display Context Field to True
    after doing all these I am not able to see the DFF i dont know where I am doing a mistake.
    Help would be highly appreciated.
    Thanks & Regards
    Krishna
    Edited by: user12156300 on Jan 29, 2010 7:55 AM

  • OTL Time card || Details page || DFF

    Hello every one,
    Iam one working on OTL time card Details page.
    Navigation:CreateTimeCard>>Click on details icon on table region.
    Here we have DFF: PA_EXPENDITURE_ITEMS_DESC_FLEX
    Need to set the default value to this DFF ,even im not able find DFF in co XXXTimecardsListCO extended T
    TimecardsListCO
    Below code used:
    OADescriptiveFlexBean descFlexfieldsBean2 = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("PA_EXPENDITURE_ITEMS_DESC_FLEX ");
    if(descFlexfieldsBean2 != null)
    oapagecontext.writeDiagnostics(this, "descFlexfieldsBean2", 1);
    It will return null ,please help if any body worked on this.
    Regards
    Jag

    and a supervisor can't change the timecard data. He can only add the comments and reject it. Upon rejection, TC will go back to employee and he will see the supervisor's comments also.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                       

  • Timeout problem - record is not shown properly in detail page after timeout

    Hi,
    I am using JDeveloper 10.1.3.1.0.3984
    and JHeadstart 10.1.3.1 Release 10.1.3.1.26
    I have a Master View Object where there is a field ID (for example M_VO).
    There is a page associated with M_VO (Page_M_VO.jspx)
    There is a Detail View Object (for example D_VO)
    There is a page associated with D_VO (Page_D_VO.jspx)
    There is a link from M_VO to D_VO using the field ID.
    When I open the page Page_M_VO.jspx and select an ID and go to the detail page Page_D_VO.jspx, it goes to the detail page Page_D_VO.jspx. It works fine.
    But the problem is:
    If for example I have three ID (111, 222, 333), in master page if I select 222 and go to detail page it shows the appropriate records for 222 as I selected 222 in master page. If I keep the detail page open for more than the timeout minutes specified in web.xml and then try to access the detail page again it ask for userid and password (which is fine). If I put userid and password, then it shows the detail page with the first record which is the record associated with the ID 111. But before timeout I was working with the ID 222, so it should show the record associated with ID 222 as I was working with ID 222 before timeout.
    Can anybody help me to solve this problem?
    Thanks
    Syed Jabbar
    University of Windsor
    Windsor, ON, Canada

    I would put my money on the fact that since your application is timing out, it is dropping any state that your View Objects otherwise had before the application timeout.
    So upon reauthorizing and reaccessing the application (and going directly to the detail page) the View Object is reinstantiated and only knows to go to its default data set which is 111.
    If my assumption is correct, I don't think you could really implement this without a lot of trouble.

  • Can I link from Interactive report Page 1 to Master Detail page 2?

    Hi folks-
    I know how to create a Page as an Interactive Report; it creates 2 pages automatically (primary page with the great interactive bar) and a 2nd page that's a single record.
    I know how to create a Page as Master Detail, whereby I get a tabular list without the super interactive bar, and I can select a record, and get transported to a nice page with 2 regions (master on top, detail on bottom).
    I want to have the First page from the Interactive Report, select the record, and go to the 2nd page of a MasterDetail.
    Do I create the Interactive Report, and customize the 2nd page, to add a region?
    Or, do I create both page types, and redirect from the 1st page of the Interactive Report to the DML Form from the MD report? I tried that, re-assigning the link from the Interactive Report to be a Link to Custom Target, and specify the page # of the Master-Detail page. And it is taking me to the right page, but the data from the selected row is not coming with me, and the detail in the bottom region is not appearing at all.
    Can someone please give me a nudge as to the sequence I should be doing?
    (As you can tell, I'm new to Apex.... I'm trying to use it to create a prototype or proof-of-concept for a database driven web application)
    Thank you
    Marion

    Yes, I tried that after I wrote to you - and it's fine, but not what I'm after; it's only based on 1 table and I'm working with 2 tables.
    Perhaps I can explain in better.
    I want one page as an interactive tabular report (of the master records)
    I want to select a row, and transfer to a page that has the corresponding row on top (as a form), and a tabular region below of records from a related detail table.
    ie, I want page 1 from the Interactive Report, and page 2 of the Master Detail report.
    OK - I just took the form page, and added a region below in a tabular report. And I'm getting the data, but I'm getting all the records (not just the ones associated with the single record on top. I figure I need to edit the Region Definition->Source (to specify that the id numbers need to match), but the code is not editable.....
    So I am in Structured Query Attributes, and I've Modified the Join Conditions - but I still get all the detail records in the bottom region. I''m trying to add in the ( + ) qualifier, but it doesn't affect anything...
    I'm soo close to what i'm trying to do!
    Thank you for your continued patience and assistance
    Marion
    here's the Source I have for the region..... (I'm including the excess ID columns just for learning purposes)
    SELECT
    "PHONENUMBERS"."PHONE_ENTITY_ID" "PHONE_ENTITY_ID",
    "ENTITIES"."ENTITY_ID" "ENTITY_ID",
    "ENTITIES"."FIRSTNAME" "FIRSTNAME",
    "ENTITIES"."LASTNAME" "LASTNAME",
    "ENTITIES"."COMPANY" "COMPANY",
    "PHONENUMBERS"."PHONE_ID" "PHONE_ID",
    "PHONENUMBERS"."PHONETYPE" "PHONETYPE",
    "PHONENUMBERS"."PHONENUMBER" "PHONENUMBER",
    "PHONENUMBERS"."PHONECOMMENT" "PHONECOMMENT"
    FROM
    "PHONENUMBERS",
    "ENTITIES"
    WHERE ENTITIES.ENTITY_ID = PHONENUMBERS.PHONE_ENTITY_ID
    Edited by: mtpaper on Oct 12, 2009 1:30 PM
    Edited by: mtpaper on Oct 12, 2009 1:32 PM

Maybe you are looking for

  • Printing all expressions in an expression operator

    If I have an expression operator with 15 output expressions, is there some way that I can print all of those out? Otherwise, I have to click on each one, go in to the editor, copy / paste, etc. Thx, Scott p.s. OWB 10gR2

  • Analog to digital sound input

    I have a Mackie mixing board sending a stereo signal to a Sony DVMC analog to digital converter box. I can capture audio in FCP (although I can't hear it via headphones while capturing) but it plays back fine. I'm trying to get soundtrack or garageba

  • ALE Configuration problem in FI

    Hi all, I need some help on a solution to set up for FI doc ALE distribution using standard tools. The goal is to send Invoice Documents (FB60) from an R/3 to another external R/3 system via IDoc, using standard messages, functions, etc. I am looking

  • Slow hdd performance

    Ok I did some research and still can't figure out why writing/reading speed is so slow in practice hdparm -tT /dev/sda /dev/sda: Timing cached reads: 1012 MB in 2.00 seconds = 506.11 MB/sec Timing buffered disk reads: 336 MB in 3.01 seconds = 111.58

  • Using the Logo you create on a photo in adobe photoshop elements 13

    I need to know how to use a logo that I created in adobe photoshop elements 13... I have a photography business and I need to know how to copy it to my photos for me to post....Thanks in advance! (I am new to this software as of today!)