RowRepeater UI element

Hi All,
Did anybody use the RowRepeater UI Element?
I don't understend how to use it?
There is some documentation for this element  <a href="http://aiokeh.wdf.sap.corp:1080/SAPIKS2/navTreeClose.sap?_SCLASS=IWB_STRUCT&_SLOIO=7C3545415EA6F523E10000000A155106&TMP_IWB_TASK=PREVIEW2&RELEASE=712&LANGUAGE=EN&_SEQNUM=668&_LOIO=4493D3792E8C60D6E10000000A114A6B&_CLASS=IWB_EXTHLP">here</a>.
Thank you in Advance,
Anna

hi
good
RowRepeater is used to display UI elements specified in the aggregation Element (ROW_ELEMENTS) in a list. Each row in a RowRepeater looks the same since each row consists of the same UI elements, and only the individual rows contain different content.
A RowRepeater is bound to the dataSource of multiple context nodes. For each element in context a row is displayed in the RowRepeater.
The ROW_ELEMENTS define the structure of a row in the list. If the element is a TransparentContainer with MatrixLayout, the matrix data is assigned in the grids of the RowRepeater. Otherwise standard values are used for the layout properties.
http://help.sap.com/SAPHELP_NW04S/helpdata/EN/44/93d3792e8c60d6e10000000a114a6b/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/44/93d3f72e8c60d6e10000000a114a6b/content.htm
reward point if helpful.
thanks
mrutyun^

Similar Messages

  • RowRepeater UIElement in Webdynpro ABAP

    Hello,
    I want to create a RowRepeater UI Elements in Webdynpro ABAP and fill a certain number of rows at runtime. I looked at the standard component wdr_test_events -> Row_Repeater View in which there is a node in the context bound to the 'datasource' property of the RowRepeater Element and the node is filled using the supply function which has the following code.:
    data l type if_row_repeater=>element_row_repeater_data.
      data t type if_row_repeater=>elements_row_repeater_data.
      data i type string.
      define st.
        concatenate `[ Row` i `: Element &1 ]` into l-&1.
      end-of-definition.
      l-first_line_visible = abap_true.
      do 55 times.
        i = sy-index.
        condense i.
        l-element_1 = 'ICON_STATUS_OK'.
        st element_2_tv1.
        st element_2_tv2.
        st element_2_tv3.
        st element_2_tv4.
        st element_2_in1.
        st element_3_tv1.
        st element_3_tv2.
        st element_3_tv3.
        concatenate `RowDescription for row ` i into l-row_description.
        insert l into table t.
        l-first_line_visible = abap_false.
      enddo.
      node->bind_table( t ).
    It's very hard to understand what this code is doing exactly  like the statement:
    concatenate `[ Row` i `: Element &1 ]` into l-&1.
    like what is the meaning of l-&1?
    Any help would be highly appreciated.
    Thanks.

    data l type if_row_repeater=>element_row_repeater_data.
    this statement declares a structure of type if_row_repeater=>element_row_repeater_data
    data t type if_row_repeater=>elements_row_repeater_data.
    this creates a tbale of the same type as above.
    define st.
    concatenate ` Row` i `: Element &1 ` into l-&1.
    end-of-definition.
    this is a macro definition in abap
    it is using &1 to pass the parameters when you call this macro
    using st <paramvalue>  this passed paramvalue will replace the placeholder &1 in the macro.
    e.g. when you call it using
    st element_2_tv1.
    the macro will replace this statement like
    concatenate ` Row` i `: Element element_2_tv1 ` into l-element_2_tv1.
    thanks
    sarbjeet singh

  • RSS feeds in Web Dynpro

    Hi experts,
    I'm looking for a way to show RSS feeds inside a Web Dynpro Application. I didn't find any information that really helped me.
    Who can help me?
    Thanks in advance,
    Edwin

    You don't have to use these classes from Sun that I used then, there are certainly other alternatives in the meantime, e.g.
    https://rome.dev.java.net/
    In essence, you have to create an action to read from the RSS feed, parse the retrieved XML file and fill a context structure from these data, and dynamically recreate the UI elements that display these RSS items.
    If you are on NW 7.0, you can probably use the RowRepeater UI element to display the RSS items stored in the context node.
    Armin

  • TablePopin Portal Rendering Problem

    Hi,
    I have the following problem. When I run my WDA application from SE80 everything is working just fine. However, opening the application with the same contents via a portal (700 SP21), the table popin is squeezed to one row/line size with a vertical scrollbar on the right side. Has anyone experienced the same issue and knows how to solve it?
    Thanks.

    Hmmm,
    I've not had that problem and have sucessfully used tables in pop-ins.
    But I've often wondered why SAP have the caveat in the help for the table UI element:
    [ The use of the Table UI element in the TablePopin and RowRepeater  UI elements is not supported.|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/b5/ac884118aa1709e10000000a155106/frameset.htm]
    As it has always worked for me...
    I think that there must be some sort of condition in which the table does not work. Given the result I'd be checking to see if you've done any dynamic sizing of the columns and perhaps setting fixed sizes.
    Good luck and do let us know if you find a solution... (or figure out what causes the problem to occur).
    Cheers,
    Chris

  • Selective display in Rowrepeater

    The RowRepeater dataSource is bound to MyNode
    Name and Marks are displayed as labels under it
    Context
       -MyNode (node) Cardinality is 0....n
          -Name (attribute)
          -Marks (attribute)
    Consider the following values of "MyNode":
    Name     Marks
    ABC     70
    PQR     35
    XYZ     55
    if(wdContext.currentMyNodeElement().getMarks < 40)
         then I want to display only Name in Label and Marks should not be displayed.
    else
         both Name label and Marks label should be displayed.
    I tried setting the visibility of Marks to NONE when Marks is less than 40, when I do that none of the Marks label are getting displayed.
    How to handle this.
    Please Help.

    Extend your context like this:
    Context
       -MyNode (node) Cardinality is 0....n
          -Name (attribute)
          -Marks (attribute)
          -MarksVisibility (com.sap.ide.webdynpro.uielementdefinitions.Visibility), calculated=true, read-only=true)
    Implement the getMyNodeMarksVisibility() method like this:
    return element.getMarks() < 40 ? WDVisibility.NONE : WDVisibility.VISIBLE;
    Bind property "visible" of the label that displays the marks to the new attribute.
    Armin

  • Double-click on Rowrepeater

    hello,
    i want after clicking on the rowrepeater to generate a methode.
    please show me how can I do this?
    thank you

    Hello Agadir,
    If my understanding is correct, you want to have on_click event for the rowrepeater or in other words if user clicks on the row repeater you want to execute some code. This is not directly possible. In the sense for the RowReapter UI element there are no events available. What you can do is to add LinkToAction/Button ui element in the Row Repeater. these UI elements provides on_click events and you can write your logic in the event handled method.
    If I'm wrong, then kindly elaborate your requirement.
    BR, Saravanan

  • How to get the amazon book list design with the RowRepeater

    Hello,
    at the moment I am programming a small book management application. After the fight with the row repeater (that at least was a bug in the rowrepeater) I would like to have a desing like the amazon-list:
    http://www.amazon.com/s/ref=nb_ss?url=search-alias%3Dstripbooks&field-keywords=sap
    Could someone tell me how I can achive this?
    - How can I use the Image with the url to the image.
    - How can I get the title as link to a view that shows the details of the book (is it LinkToAction? if yes, how can I pass a parameter?)
    - How can I get the design with 2 cols and for the text new lines?
    Thank you very much in advance and have a nice week,
      Vanessa

    How can I use the Image with the url to the image.
    With image you cannot have URL. You have use Image UI element and you can place an linktourl element below the image.
    How can I get the title as link to a view that shows the details of the book
    For links, you are right . You have to use LinkToAction UI element. On the Action of Link , you can get the value selected by reading the attribute binded to that link.
    How can I get the design with 2 cols and for the text new lines
    For columns , you have to use Table UI element.
    For designing you view according to the requirements , you can use various UI elements :
    Tray , Group , Transparent containers. These would help you in making specific containers or grouping particular set of elements together.

  • Using Adobe Bridge with Photoshop Elements

    I have an iMAC with iLife 08.
    I take photos in RAW format with a Nikon camera.
    I have been editing photos this way:
    After uploading photos to iPhoto, export them as jpg to a new folder on the desktop, external HD or wherever. I open Photoshop Elements, edit the exported photo.
    Then I'm stuck with my edits outside of iPhoto, unless I then import them back into iPhoto. It works, but it's cumbersome.
    Today I thought I'd try a different route. I opened Photoshop Elements, and tried to use Bridge to browse photos. I can find the iPhoto library easy enough, but if I click on it, it opens iPhoto, and I'm stuck - can't open the photos in Photoshop.
    I am hoping that if I do it correctly, I can save my edits directly back into iPhoto.
    Any ideas?

    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • ELEMENTS 11    no work on Mac Book Pro 10.9.5 mavericks

    Now I am completely confused, I have MBP 10.9.5 , first of all my photos went to REVELL/ before  and NOW A Orgainizer took them in? I DID ZERO!  are there still photos on REVELLE? and why now wont this ElEMENTS 11 NOT WORK ON MY MAC?
    yes I did use a WINDOWS device BUT NOT WITH THIS bamboo Tablet?? help me please' WIll any ADOBE THING WORK FOR ME? on Mavericks 10.9.5?
    Mainly I need for Mirrored drawing/  and tracing/ bezel things,and sketching/designing.... IT IS terriable what 5 years now?I cant use the plotter freely? Can some one suggest what product I need and
    will what Elements I have be of use at all? thank You
    very much
    artisomomus

    Kaik wrote:
    Ran GP, but it would only allow a scan of applications.
    When you open GP, if you search for the HDD icon (Macintosh HD) and click on it, it will do a full scan of the HDD.
    ODS swept the whole SSD with a total of 265  compared with 105 available on Disk Utility
    I do not quite understand what you mean here.  Total of 265 what?
      Should I be "securing trash" to regain space ?
    No, that should make no difference.
    Perform a Spotlight reindex.  See if that readjusts the numbers:
    http://support.apple.com/kb/ht2409
    Ciao.

  • Photoshope Elements when selecting an action, the paint brush tool doesn't work and system keeps freezing, then catching up every 30-45 seconds

    I have been having this problem with elements ever since the last OS upgrade, but it wasn't all the time and it wasn't very bad. Now, I have upgraded my macbook again, and I cannot even edit a photo!! I open the photo, choose an action, say "smooth skin", then choose the paint brush, I start to "paint" over their face and it won't paint a line, I have to keep clicking it, click - it paints, move brush, click again - it paints. Plus, every time I choose a tool or an action, it freezes for about 10 seconds, then catches up to what I am doing, 30 seconds later, it freezes again. HELP!! I have 8 sessions to finish editing by this weekend!! I just want to cry!!

    Try deleting the prefs and the saved application state:
    A Reminder for Mac Folks upgrading to Yosemite | Barbara's Sort-of-Tech Blog

  • Sale order - Wbs element Report

    Hi
    Is there any report for sale order wise wbs element report.
    In my sale order i will give wbs element and now i want to check "for one sale order , what are the wbs elements"

    You can check the WBS for a sales order from the table view of VBAP.
    The WBS field is PS_PSP_PNR.
    Goto SE16 and give VBAP.
    Enter your sales order number and execute. Look for your WBS elements in foeld PS_PSP_PNR for the different line items.
    You can also create a quick SAP query on this.

  • Unable to load project (prel file)  into Premier Elements 7.0

    just installed 7.0 ..when attempting to load a project (slide show for play back on a DVD) created in Elements 3.0 .. get error that "The project could not be loaded, it may be damaged or contain outdated elements" .. I have no problem loading the same project in Elements 3.0. Also seems specific to this file, an other project create under 3.0 appears to load with out error. I  should point out that  the project that will not load was created in Elements 5.0 and exported over to Premier Element 3.0 to create a playable DVD .. the file that will load was created in Premier Elements 3.0 (not sure if that is significant but more information is better then less) .. any thoughts / suggestions would be appreciated ..thanks

    "The project could not be loaded, it may be damaged or contain outdated elements"
    Unfortunately, the last part of that error says it all. Something is used, that no longer is in PE7, or has been changed significantly. Could be an Effect, a Transition (though those usually just disappear, and the file still Imports - PrPro gives a warning, and tells you which Transition is missing, and the TimeCode of where it was used), or something else.
    If you have PE3, you can do two things:
    1.) finish the edit there and Export to your delivery format
    2.) Export a DV-AVI file and bring THAT into PE7
    Neither is quite as good as being able to Import the .PREL and work on it in PE7, but those are about the only choices that I see. Now, if you have any clue as to what the Effect (whatever) is, that's causing the problem, you *might* be able to open a COPY of the .PREL in WordPad, search for that Effect, eliminate reference to it, and then Save as a .PREL. That might be a lot of work, and might well destroy that COPY of the file - that's why you work on a COPY.
    Good luck,
    Hunt

  • Unable to load the project. latter is probably damaged or contain outdated elements

    any one can help me with this probleme

    Hi,
    I am the one with the problem wich kaderdz exposed. Sorry for my English writing, my first language is French!
    I still have the same problem and some of my projects won't open (months of work...).
    The few projects that opens are kind of weird : only one chanel work in the audio, and the "title" window has also change. Here are some screen shots of what happens :
    message 1:
    message 2 - translation : impossible to charge the project. It is damage or contain obsolet elements :
    message 3 :
    title window :
    I would be so grateful if you can solve the problem. It's a lot of work!!

  • Repeating a group element on each page of a report.

    I have a report where I need to repeat a group element on each page. The element is from the first group in the data. It is in the center group. Currently, the values from this group only print when the group changes. Everything I try does not work. Does anyone have any ideas. I am attaching a sample of the data. Along with the rtf document. I am using the BI Publisher plug in in Word to create the template.
    Data
    <?xml version="1.0" encoding="UTF-8"?>
    <POLLEDTICKETRPT>
    <USERCD>klockhar</USERCD><POLLDATE>03/24/2009</POLLDATE>
    <LIST_CENTER>
    <CENTER>
    <CENTER_CD>0039</CENTER_CD>
    <CENTER_NAME>CROSS PLAINS QUARRY</CENTER_NAME>
    <LIST_TRANSDATE>
    <TRANSDATE>
    <TRANS_DATE>03/11/2009</TRANS_DATE>
    <LIST_CUSTOMER>
    <CUSTOMER>
    <CUSTOMER_NBR>33221477</CUSTOMER_NBR>
    <CUST_NAME>TDOT DISTRICT 32-GALLATIN</CUST_NAME>
    <LIST_JOB>
    <JOB>
    <JOB_CUST>33221477</JOB_CUST>
    <JOB_CUST_NAME>TDOT DISTRICT 32-GALLATIN</JOB_CUST_NAME>
    <RGI_JOB_NBR>2008</RGI_JOB_NBR>
    <QUOTE_ID>0</QUOTE_ID>
    <LIST_COSTCODE>
    <COSTCODE>
    <COSTCODING/>
    <COST_CNTR/>
    <COST_ACCT/>
    <PROJECT_NBR/>
    <PROJECT_TASK/>
    <LIST_TICKET>
    <TICKET>
    <TICKET_NBR>5000021</TICKET_NBR>
    <ORIGIN_CD>TSCC</ORIGIN_CD>
    <REFERENCE_NBR>254510</REFERENCE_NBR>
    <VOID_IND>N</VOID_IND>
    <STATE_CD>TN</STATE_CD>
    <MEASURE_SYSTEM>S</MEASURE_SYSTEM>
    <LOCATION>THANK YOU</LOCATION>
    <PO_NBR>POS-254510-C</PO_NBR>
    <TAX_CODE>4</TAX_CODE>
    <PRODUCT_CD>000003</PRODUCT_CD>
    <HAUL_ZONE_CD/>
    <INVENTORY_STATUS>PR</INVENTORY_STATUS>
    <HAULER_NBR/>
    <RGI_TRANSPORT_CD>FU96</RGI_TRANSPORT_CD>
    <HAUL_RATE> .00</HAUL_RATE>
    <MAT_RATE> 8.50</MAT_RATE>
    <NET_TONS> -7.96</NET_TONS>
    <MAT_SALES_AMT> -67.66</MAT_SALES_AMT>
    <HAUL_AMT>0</HAUL_AMT>
    <TAX_AMT>0</TAX_AMT>
    <SEV_TAX_AMT>0</SEV_TAX_AMT>
    <SEV_TAX_IND>N</SEV_TAX_IND>
    <VALID_NET_TONS> -7.96</VALID_NET_TONS>
    <VALID_SALES_AMT> -67.66</VALID_SALES_AMT>
    <VALID_HAUL_AMT> .00</VALID_HAUL_AMT>
    <VALID_TAX_AMT> .00</VALID_TAX_AMT>
    <VALID_SEV_TAX_AMT> .00</VALID_SEV_TAX_AMT>
    <CASH_TONS> .00</CASH_TONS>
    <CASH_SALES_AMT> .00</CASH_SALES_AMT>
    <CASH_TAX_AMT> .00</CASH_TAX_AMT>
    <CASH_SEVTAX_AMT> .00</CASH_SEVTAX_AMT>
    <CASH_HAUL_AMT> .00</CASH_HAUL_AMT>
    <TRADE_TONS> -7.96</TRADE_TONS>
    <TRADE_SALES_AMT> -67.66</TRADE_SALES_AMT>
    <TRADE_TAX_AMT> .00</TRADE_TAX_AMT>
    <TRADE_SEVTAX_AMT> .00</TRADE_SEVTAX_AMT>
    <TRADE_HAUL_AMT> .00</TRADE_HAUL_AMT>
    <INTRA_TONS> .00</INTRA_TONS>
    <INTRA_SALES_AMT> .00</INTRA_SALES_AMT>
    <INTRA_TAX_AMT> .00</INTRA_TAX_AMT>
    <INTRA_SEVTAX_AMT> .00</INTRA_SEVTAX_AMT>
    <INTRA_HAUL_AMT> .00</INTRA_HAUL_AMT>
    <INTER_TONS> .00</INTER_TONS>
    <INTER_SALES_AMT> .00</INTER_SALES_AMT>
    <INTER_TAX_AMT> .00</INTER_TAX_AMT>
    <INTER_SEVTAX_AMT> .00</INTER_SEVTAX_AMT>
    <INTER_HAUL_AMT> .00</INTER_HAUL_AMT>
    <CASH_PR_TONS> .00</CASH_PR_TONS>
    <CASH_NP_TONS> .00</CASH_NP_TONS>
    <CASH_MI_TONS> .00</CASH_MI_TONS>
    <TRADE_PR_TONS> -7.96</TRADE_PR_TONS>
    <TRADE_NP_TONS> .00</TRADE_NP_TONS>
    <TRADE_MI_TONS> .00</TRADE_MI_TONS>
    <INTER_PR_TONS> .00</INTER_PR_TONS>
    <INTER_NP_TONS> .00</INTER_NP_TONS>
    <INTER_MI_TONS> .00</INTER_MI_TONS>
    <INTRA_PR_TONS> .00</INTRA_PR_TONS>
    <INTRA_NP_TONS> .00</INTRA_NP_TONS>
    <INTRA_MI_TONS> .00</INTRA_MI_TONS>
    </TICKET>
    </LIST_TICKET>
    </COSTCODE>
    </LIST_COSTCODE>
    </JOB>
    </LIST_JOB>
    </CUSTOMER>
    </LIST_CUSTOMER>
    </TRANSDATE>
    RTF Template
    DISPLAY CENTER
    S M
    FOR EACH CENTER
    SET CENTER
    CENTER: CENTER_CD CENTER_NAME
    FOR EACH TRANSDATE
    TRANSACTION DATE: TRANS_DATE
    FOR EACH CUSTOMER
    FOR EACH JOB
    Customer: JOB_CUST JOB_CUST_NAME
    Job: RGI_JOB_NBR Quote Id: QUOTE_ID
    FCC
    group COSTCODE by COSTCODING
    Cost Center: COST_CNTR Cost Acct: COST_ACCT Project: PROJECT_NBR Task: PROJECT_TASK
    Ticket Nbr     ORGCD     OrigTck     V     ST     Location     Po Nbr     Tax Cd     Prod Code     ZN     Hauler      Truck     Haul Rate     UnitPrice     Tons     SalesAmount
    F TCK#M     CODE     OTCK#     V     ST     LOCATION     PO_NBR      TC     PROD     HZ     HAULER     TRUCK     0.00     0.00     0.00 *      0.00 E

    Post Author: Guy
    CA Forum: General
    Hi,
    You should add a first level of grouping in your subreport on a fake formula field with a constant value.  Put your header and footer information in this group header and footer.  In the group option make sure to check the "repeat group header on each page option".
    This group will act as a page header + footer within your subreport.
    good luck!
    Guy

  • How to retrieve elements from 3 different xml file in one url

    Hi all,
    Could anyone please let me how can we retrieve elements from 3 different xml file in one url?
    i just can only do it with one file only, any help would very appreciate.
    Thank in advance
    Jim

    Hi Philip
    Thanks for replying me.
    I tried on that way, In my mdx query i am using one slice attribute (i.e [Customer].[Gender].allmembers) in rows so getting error "The  Hierarchy already appears in Axis1".
    SELECT
    {[Measures].[Internet Sales Amount] } ON 0,
    NON EMPTY
    {[Customer].[Gender].allmembers } ON 1 -- Used
    FROM
    [Adventure Works]
    WHERE
    [Customer].[Gender].&[M]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].&[XL]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].&[Australia]
    Can you provide alternate ways to get resolved.
    Thanks in advance

Maybe you are looking for

  • As a student, should I get the Air or the Pro?

    The thing is that I have a Macbook Pro. I got it in 2009 and it is definetly starting to show its age. The battery lasts anywhere from 30-70 minutes when not plugged in. I have to end nearly every Safari session with force quit. The volume quality is

  • Missing letters

    All of a sudden when I turn on my computer in the am, my file name and drop down menus are missing letters. Like if the file name was "energyFile.doc", if might show up as " ne gyF e.d " Same with my drop down menus. I have run TechTool Pro on it - B

  • In SMO there is any option for run both ExecuteNonQuery and ExecuteWithResults.?

    In SMO there is any option for run both ExecuteNonQuery and ExecuteWithResults query at simultaneously?

  • CIF Post Processing

    Dear All, In the CIF post processing, either via CIF Cockpit or via other post processing transactions, in APO or ECC, we need to go into each post processing record to find the reason for the post processing record being created and to check the sta

  • Further Adobe Pro 8 problems

    Here are some further problems I have encountered with Acrobat, after upgrading from CS2 Design to CS3 Design Premium. In addition to Acrobat 7 refusing to launch unless an administrator's password is typed in, now Safari will not open PDF files inli