Problem when editting a row in report

Hello,
I have a problem when I want to edit a row in a report.
I have created a form with report, and now whe I click on the edit icon on the report page, it navigates me to the form page but wothout the row data, so it let me create a new row..
What should I do??

Hi,
After editing the row go to session vales in the form page and see if the hidden primary key column has a value set ?
Did you do any changes to the form or report after creating "From on a table with report" ?
If you can recreate the issue in http://apex.oracle.com i can look into it.
Edited by: Apex-Ape on Jun 17, 2012 7:10 AM

Similar Messages

  • ORA-01403: no data found Problem when using AUTOMATIC ROW FETCH to populate

    ORA-01403: no data found Problem when using AUTOMATIC ROW FETCH to populate a form.
    1) Created a FORM on EMP using the wizards. This creates an AUTOMATIC ROW FETCH
    TABLE NAME - EMP
    Item Containing PRIMARY KEY - P2099_EMPNO
    Primary key column - EMPNO
    By default the automatic fetch has a ‘Process Error Message’ of ‘Unable to fetch row.’
    2) Created a HTML region. Within this region add
    text item P2099_FIND_EMPNO
    Button GET_EMP to submit
    Branch Modified the conditional branch created during button creation to set P2099_EMPNO with &P2099_FIND_EMPNO.
    If I then run the page, enter an existing employee number into P2099_EMPNO and press the GET_EMP button the form is populated correctly. But if I enter an employee that does not exist then I get the oracle error ORA-01403: no data found and no form displayed but a message at the top of the page ‘Action Processed’.I was expecting a blank form to be displayed with the message ‘Unable to fetch row.’
    I can work around this by making the automated fetch conditional so that it checks the row exists first. Modify the Fetch row from EMP automated fetch so that it is conditional
    EXIST (SQL query returns at least one row)
    select 'x'
    from EMP
    where EMPNO = :P2099_EMPNO
    But this means that when the employee exists I must be fetching from the DB twice, once for the condition and then again for the actual row fetch.
    Rather than the above work around is there something I can change so I don’t get the Oracle error? I’m now wondering if the automatic row fetch is only supposed to be used when linking a report to a form and that I should be writing the fetch process manually. The reason I haven’t at the moment is I’m trying to stick with the automatic wizard generation as much as I can.
    Any ideas?
    Thanks Pete

    Hi Mike,
    I've tried doing that but it doesn't seem to make any difference. If I turn debug on it shows below.
    0.05: Computation point: AFTER_HEADER
    0.05: Processing point: AFTER_HEADER
    0.05: ...Process "Fetch Row from EMP": DML_FETCH_ROW (AFTER_HEADER) F|#OWNER#:EMP:P2099_EMPNO:EMPNO
    0.05: Show ERROR page...
    0.05: Performing rollback...
    0.05: Processing point: AFTER_ERROR_HEADER
    I don't really wan't the error page, either nothing with the form not being populated or a message at the top of the page.
    Thanks Pete

  • Validation problem when update a row in OAF

    created a application using OAF. No problem to create a row, when tried to update the row, received the following error message:
    oracle.jbo.RowValException: JBO-27012: Row validation method validation() failed for row with key oracle.jbo.Key
    2) Steps to Reproduce
    select a row from search result page for update, after change the value and apply it, received the following error message:
    oracle.jbo.RowValException: JBO-27012: Row validation method validation() failed for row with key oracle.jbo.Key

    yes. it is the EO based VO page. Create and Update used same VO and no problem to create the row, had problem when update the row.

  • Authorization problem when displaying icons in BW Report

    Hi All
    I have the following problem when display BW Report as iView: The report data itself is displayed perfectly but to display the icons (like DrillDown arrows, Hierarhy level open arrows) the Windows login message "Connect to <my BW server.com>:8000" appears and I have to enter BW user name and password explicitly. The system for BW is defined, the user is mapped, UIDPW method is used. Again, the report data itself is displayed, the problem is only with icons. I can see that the path to icons is like:
    http://<my BW server>.com:8000/sap/bw/Mime/BEx/Icons/s_b_up.gif
    How could I rid of this authorization request?

    Thanks! I already did this and it helped for most of icons. But for five remaining icons i still get authorization request althoug these icons are in the same path. The icons are:
    http://<server>.com/sap/bw/Mime/BEx/Icons/cascading.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/checked.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/separator.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/marked_right_35.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/loading.gif

  • Problem when down loading a simple report to Excel sheet

    HI Frenz,
    When I download a Simple report to excel , The Excel shows a blank column in between two column, which should not be the case.
    Kindly let me know ASAP
    Regards
    Irfan

    Hi,
    Check out the below samle code
    Download a report to excel with format (border, color cell, etc) 
    REPORT ZSIRI NO STANDARD PAGE HEADING.
    * this report demonstrates how to send some ABAP data to an
    * EXCEL sheet using OLE automation.
    INCLUDE OLE2INCL.
    * handles for OLE objects
    DATA: H_EXCEL TYPE OLE2_OBJECT,        " Excel object
          H_MAPL TYPE OLE2_OBJECT,         " list of workbooks
          H_MAP TYPE OLE2_OBJECT,          " workbook
          H_ZL TYPE OLE2_OBJECT,           " cell
          H_F TYPE OLE2_OBJECT.            " font
    TABLES: SPFLI.
    DATA  H TYPE I.
    * table of flights
    DATA: IT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
    *&   Event START-OF-SELECTION
    START-OF-SELECTION.
    * read flights
      SELECT * FROM SPFLI INTO TABLE IT_SPFLI UP TO 10 ROWS.
    * display header
      ULINE (61).
      WRITE: /     SY-VLINE NO-GAP,
              (3)  'Flg'(001) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (4)  'Nr'(002) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (20) 'Von'(003) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (20) 'Nach'(004) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (8)  'Zeit'(005) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP.
      ULINE /(61).
    * display flights
      LOOP AT IT_SPFLI.
      WRITE: / SY-VLINE NO-GAP,
               IT_SPFLI-CARRID COLOR COL_KEY NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CONNID COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CITYFROM COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CITYTO COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-DEPTIME COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP.
      ENDLOOP.
      ULINE /(61).
    * tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-007
           EXCEPTIONS
                OTHERS     = 1.
    * start Excel
      CREATE OBJECT H_EXCEL 'EXCEL.APPLICATION'.
    *  PERFORM ERR_HDL.
      SET PROPERTY OF H_EXCEL  'Visible' = 1.
    *  CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:\kis_excel.xls'
    *  PERFORM ERR_HDL.
    * tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-008
           EXCEPTIONS
                OTHERS     = 1.
    * get list of workbooks, initially empty
      CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
      PERFORM ERR_HDL.
    * add a new workbook
      CALL METHOD OF H_MAPL 'Add' = H_MAP.
      PERFORM ERR_HDL.
    * tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-009
           EXCEPTIONS
                OTHERS     = 1.
    * output column headings to active Excel sheet
      PERFORM FILL_CELL USING 1 1 1 'Flug'(001).
      PERFORM FILL_CELL USING 1 2 0 'Nr'(002).
      PERFORM FILL_CELL USING 1 3 1 'Von'(003).
      PERFORM FILL_CELL USING 1 4 1 'Nach'(004).
      PERFORM FILL_CELL USING 1 5 1 'Zeit'(005).
      LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
        H = SY-TABIX + 1.
        PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
        PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
        PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
        PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
        PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
      ENDLOOP.
    * changes by Kishore  - start
    *  CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
      CALL METHOD OF H_EXCEL 'Worksheets' = H_MAPL." EXPORTING #1 = 2.
      PERFORM ERR_HDL.
    * add a new workbook
      CALL METHOD OF H_MAPL 'Add' = H_MAP  EXPORTING #1 = 2.
      PERFORM ERR_HDL.
    * tell user what is going on
      SET PROPERTY OF H_MAP 'NAME' = 'COPY'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-009
           EXCEPTIONS
                OTHERS     = 1.
    * output column headings to active Excel sheet
      PERFORM FILL_CELL USING 1 1 1 'Flug'(001).
      PERFORM FILL_CELL USING 1 2 0 'Nr'(002).
      PERFORM FILL_CELL USING 1 3 1 'Von'(003).
      PERFORM FILL_CELL USING 1 4 1 'Nach'(004).
      PERFORM FILL_CELL USING 1 5 1 'Zeit'(005).
      LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
        H = SY-TABIX + 1.
        PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
        PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
        PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
        PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
        PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
      ENDLOOP.
    * changes by Kishore  - end
    * disconnect from Excel
    *      CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING  #1 = 'C:\SKV.XLS'.
      FREE OBJECT H_EXCEL.
      PERFORM ERR_HDL.
    *       FORM FILL_CELL                                                *
    *       sets cell at coordinates i,j to value val boldtype bold       *
    FORM FILL_CELL USING I J BOLD VAL.
      CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
      PERFORM ERR_HDL.
      SET PROPERTY OF H_ZL 'Value' = VAL .
      PERFORM ERR_HDL.
      GET PROPERTY OF H_ZL 'Font' = H_F.
      PERFORM ERR_HDL.
      SET PROPERTY OF H_F 'Bold' = BOLD .
      PERFORM ERR_HDL.
    ENDFORM.
    *&      Form  ERR_HDL
    *       outputs OLE error if any                                       *
    *  -->  p1        text
    *  <--  p2        text
    FORM ERR_HDL.
    IF SY-SUBRC <> 0.
      WRITE: / 'Fehler bei OLE-Automation:'(010), SY-SUBRC.
      STOP.
    ENDIF.
    ENDFORM.                    " ERR_HDL
    Cheers,
    Chandru

  • Errors when editing a row with duplicate names

    I have a table where some of the rows has same names and I changed my primary and secondary column names to display them correctly (Or else i get row fetch error). Now when I try to edit these rows that share the same names i get ORA-20001: Error in DML: p_rowid=DCDD, p_alt_rowid=ID, p_rowid2=MVS, p_alt_rowid2=MPS. ORA-01422: exact fetch returns more than requested number of rows
    Can someone help me figure out what is wrong here? It seems there is a overlap of rows somewhere? I am still not sure how I use the primary and secondary column names. thanks

    SQL> select * from mytable;
          COL1       COL2
             1          2
             1          2
    SQL> DECLARE
      2  V_VAR1 NUMBER(2);
      3  BEGIN
      4  SELECT COL1 INTO v_var1
      5  FROM MYTABLE
      6  WHERE COL1 = 1;
      7  END;
      8  /
    DECLARE
    ERROR at line 1:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at line 4In the above case, I am using an implicit cursor to retrieve multiple values into the same variable. That will not work. I may have to use a collection or an
    explicit cursor.

  • CS2 Pixel Problems when editing

    Hi, I am an amatuer Photoshop user.  I have recently had problems with editing pics either resizing or adjusting levels,  saving then trying to post to a website.  The pictures show up awfully pixeled.  I downloaded the same pics without editing and they look fine.  I have also had pics printed and I dont have the pixel problem.  I assume something is wrong with my PS CS2 software.  Is there a update to fix this problem or do I need to delete and reload my PS CS2 software program?

    Further information on this problem:  It seems to be linked to the condition of the data fields in the Revise HyperTrend window.
    Within this window is a box containing data lines corresponding to the items to be graphed.  The headings are:   Expression    Line Color    Min/Max/Pos/Height.
    There is room in this box for 19 lines of data.  If more than 19 Items are entered, a scroll bar appears to the right.
    It appears that attempting to adjust the widths of any of these fields (to view more of the data in a field, for example) triggers this problem.  It may also be triggered if the width of the data displayed is covered by the scroll bar.
    Can anyone figure out why this is happening and what to do about it?

  • XL Reporter problem when edit the report

    Dear All,
    We are facing a problem regarding the xl reporter.  when we tried to edit the excel reporter report, there was an error message: Automation Error.  Library not registered.
    Then we tried to register the com add-ins but unfortunately it wasn't succesful.  After we select the IXXLReporter.dll it wasn't display in COM Add-Ins window.
    Do you have any idea what's the problem?
    Thanks and Regards
    Lailus

    Dear Lailus,
    In order to try to resolve the issue, could you please reinstall XL reporter
    addon as per Note 819501.
    Also please make sure that you are using the correct version of Microsoft
    office application as per the supported platform available in the service
    market place.
    http://service.sap.com/smb/sbo/platforms
    Regards,
    Rakesh Pati
    SAP Business One Forum Team.

  • Problem when re-entering variables in report

    hi all,
    I have a very strange problem...
    I'm using a webtemplate with 3 different queries in it.
    One of these queries is a report that shows exchange rates for a certain period... This period is entered in the variable screen upon starting the report
    Using a variable "CE_PERIOD" this period is entered as e.g. "006.2006". After an initial run, everything is fine, exchange rates are shown with and for this period.
    Then when I click "variables entry" on the context menu of the rerport, I can re-enter this CE_PERIOD... when I change it to e.g. "004.2006" and execute the report, nothing is changed in my currency query... the period still mentions 006.2006 instead of the newly entered 004.2006
    by the way, something that may help: the exchange rates are only shown when I click on a button we created for this, it then shows the exchange rates in the template, otherwise it doesn't... but like I said. After first run it works perfect, after changing the period variable, the exchange rate query is not affected?
    any ideas??
    points will be awarded!
    thanks
    Message was edited by: Joris Hens

    thanks a lot! I tried it and it works... I gave you full points for this!
    Thanks a 1000 !
    Message was edited by: Joris Hens

  • Problem when converting to pdf - Oracle Reports 6i

    Hi all,
    Im using Oracle reports 6i and Oracle Database 10g Release 10.2.0.5.0 - 64bit Production.
    In My database NLS_LANGUAGE is GREEK & NLS_CHARACTERSET is EL8MSWIN1253.
    So i have greek language texts in the database..
    When run the report, in the previewer the greek letters are fine,
    But when i try to convert it into PDF, all the greek letters are not supported and letters are unknown characters.
    i tried following,
    SRW.DO_SQL ('ALTER SESSION SET NLS_LANGUAGE = '||'''GREEK''')
    But still same problem....
    Any workaround on this.. ?
    Regards
    SankarMN
    Edited by: SankaraNarayanan.M.N on Dec 21, 2012 9:01 AM

    Hi O.Developer,
    I have set the greek language in the registry already, but still same problem persists.
    In the Registry, i have the following value same as i have in the database nls parameters,
    HKEY_LOCAL_MACHINE -> SOFTWARE ->ORACLE -> ORACLE_HOMES -> NLS_LANG -> AMERICAN_AMERICA.EL8MSWIN1253.
    EL8MSWIN1253 is GREEK.
    I could store greek values in the database and i can retrive it in the forms and reports as well.
    My only problem is, when i try to convert the report into pdf, it is unknown characters.
    And also i tried with modifying the file uifont.ali. But still no result...
    Any other try is there to overcome ?
    Regards
    SankaraMN

  • Keyword problems when editing with CS6

    In LR 4.2 and 4.3, when I edit with photoshop and use lightroom corrections, LR creates a new file.  I edit it in CS6 and save and close.  Back in LR, the file is there, the proper keywords are highlighted and there, but LR cannot find that file.  In other words, LR does not recognize the photoshop keywords. 
    I am using Win 7 64.  My catalog has less than 1,000 images.  My master catalog has 25,000 with the same problem. 
    As I understand it, when you edit in Photoshop with LR corrections, LR creates a new file and PS takes in.  PS sends info to LR when it is done.  If I edit a photo selected with a keyword and I can only see that image, when I get back to LR the screen is grey and no image is found.  I can find the photo in the folder.
    My workaround is to delete the keyword and reenter.  In a small database with few keywords, clunky.  In the real world, very difficult.

    I have been using lightroom since verison 1 (actually I owned the precursor, I forget the name).
    Step by step
    1.  Select image.  Add unique keyword.  enter.  Keyword is now in the keyword box and highlighted in recent keywords.
    2.  click on keyword to select all images with that keyword.  Highlist the test image.
    2.  Right click the image.select "edit in ..."  "Edit it in CS6..."  Then "Edit a copy with lightroom adjustments"    (edit a copy- same issue)
    3.  CS6 opens and the file selected is open.  Convert to B&W (anything).  Control -s to save.  Control - w to close.
    4.  Goto lightrooom..  New edited image in the folder, but invisible to keyword.  The number of images associated with that keyword gets larger by one. 
    In my system, the key step is step 2.  If I add a keyword and edit from the folder everything is fine.  If I have selected or filtered by keywords, the edited image does not index for that keyword.
    Is this me?  I guess my workaround now would be to edit images from the folder view/

  • OO ALV Cell Merge Problem when editable fields

    Hi there!
    I'm using OO ALV ( CL_GUI_ALV_GRID ) and experiencing a strange problem.
    I'm interested in the cells merging functionality of ALV, when i sort data for a specific field.
    It works fine but only if i do not set any field as editable ( lvc_s_fcat-edit = 'X' ).
    For some reason ALV loses some of its functionality when you set a field as editable.
    I've noticed it also with the functionality of expanding/supressing data when using subtotals.
    If any field is set as editable then subtotals come always expanded, you cannot supress them...
    Has anyone else experienced somethng like this before? Any help will be appreciated!
    BR
    George Zervas

    Hi,
    Check This [Thread|http://forums.sdn.sap.com/thread.jspa?threadID=928573]  to solve your issue.
    Check the  User Command, first line should be call method cl_gui->check_changed_data().
    Check this [url|http://wiki.sdn.sap.com/wiki/display/ABAP/InteractiveEditableOOALVgridwithdynamicitab,FCATandENTERkeyeventtrigger] for code to work on Interactive Editable OO ALV grid .
    Hope will solve your issue.
    Regards,
    Saravana.S
    Edited by: saravanasap on Feb 14, 2012 7:38 AM

  • Lightroom 3 and Photoshop CS6 problem when editing

    Hi,
    I have just upgraded to Photoshop CS6 and now when I 'edit in Photoshop CS6' from lightroom and save it, the image doesn't appear next to the original RAW file as it did before. Now lightroom creates its own folder with the edited files in.
    For example, I edited a RAW file from a folder called Bissoe valley from Lightroom and saved it. When I go back to Lightroom the edited image is not next to the original file but in a seperate folder called 'Bissoe valley'. I then try to drag the edited image back into the original 'Bissoe valley folder with the original RAW file and it says 'the file already exists at the destination'
    I appologise if this has already been asked. I'm guessing I need to buy Lightroom 4 because of incompatibility issues? It wouldn't surprise me if this is the case.
    Thanks in advance for any help.

    Victoria....you are a legend!
    You can see here lightroom has created folders identically named to the folder which the original files belong to (coco, Harriet, Bissoe and independent assignment)
    The really confusing part is that when I look in the original folder outside of Lightroom, the saved Tiff image is there next to the original.
    I think I will try uninstalling ps cs6 and go back to cs5 to see if it solves the problem and take it from there....

  • Problems when editing videos in IOS 8.02

    I recorded a slowmotion video with a moving train the other day; but when I wanted to edit it, I couldn't like I used to. I wanted to cut the first seconds out because of shaking image, but when I tried doing that, it also cut the ending; I couldn't pull it all the way to the end and play it. I have an iPhone 6 Plus, and don't know if it is a problem with the phone or IOS 8.02.

    contacts, photos and messages - yes (in fact I am able to send and receive messages without issue)
    music & apps - no
    The problem is when I try to access the iphone using iTunes on my pc, I am unable to drag and drop music or apps onto the iphone, and when I click on the iphone icon, I am greeted with the "welcome to your new iphone" screen, only giving me the option of registering it as a new iphone, or restoring from a backup!

  • HR Custom InfoTypes problem when added to custom Infoset Report for PA

    Hi, I am having an issue with the adhoc query /SAPQUERY/HR_ADM. I added the custom infotypes 9* I created to this standard infoset by using SQ02 and adding these by going into the menu path Edit--> Change InfoType selection. I regenerated this object and attached to a transport. The query runs fine in the DEV system where I made the change...I can choose fields for output or selection from the standard infotypes and custom infotypes as expected. I migrated this transport to the test system and now when I try to do the same thing I get an error when I try to click on any object in my custom infotype and some of the standard infotype. I tried regenerating and resending to the test system and still have the same issue. This is the error in the dump:
        79 * create work area                                                
        80   create data data_wa like line of data_table.                    
        81   assign data_wa->* to <data_wa>.                                 
        82   assign component fcat_wa-fieldname OF STRUCTURE <data_wa>       
        83     to <field>.                                                   
        84                                                                   
        85   loop at t_fcat into fcat_wa.                                    
        86     field_filled = 'X'.                                           
        87     assign component fcat_wa-fieldname OF STRUCTURE <data_wa>     
        88     to <field>.                                                   
        89     if sy-subrc <> 0.                                             
    >>>>>       raise internal_error.                                       
    It appears the TEXT488 is the value in the fcat_wa-fieldname and I do not see this in the data_wa.
    Does anyone know how to fix this problem or what I might try or look at to see what the difference is between the DEV system (where it works ok) the the Test system where it is giving me an error?
    Thanks in advance for any help you can provide.
    Laurie

    After further investigation I found the problem to this was in the generation of the objects. Even though I generated before attaching to a transport  and all looked ok, there is some sort of bug causing it to not generate properly so I had to sign on to each environment and generate the object in SQ02 including in Production. After I did this the custom infotypes were accessible in the Infoset.

Maybe you are looking for

  • What is new in Fireworks CS5.1

    I see that Fireworks is included in the CS5.5 Mater Collection. Is there any new features in 5.1?  Or is is mostly bug fixes and performance issues?

  • Is Acrobat X available for Mac?

    We (my company) just upgraded to CS5, and I noticed it came with Pro 9. Is Acrobat X Pro available for Mac? I tried to download a Trial version and it directs me to a Windows download. I can not  find a Mac download. Any Ideas?

  • Help with Front Row...

    I just received my refurbished imac replacement.It is running great,i added more memory up to 2gb. My question is i dont have Front Row on this replacement it is the same as the imac i sent back 20in. 2.16ghz 2gb ram 250gb hd how do i install this do

  • External File URL attach to FB03 - document service object

    Hi ; My requirement is Scanned copy of hard Vouchers stored in one Windows based External drive.this drives contains yearly ,monthly wise sub folders. in that sub folders Scanned Copies stored with voucher numbers. this hard Copy of voucher number Up

  • Way to search all mailboxes simultaneously? (w/o manually selecting them)

    Is there a way to search all the mailboxes without first selecting them manually? (apart from the Trash/Junk options in the Preferences).