LOV in form builder

Hi,
How can i move the LOV item up/down with the help of mouse roller.

Bluetooth,
This can be accomplished by creating two seperate record groups; one for Billable and one for Non-Billable. Then - in the WORK_TYPE When-Validate-Item (WVI)trigger - when the value is "Billable" you assign the Billable Record Group to your LOV or if the value is Non-Billable, then you assign the Non-Billable record group to your LOV. Your Record Group queries must return the same number of columns and the column names must match. If your record groups need to have a different number of columns and column names, then I would just use two seperate LOV's and assign them to the item accordingly. For example:
/* Sample WVI trigger */
DECLARE
  lov_id    LOV;
  item_id   ITEM;
BEGIN
  lov_id := Find_LOV('YOUR_LOV_NAME');
  /* Option 1: Change Record Group of LOV */
  IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
    IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'BILLABLE_RG' ) THEN
      Set_LOV_Property(lov_id, GROUP_NAME, 'BILLABLE_RG');
    END IF;
  ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
    IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'NONBILLABLE_RG' ) THEN
      Set_LOV_Property(lov_id, GROUP_NAME, 'NONBILLABLE_RG');
    END IF;
  END IF;
  item_id := Find_Item('YOUR_BLOCK.REASON');
  /* Option 2: Seperate LOV's */
  IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
    IF ( Get_Item_Property(item_id, LOV_NAME) != 'BILLABLE_LOV' ) THEN
      Set_Item_Property(item_id, LOV_NAME, 'BILLABLE_LOV');
    END IF;
  ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
    IF ( Get_Item_Property(item_id, LOV_NAME) != 'NONBILLABLE_LOV' ) THEN
      Set_Item_Property(item_id, LOV_NAME, 'NONBILLABLE_LOV');
    END IF;
  END IF;Hope this helps,
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • Creating dynamic LOV in form builder 6i

    Hi All,
    I am new to form builder.
    I want to create dynamic lov, means
    Project type
    Client
    Work_type(thsi is also lov) ->> 1) Billable
    Reason (this is also lov) ->> 1) Billable
    Work_type(thsi is also lov) ->> 2) Non-Billable
    Reason (this is also lov) ->> 1) Fresher
    2) Project Manager
    As shown above, Suppose the project type is client then I will select either "Billable" or "Non-Billable" value.
    If I am selecting Work_type LOV as "Billable" then it should display "Billable" value in reason LOV
    or if I am selecting Non-Billable value from Work_type LOV then reason LOV will display the list of value as Fresher and Project Manager.
    Please help me, its very urgent.
    Thanks in advance.
    Regards,
    Bluetooth

    Bluetooth,
    This can be accomplished by creating two seperate record groups; one for Billable and one for Non-Billable. Then - in the WORK_TYPE When-Validate-Item (WVI)trigger - when the value is "Billable" you assign the Billable Record Group to your LOV or if the value is Non-Billable, then you assign the Non-Billable record group to your LOV. Your Record Group queries must return the same number of columns and the column names must match. If your record groups need to have a different number of columns and column names, then I would just use two seperate LOV's and assign them to the item accordingly. For example:
    /* Sample WVI trigger */
    DECLARE
      lov_id    LOV;
      item_id   ITEM;
    BEGIN
      lov_id := Find_LOV('YOUR_LOV_NAME');
      /* Option 1: Change Record Group of LOV */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'BILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'BILLABLE_RG');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'NONBILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'NONBILLABLE_RG');
        END IF;
      END IF;
      item_id := Find_Item('YOUR_BLOCK.REASON');
      /* Option 2: Seperate LOV's */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'BILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'BILLABLE_LOV');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'NONBILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'NONBILLABLE_LOV');
        END IF;
      END IF;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Forms Builder 10g LOV

    I'm a Beginner of Form-Builder. My Questions:
    1- I habe read that you can display a LOV at Runtime by pressing a LOV-Button. Does this exist?
    2- For the LOV-Property "Automatic Select" you habe to set "Automstic confirm" to YES. How can I do this? Is that a Property? Of which Oject?
    3- At Runtime I like to expand the Default-Viewport of the Javaservlet (It's not the Viewport of my Form-Modul). I suppose, that I have to change the Parameter WIDTH and HEIGHT of a .html file. Have I right or how kann I do that?
    Thanks you so much for any of your Answer!
    Frank

    Duplicate Post.
    sarah

  • Oracle Forms Builder

    Hi Experts,
    I am learning oracle form builder version 6i where my manager wants me to develop a form with the LOV and data blocks.
    I dont know the Form Builder. Where i can get the form builder document with the simple form created example.
    I need it urgently.
    Thanks,
    Atul

    Please see these doc (use TEMPLATE.fmb form to build your form).
    Forms6i Documentation
    http://www.oracle.com/technetwork/documentation/6i-forms-084462.html
    Oracle Forms in Applications FAQ [ID 177610.1]
    Error Opening TEMPLATE.fmb in Forms Builder [ID 236803.1]
    Customization in Oracle Applications [ID 743490.1]
    How To Customize And Compile An Application Seeded Form (FMB) Or Library (PLL)? [ID 427879.1]
    How to Add a Path to Environment Variable $FORMS60_PATH [ID 168431.1]
    Errors when Compiling TEMPLATE.fmb for Release 11i [ID 206458.1]
    Thanks,
    Hussein

  • LOV in forms 4.5

    I am trying to create a LOV based on a record group with two columns. Problem is i can not controll the width of the coulumn in LOV.
    I tried to adjust width in record group (coulumn specifications) as well as in LOV's coulumn mapping by entering the width, but it is not effecting and the first column is having large width.
    let me know something can be done..
    Thanks in advance

    the usage notes by Oralce for column width...
    Usage Notes
    1 Set the Display Width property to the width in appropriate units (points, pixels, centimeters, inches, or characters as specified by the form's Coordinate System property) that you want Form Builder to reserve for the column in the LOV window. Column value truncation may occur if the Display Width is smaller than the width of the column value. To avoid this situation, increase the Display Width for the column.
    2 To make the column a hidden column, set Display Width to 0. (You can specify a return item for a hidden column, just as you would for a displayed column.)
    3 To add extra space between columns in the LOV window, set the Display Width wider than the column's default width. Note, however, that as an exception to this rule, you cannot increase the width between a NUMBER column and a non-NUMBER column by increasing the display width for the NUMBER column because LOVs display numbers right-justified. For example, assume that your LOV contains 3 columns: column 1 and 3 are type CHAR and column 2 is type NUMBER. To increase the width between each column, increase the Display Width for columns 1 and 3.
    Good Luck.

  • Dynamic form search in form builder

    Hello folks, I am relatively new to form builder, only a few months of experience, and here is the problem that I am having.
    I have this table, table1, with columns A,B,C,D..etc, I want to set up the search page in the following fashion:
    - One text field for every column of the table
    - The user can fill some of these text field, and leave others empty.
    - the form should only search for the columns in the text fields that are not empty, for example, if I leave the text field corresponding to A empty, then I can search for any value of A.
    - the result of the search is displayed in an LOV.
    I have read around and I found it to be something like that in the LOV query:
    SELECT *
    FROM table1
    WHERE
    (:block.A_text_field IS NULL OR table1.A = :block.A_text_field) and
    (:block.A_text_field IS NULL OR table1.A = :block.A_text_field) and etc for all columns...
    Or maybe this:
    SELECT *
    FROM table1
    WHERE (A = :block.A_text_field AND :block.A_text_field IS NOT NULL) OR
    (B = :block.B_text_field AND :block.B_text_field IS NOT NULL)OR etc for all columns....
    I haven't tested these two sample codes, because the server is closed currently, but would they work knowing my requirement? Would this query search for any value of B if the B_text_field was left empty? eg. user types 55 in A_text_field and leaves B_text_field empty; would it generate an LOV that shows A=55 and B any value?

    well to my mind this where clause
    (:block.A_text_field IS NULL OR table1.A = :block.A_text_field) and
    (:block.B_text_field IS NULL OR table1.B = :block.B_text_field) and [...]returns:
    if A_TEXT_FIELD is entered, then the column A column has to be exact the value of A_TEXT_FIELD (:block.A_TEXT_FIELD = table1.A) else if it there isn't any value entered there is no limitation for table1.A (:block.A_TEXT_FIELD is null with OR condition).
    When entering A_TEXT_FIELD and B_TEXT_FIELD, both limitations have to be fulfilled (if only B_TEXT_FIELD is entered just the B_TEXT_FIELD condition has to be fulfilled of course).
    When you don't enter any conditions in your textfields, you get all records from the table
    whereas the second construct won't return anything if you don't enter some data in your text fields.
    guess this:
    :block.a_text_field is null and :block.b_text_field is null, so this would be:
    (A = NULL and NULL IS NOT NULL) --this is false
    OR (B = NULL and NULL IS NOT NULL) -- this is also falseyou can simply check this by issuing the following query in SQL*Plus or something:
    CRONET@tcp_asterix_impl> select 1 from dual where 1 = null and null is not null;
    no rows selected
    CRONET@tcp_asterix_impl>So I believe the first condition does the thing you want.
    regards

  • Alternative use of date picker in Forms Builder

    Hi
    I am looking for a way to create event based actions by use of standard functionality.
    I have created a calendar module by use of the Forms Builder. I would like to add a date picker to a “show form” and add some events based on user actions to this page.
    When a date is selected (by a click on a date from the “small” date picker) a new page with events for the selected day should be displayed instead
    Have anyone any alternative experience with the date picker in the end user environment?
    Regards
    John

    Hi there,
    I presume that you want to run a report with date parameters. The parameter form of Oracle Reports has limited capabilities. It certainly does not have a date picker (Calendar). However, you can use SQL to give you a list of dates for the LOV but it will not be elegant.
    If you have Oracle Forms, it can call the calendar for the user to pick the date. The values are then passed to the report as parameters.
    Hope the above helps.
    Best Regards,
    John

  • What would you recommend me to do in Oracle Form Builder as a beginnner?

    I am a beginner in Oracle Form Builder and can anyone recommend a list of tasks/assignments I could try as I barely any projects at work currently ?
    I have been able to query items in a database(table) by creating a control/dummy block. What list of tasks would you suggest me to do next ? Any complex type of forms I could try ?
    Thanks.

    If you have created a dummy/control block, I would recommend that you create a new block based on a database table. Use the block wizard.
    Then a further block based on a table that is a "child" or "detail" table for the one you just created. use the block wizard.
    Then create a list of values (using the LOV Wizard) to populate one or more of the fields in your block - preferably using a SQL statement to get the contents of the LOV.
    You could then try creating a calculated item to add up values in one of your blocks.
    Then try creating a "when validate item" trigger on one of your items to try to enforce some validation rules. Display any error messages using an Alerti (don't bother with the "message" function in Forms - it's rubbish).
    That should be enough to be going on with.
    Good luck.

  • How to get information from ODBC sources to Forms Builder environment

    Hi,
    Could anyone help me, to get some examples or more information, that how can I get information from ODBC sources to Forms Builder environment. I have a need to read data for example to LOV.

    If you are on Forms 6i you install the Oracle Client Adaptor from the Forms CD. You then have a way of connecting to ODBC datasources.
    To connect to ODBC at the same time as you are connected to Oracle you can use the EXEC_SQL package to create a second connection via odbc and issue select statements against that datasource.

  • Unable to create new in form builder

    I'm currently using oracle 9i and within form builder, i've built a form with three tabs consisting of data taken from a table, and 2 views.
    I've also created a sequence in sql+ that starts with 6 so i can use it to add new serial_no.
    But the problem is whenever i press the create button which really is pl/sql code
    SELECT no_serial_sequence.NEXTVAL
    FROM dual;It doesn't creates a new record, instead it changes the current record.
    Can anyone please give me some suggestions on where to look for errors?
    Thanks in advance. B)

    Can you send the command with which you create sequence.
    Thanks

  • Help is not working in Form Builder 6i

    Hi all,
    I'm using Forms builder 6i in Windows7 system. When i go to Help menu and click 'Form Builder Help Topics' a error message is coming.
    I've reinstalled it many times. In Windows XP system it's working fine. Why it's not working in Windows7?
    Any suggestions??

    Check this:
    http://support.microsoft.com/kb/917607
    Regards

  • XML Forms Builder - problem with checkbox

    Hi,
    I have created many checkboxes in XML Forms Builder and if I want to create a new document based on this "Form" I have still checked one of checkboxes. I would like to have all empty  checkboxes becasue user should check the appropriate checkboxes.
    Do you know how to resolve this problem?
    Thaks for help!
    Regards,
    Andrzej Tabara

    Hi,
    is it always the same checkbox that is already filled in? Is this ckeckbox based on a metadata-definition?
    If yes: You could maybe have a look at the metadata-definition. Is there maybe a default-value defined?
    Kind reagrds
    Karin

  • Can not open PLLs on Forms Builder 10g

    Hi Folks,
    everytime I try to open an existing PLL-File via the Forms Builder FileOpen-Dialog I have got the message
        PDE-PLI018 Couln not find library
        Drive:\Path\LibName.pll
    Pressing the OK-Button returns to the FileOpen-Dialog. The selected FileType in the Dialog take effect to the filelist but nothing else.
    Note that the file exists and I select it from the Filelist!
    About Forms Window shows the following:
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.4.0     Production
    While converting from 6i to 10g it is unavoidable to convert forms and libraries, so please help me!
    PS: I can recompile forms with attached libraries if the PLX-Files (6i) are available, but the forms will not work with these PLX-Files.
    edited by ths:
    I tried to generate a new library. This works fine until I saved it. After naming the library and pressing the save button in the dialog the pll file was created and the same error message appears.
    I closed form builder and tried to reopen the library: same error.
    I generated another new library and save this by selecting the first new I generated. Jippee! I get the message that the file already exists! I selected "overwrite" and the file was overwritten. After that the same error appears.
    How can I (re)open PLL files? It is no solution to generate a new library overwriting the old one everytime some changes should made.
    Trying to build the library (Ctrl+T) produces another error:
        FRM-91507: Internal Error: Unable to generate library.
    Compiling (Ctrl-Shift-K) works fine.

    Hi Mark,
    there's no user except of me on the pc and server (I'm working via rdp-client on a virtual server), no server and no oc4j task or instance started. The one and only program that runs is forms builder. The error occurs if I just try to open a pll file via the file open dialog of forms builder.
    With my admins we found that forms builder creates a (temporary) file (e.g. s22o without extension with 827392 bytes) in c:\ but only if I'm the actual user. After I'm getting the permission to create and update files on c:\ forms builder was able to open pll files. Now we're trying to find out why this accurs only on my login. With other users we tried these file was created on F:\ which is the personal drive of the user. I'm only wondering about the fact that temporary files were not created in the TEMP folder defined by the TMP or TEMP environment variable.
    So we solved this unusual problem in an unusual way.

  • FRM-92101 when trying to run forms from Forms Builder 10g

    I have been struggling with this for a few days now and have tried multiple solutions around on these forums without any resolution yet!
    Trying to run Forms Builder on a Windows XP machine with Oracle Development Suite 10.1.2.0.2 installed in its own ORACLE_HOME. The installation completes succesfully and I can start the OC4J instance.
    1) When I open up Forms Builder and pull up the test.fmb form and try to run it, I get the following error:
    FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
    On clicking 'Details' the following errors are displayed:
    Java Exception:
    oracle.forms.netConnectionException: Forms session <1> aborted: unable to communicate with runtime process.
    2) The ORACLE_HOME\j2ee\DevSuite\application-deployments\forms\application.log includes the following errors:
    11/11/25 10:02:23 formsweb: RunformProcess.connect(): failed !
    11/11/25 10:02:23 formsweb: Forms session <1> aborted: unable to communicate with runtime process.
    11/11/25 10:02:23 formsweb: Forms session <1> exception stack trace:
    java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at java.net.Socket.<init>(Socket.java:309)
         at java.net.Socket.<init>(Socket.java:153)
         at oracle.forms.servlet.RunformProcess.connect(Unknown Source)
         at oracle.forms.servlet.RunformProcess.dataToRunform(Unknown Source)
         at oracle.forms.servlet.RunformSession.dataToRunform(Unknown Source)
         at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    3) The Java console has the following error:
    oracle.forms.net.ConnectionException: Forms session <1> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.HTTPConnection.connect(Unknown Source)
         at oracle.forms.engine.FormsDispatcher.initConnection(Unknown Source)
         at oracle.forms.engine.FormsDispatcher.init(Unknown Source)
         at oracle.forms.engine.Runform.initConnection(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Opening http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.class
    Connecting http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.class with no proxy
    Opening http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.properties
    Connecting http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.properties with no proxy
    Opening http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.class
    Connecting http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.class with no proxy
    Opening http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.properties
    Connecting http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.properties with no proxy
    Any inputs will be greatly appreciated.

    Same issue here... Been trying to get this working since a week now. I tried all the solutions like memory heap and all but no luck.
    One thing that I would like to know is that, in some threads the resolution was to recompile the INS_FORMS.MK file under /forms/lib32 but with my installation I don't have that "lib32" folder under /forms/ and I can not even find that file anywhere in my entire installation.
    I am using 12.1.1 on Windows Server 2008.
    Any help or guidelines is greatly appreciated.
    Santhosh.

  • Suggest me the link to any Pdf file having form builder process flowcharts

    Hi people,
    In form builder 6i ,in help topics, i find "process flowcharts" describing various default process of form builder is there. I want to take it printout. But first what i have to do is copy it into microsoft word and then
    format the same etc it is time consuming.
    Can any body suggest me if there is any pdf file having such process flowcharts. If such pdf file is there then please tell me the link.
    thanks in advance
    prasanth a.s.

    Prashant,
    think this is a duplicate. However, look at the online help.
    Frank

Maybe you are looking for

  • Dynamic Configuration in SAP PI 7.3

    Hello, I am doing one file to file scenario in PI 7.3 (Java Stack only). There is one requirement i.e. The output file name will change according to Development, Quality and Production. Prefix will be added to the outputput file name according to Dev

  • Importing Images in Lightroom 5 on Mac

    Hello, Can someone please assist me in importing images? When I try to import my images from an external hard drive, I only see the file name in grid view. If I click on one file, I can see the image in Loupe view. However, I am still unable to impor

  • List of compatible video cameras and codecs for iMovie 1.2.2 (iOS)?

    Is there any official or unofficial list of compatible video cameras and video formats/codes published by anyone? By the way, I successfully managed to import .mov (motion jpeg) from Panasonic DMC-FT1 to iMovie for iOS5. The AVCHD setting (.mts) does

  • To harvest AIA 3.0 deployed composites in OER 11g

    Hi all, I am using AIA 11.1.1.3.0 and OER 11.1.1.3.0. I have a requirement to harvest deployed composite(custom built) in OER 11g. My harvester settings.xml(remote Query section) looks like below - +<remoteQuery>+ +     <serverType>SOASuite</serverTy

  • Importing Mobileme Gallery

    Is there any way to import an existing mobile me folder into Aperture 3.0? I have several previously created galleries that I want in Aperture.