Migrated collections - update issues

Hi, I had problems with the 'Title of the Collection' and 'Image of the Collection' update for collections that I migrated.

For my 'welcome' collection (the collection of albums in my layout) when I update the image, the update of the image does not appear on my ipad app. The new image appears correctly in the window of collection properties (screenshot below), it is not only get pushed to my application.

For my 'report collection' (middle right in my layout) of the Migration process appears to have imported the version number (first Republic annual report 2014 V1). I went back in the collection properties and removed V1 'Title of the Collection', but the update is not reflected in the ipad app.

I tried an edit and re-edit these different collections. I tried to remove the collections and re-migration. (and publish it again). Still no luck.

Is there a work around? Or is this a known problem, that you guys work?

Thank you!

Leo

Screen Shot 2015-07-29 at 10.58.13 AM.pngIMG_0402.PNG

Yes, I got very good at the termination of the application, restart and wait for the 'update available' button appear at the top.

I just find a workaround. I have created a new collection in the DPS cloud and added items migrated in my new collection. I updated the content mode 'open default collection'. Essentially, I re-packaged items and now my updates of the "image of the collection" and "the collection title" are reflected.

The problem I had with collections related only to the collections that were migrated DPS 1.0 using the "Migration of Folio tool."

Thank you!

Tags: Experience Manager Mobile

Similar Questions

  • InDesign CC fails on the update - issue lasted about 6 weeks - have removed app, without change. Need of difficulty.

    InDesign CC fails on the update - issue lasted about 6 weeks - have removed app, without change.

    The process of update for InDesign is broken.

    Need for this problem.

    Can you please try and uninstall it for uninstall to utilities/Adobe installers/uninstall Adobe InDesign CC.

    And then sign back in Adobe Creative Cloud and redownload InDesign.

    If you are still experiencing a problem, please let me know.

    Kind regards

    Abhishek

  • In a table by using the Collection update of nulls

    I use collections to create a form in a table. However, I can't get the code to work. Could you please look at my logic and let me know what I am doing wrong?
    Apex version: 4.1
    1 process name: load Collection
    a. process Point: On Load - before the header
    Condition (b) process:
    i. the condition Type: PL/SQL expression
    + ii.     Expression:
     not apex_collection.collection_exists(p_collection_name => 'STAKEHOLDERS_COL')
    +
    c. code:
    if apex_collection.collection_exists('STAKEHOLDERS_COL') = TRUE then
       apex_collection.delete_collection(
             p_collection_name =>'STAKEHOLDERS_COL');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'STAKEHOLDERS_COL',
        p_query => 'select id
                   , stakeholder_name
                   , stakeholder_role_id
                   , primary_contact_yn
                   , receive_notification_yn
                   , ''O'' original_flag
                   , wwv_flow_item.md5(stakeholder_name, stakeholder_role_id, 
                     primary_contact_yn, receive_notification_yn) 
                   from eba_prjv_proj_stakeholders,
       p_generate_md5 => 'YES'
    );
    * 2.     Report on the collection:
    a. query:
    select 
    apex_item.hidden(1,c001) id,
    apex_item.popupkey_from_query(2,c002,'select user_name d, user_name r from eba_prjv_app_users order by 1', 10) name,
    apex_item.select_list_from_query(4,c003,'select role_description d, id r from eba_prjv_stkhlder_roles order by role_code', 10) role,
    apex_ITEM.SELECT_LIST(5,c004,'N','Yes;Y,No;N') primary_contact_yn,
    apex_ITEM.SELECT_LIST(6,c005,'N','Yes;Y,No;N') receive_notifications_yn,
    apex_item.hidden(7, c006) status,
    apex_item.checkbox(8, seq_id) chkbx,
    apex_item.hidden(9, seq_id) seq_id
    from apex_collections
    where collection_name = 'STAKEHOLDERS_COL'
    AND c006 IN ('O','N','U')
    * 3.     I have a button 'Add a line' add a blank line for inserts. The button "submit page" REQUEST As "ADD". *
    * 4.     The process of adding new line: *.
    a. process Point: after submit - by the calculation and Validation
    b. process of Condition: what key - add row
    c. code:
    begin
    apex_collection.add_member(
    p_collection_name => 'STAKEHOLDERS_COL',
    p_c006 => 'N',
    p_generate_md5 => 'YES' );
    end;
    * 5. I have a button Delete who submits the request page = 'DELETE '. *
    * 6.     Collection update process:
    a. process Point: after submit - by the calculation and Validation
    + b.     Condition of process:
    REQUEST != 'ADD'
    +
    c. code:
    DECLARE
    l_status VARCHAR2(1);
    l_seq_id NUMBER;
    l_original_md5 VARCHAR2(4000);
    l_array_md5 VARCHAR2(4000);
    
    BEGIN
    
    FOR i IN 1..apex_application.g_f01.count LOOP
    
    -- Check previous status of Collection Member
      
       SELECT c006, c007 INTO l_status, l_original_md5
       FROM apex_collections
       WHERE 
       collection_name = 'STAKEHOLDERS_COL'
       AND seq_id = apex_application.g_f09(i);
    
    IF l_status = 'N' THEN
       l_status := 'N';
       
    ELSE
       SELECT wwv_flow_item.md5(apex_application.g_f02(i)
       , apex_application.g_f04(i)
       , apex_application.g_f05(i)
       , apex_application.g_f06(i))
       INTO l_array_md5
       FROM DUAL;
       
       IF l_original_md5 != l_array_md5 THEN
          l_status := 'U';
       END IF;
    END IF;
    
    
    IF l_status IN ('N','U') THEN
       
       apex_collection.update_member(
       p_collection_name => 'STAKEHOLDERS_COL'
       , p_seq => apex_application.g_f09(i)
       , p_c001 => apex_application.g_f01(i)
       , p_c002 => apex_application.g_f02(i)
       , p_c003 => apex_application.g_f04(i)
       , p_c004 => apex_application.g_f05(i)
       , p_c005 => apex_application.g_f06(i)
       , p_c006 => l_status
       , p_c007 => l_original_md5
     );
    END IF;
    END LOOP;
    IF :REQUEST = 'DELETE' THEN
       FOR i IN 1..apex_application.g_f08.count LOOP
       -- Check previous status of Collection Member
     
      SELECT seq_id, c006 INTO l_seq_id, l_status
      FROM apex_collections
      WHERE collection_name = 'STAKEHOLDERS_COL'
      AND seq_id = apex_application.g_f08(i);
    
      IF l_status = 'N' THEN
         apex_collection.delete_member(
         p_collection_name => 'STAKEHOLDERS_COL'
         , p_seq => l_seq_id
        );
      ELSE
        apex_collection.update_member_attribute(
        p_collection_name => 'STAKEHOLDERS_COL'
        , p_seq => l_seq_id
        , p_attr_number => '6'
        , p_attr_value => 'D'
       );
      END IF;
     END LOOP;
    END IF;
    
    end;
    * 7.     Update the collection table
    a. process Point: present - according to calculation and Validation
    b. process of Condition: If the key (APPLY_CHANGES)
    c. code
    DECLARE
    l_table_md5 VARCHAR2(4000);
    l_collection_md5 VARCHAR2(4000);
    BEGIN
    
    FOR c1 IN (SELECT c001, c002, c003, c004, c005, c006, c007,seq_id
    FROM apex_collections
    WHERE collection_name = 'STAKEHOLDERS_COL'
    ) LOOP
    
    IF c1.c006 = 'N' THEN
       insert into eba_prjv_proj_stakeholders
                ( STAKEHOLDER_NAME,
                 STAKEHOLDER_ROLE_ID,
                 PRIMARY_CONTACT_YN,
                 RECEIVE_NOTIFICATION_YN
                 )
                values
                (c1.c002,
                 c1.c003,
                 c1.c004,
                 c1.c005            
                );
    ELSIF c1.c006 = 'D' THEN
       DELETE FROM eba_prjv_proj_stakeholders
       WHERE id = c1.c001;
    ELSIF c1.c006 = 'U' THEN
       -- Check the record hasn't been updated since the query
       -- Get MD5 checksum from the Table
      
     SELECT wwv_flow_item.md5(STAKEHOLDER_NAME, STAKEHOLDER_ROLE_ID, PRIMARY_CONTACT_YN, RECEIVE_NOTIFICATION_YN)
       INTO l_table_md5
       FROM eba_prjv_proj_stakeholders
       WHERE id = c1.c001;
       -- Compare the checksum values and if they are different, raise an error.
       IF l_table_md5 != c1.c007 THEN
          raise_application_error( -20001
          , 'Current version of data in database has changed '||
            'since user initiated update process.');
         return;
      END IF;
    
      UPDATE eba_prjv_proj_stakeholders set
      STAKEHOLDER_NAME = c1.c002,
      STAKEHOLDER_ROLE_ID = c1.c003,
      PRIMARY_CONTACT_YN = c1.c004,
      RECEIVE_NOTIFICATION_YN = c1.c005
      where id = c1.c001;
    end if;
    end loop;
    apex_collection.delete_collection( p_collection_name => 'STAKEHOLDERS_COL' );
    END;
    At the end of the process, I see null values inserted in my table. The report also displays null values.

    Published by: jaouad khalifi on August 17, 2012 04:26

    Published by: jaouad khalifi on August 17, 2012 04:42

    Published by: jaouad khalifi on August 17, 2012 04:46

    Published by: jaouad khalifi on August 18, 2012 02:03

    Hello

    I changed and then brought back to the State that you had.

    The problem here is that you have status and Seq_id returned with APEX_ITEM. HIDDEN, but you have not selected the Show check box for those columns attribute report tab.

    Thus there is no f06 and f09 only named elements in your HTML DOM and therefore no APEX_APPLICATION. G_F06 and G_F09. If your processes

    FOR correct here is what you do

    1. mark the status and Seq_id as indicated in the report attribute tab columns
    2. change the ACE status display hidden to report column Standard. Change display of the Seq_id also report Standard column

    Note that when a column is not marked to show in the report he becomes any and you don't see the associated items in the DOM HTML.

    See you soon,.

  • Can I change my CS6 Master Collection (updated for CS3, Win) win for Mac?

    Hi all

    I want to stay with CS6 (no creative cloud not provided)...

    Due to a hardware problem I think to switch from Win to Mac. Buying a Mac not a PC under Windows...

    Is it possible, that I change the platform for my CS6 Master Collection (updated for CS3, Win) win for Mac?

    If yes - how much does it cost?

    Thank you very much and greetings

    Stefan

    Here is a link to a page that provides information about a change of platform:

    l http://helpx.adobe.com/x-productkb/Policy-Pricing/Order-Product-Platform-Language-swap.htm

  • Since the last update issue 31, whenever I start Firefox It controls compabillitity with Add ons

    Every time I start Firefox I get on my desktop check Add ons compabillity and Firefox open, never had this before, how can this be resolved.

    I've updated from version 25 (25.1?) to 31 version and updated all my modules at a time. Whenever I started Firefox it would check compatibility and open the pages for all the Add-ons. I tried all of the suggestions posted here without success. I loaded a backup of my system and just tried to update the add-on and it's the same thing. What I was finally load a backup of my system, delete all the Add-ons, Firefox update and then go back new versions of Add-ons one at a time. It was a chore, but it worked. (In millions of possible computer, millions of unique & fixed issues configurations.)

  • BIOS update issue on Satellite 3000 x 11

    Hello
    I found a lot of people complain about this same issue.
    I have found no solution posted. Most (now locked) son is completed by people who say 'don't update your bios is running well.

    This computer does not work well and I'd like to update the BIOS.

    The problem is that the update of the bios said it failed because the update is only not for this model of computer.
    The laptop is a Satellite 3000 - X 11. I downloaded the update of the BIOS v1.6 for the Satellite 3000 - X 11
    So I don't know why he made this complaint.

    Please let know us if there is anything more I can do here.

    Also note the BIOS update procedure I followed was exactly according to the instructions.

    Thank you

    Jonathan

    Can you please my why you need again so laptop BIOS works OK? What do you expect will happen after doing this?

    I ask this question because I found too many people who, after updating the BIOS, want to have the old version.

  • Implemented ICS update issues, Questions and advice (official)

    Welcome to the holders of Xoom under ICS colleagues,

    Please use this thread to report issues, ask questions, provide advice or other functional response. This thread isn't supposed to be a place to provide lists of wishes for future features or updates, but let us focus on getting the optimal performance of the ICS and reporting potential defects that need to be addressed. What is cream ice with pads? Share your tips or ask questions of other users ICS in this thread as well.

    If you declare a questions, please provide as much detail as you can, including:

    • What is the error or a symptom? What does your Xoom?


    • What applications are running on your tablet when this happens?


    • Have you tried to reboot or forced a Reset? What were the results?


    • This is a repetitive problem and if so, what are the steps (for others to try)?


    • The problem occurs in other places (especially if associated with connectivity)?


    • If this seems to be associated with app, have you tried another (competitor) Soft?


    • Is that what you found all work around the issue?

    The Xoom WiFi just launched upgrades, we will use this same thread for the upgrade of the 3G / 4G Xoom when he is available as well. As questions or gaps are found in this thread, we will be able to aggregate the details here for Google or Motorola to review.

    If you are reporting a problem or a question, consider following this thread for answers, suggestions or updates to follow-up.

    Thank you for your participation and contributions.

    -Doc


  • Update issues (error Code 646) or "WindowsUpdate_00000646" "WindowsUpdate_dt000"

    I constantly have problems with updates. It seems to be their installation. But when it's over I get a message saying "some updates were not installed". "Error found: Code 646 Windows Update has encountered an error." Get help with this error"I click on get help with this error and a window opens. 1 result for "WindowsUpdate_00000646" "WindowsUpdate_dt000", and a troubleshooting link appear. But, I can't find any sollutions. What can be done to solve this problem and other future issues updated?

    God,

    A KB was created for 646 error code that appears during the installation of the updates of Microsoft Office. The KB includes a TI automatedFix, which corrects the problem. Look at the following KB:http://support.microsoft.com/kb/2258121

    Please let us know if that helps.

  • Compatible Windows XP & Windows Update issues from July 2010

    I am a technician in a company working with point of sale systems, and we quite regularly do the format / reinstall of Windows XP on different computers.  Since last week, every time the update to a new installation of XP SP3 using Windows Update, Windows and Internet Explorer have errors after the first batch of updates and reboot.  When Windows starts, an error box will appear that says something about an advpack.dll error.  Then, when you open IE, it loads the homepage correctly, but if you try to navigate to another Web site he returns the error "the requested lookup key is not found in any active activation context". I googled both of these errors and have found at least a partial solution to the latter; by setting the IE on the Windows Update home page, you can get the rest updates needed to make IE working again.  However, this always leads to problems with the software that we use, it is based on IE for some of its features.

    Someone met these issues with Windows Update recently?  And are there solutions?  This makes my job extremely difficult.

    Before anyone asks, I have experienced these problems on several computers (4 or 5 so far), and using at least two different copies of XP, it a regular retail SP3 install disk and the other an OEM SP3 disk.

    I realized that if I download IE8 with the first batch of updates, I avoid the problem.  IE8 has apparently struck in the queue of priority on Windows Update to where he tried to install IE8 first, then a few fixes for IE6, which crushes IE8, make a mess of it all.

  • Windows Update issues. Windows Defender can't check definition error code 0 x 80242017 - after Re Installing Windows Vista updates. ?

    After reinstalling Windows, everything works fine until it fails to install and download updates.
    After that it automatically installs updates, it shows updates that failed, I try again but then it does not download or install updates everything at all!

    -J' have a lot of updates going back to years ago, it lists the Versions updated even with another publication date, what I need to download and install all?
    I should manually, choose to install only the latest versions?

    -Windows Defender error 0 x 80242017:
    Windows Defender had always worked without any problems before re-installing.

    -J' already downloaded Microsoft Fix it: it scans and fixes a few problems, but there is always an impossible problem to fix 'recent installation updates problems'

    Also, checked if Software Licensing service work but couldn't find it under services - this could be a related issue? or is located somewhere else?

    I now use the computer and everything else seems normal.

    -little background information:
    Decided to do a re-complete installation of Windows Vista on an old computer which was the minimal use (we tried to update every month)
    Why I decided to reinstall:
    During a session to install the fix, it never moved beyond the "installation of update 1 of ' it lasted there for several hours, after losing patience I Gilles downwards and then the problems started a week later.

    I was unable to use it without problems, sometimes I would get blue screens, get stuck checking DMI disc read error, or it wouldn't start at all. Also seems to be some registry problems.

    In the end, I was able to start but I was able to browse the internet. When I opened all the files, the window came out white, but he said that the number of files it contains.  Could not even open the start menu and was unable to use the restore system and when I access it from F8 it says it is running in a limited Diagnostic State and all restore points have disappeared.

    Last good known Configuration or Check Disk doesn't help. I reinstalled after that.

    .. Although old, The Works pretty good Comp for the people here who are going to use it for their homework and light internet use as my niece when here after school.

    I'm not a Tech person that's why I posted for help here = \

    Thank you in advance, all advice appreciated!

    1. all both installed on 22/09/2014

    2. it is not available

    3. 2 or 3 hours maybe? I downloaded webroot only after that I thought I was able to install the updates that lasted a few hours.

    4 definition version: 1.185.885.0 created 22/09/2014

    What happens when you try to update Defender via the UPDATE on the update tab button (for example, another error of 0 x 80242017)?  [DOCUMENT TEST/NOW]

    When you run a manual check of updates, is an update of definitions of Defender offered as an optional update and if so, allows it to install?

    Note: A computer can become infected a few seconds of being connected to the internet without a valid antivirus application installed. It of a very good chance that you see the effects of an infection being a certain type and that demand for Webroot is not installed or working properly.

    ===========================================================

    Error message when you run Windows Defender: «Error 0x800106ba»
    http://support.Microsoft.com/kb/931849

  • Windows 7 update issues

    Despite the line being marked as answer, my Windows Update problems. Hackers control stalking me and my internet access enabled him to pass by, so it might seem a response. It is safe to say that what is happening as well to others. (In general), they lay down when I have to talk to them, anywhere, but just smile back because they know that you're not going to catch them.

    EDIT: I was hacked just to let me know they do not have to throw down for not being intercepted.

    Please provide more information for your issue to be diagnosed.

    Restart your computer and wait 20 minutes for the system to operate before you download information. When the review much, not Event Viewer log files all problems show in the period immediately after the computer has booted.

    Please provide a copy of your system information file. Type the system information in the search box above the Start button and press the ENTER key (alternative is select Start, all programs, accessories, System Tools, system information). Select file, Export and give the file a name noting where it is located. Not to place the cursor in the body of the report before exporting the file. The system creates a new information file system each time system information is available. You must allow a minute or two before the file is completely filled before exporting a copy. Please download the file to your OneDrive, to share with everyone and post a link here. If the report is in one language other than English, please indicate the language.

    Please download and share with everyone a new copy of your log System of your event viewer on your disc one and post a link here. It allows to avoid confusion if you delete all previous copies of the log files of your OneDrive.

    To access the system, log, select Start, Control Panel, administrative tools, Event Viewer, in the list on the left of the window, expand Windows logs and select System. Place the cursor on the system, select the Action in the Menu and record all events like (the evtx default file type) and give a name to the file. Do not offer not filtered files. Do not place the cursor in the list of reports before selecting the Action from the menu. Do not clear the logs so that you have a persistent problem.

    For assistance OneDrive see paragraph 9.3:

    http://www.gerryscomputertips.co.UK/MicrosoftCommunity1.htm

  • ESXi 5.1.0 and updates issue

    Hi all

    I have a certain ESXi 5.1.0 servers that are outdated with respect to updates. If I find what version/patch level I'm on and update all patches from there or can I everything simply to apply the latest update and get all of the fixes that are included in the other updates?

    What is your experience with this?

    Thank you!

    Hello

    VMware release individual patches/updates to update / security fixes necessary but periodically they will release an update rollup or a new version which includes all updates prior to this date.  Between these stacks of additional individual fixes may be rejected you will need to find a facility manually unless your strategy is to wait for the next cumulative, so you need to consider your political correctness as to how you will address the issue, if you get the patches as they become available or just apply the cumulative patches and releases and major updates.

    However, the best way to handle this is via the Update Manager if you have installation, you can automatically download all updates, update rollups, patches, fixes, etc. and create base lines which will do the work for you in the host of scan and identify the what patches are missing, and make sure you can get them all to the same correction level , but in the short term, you can install the latest update (eg. 5.1 update 3) and which will include all the updates up to the date of release of this update.  To make sure you can see the Release Notes to confirm exactly what patches and fixes are included in each version.

    Hope this helps

    vM

    -----------------------

    VCAP-DCD / VCAP-DCA / VCP-CLOUD / VCP - DT / VCP5 / VCP4

    -----------------------

    vMustard.com

  • dynamic collection update process does not properly

    Hi all

    This is pavan,

    I use apex 4.2.3

    I try to get add line dynamically with update I'm able to do, when I am adding data in the table and clicking the data previous is not fetch its refreshed and empty lines are coming, we hear the collection not updated

    to do this, I spoke https://apex.oracle.com/pls/apex/htmldb/f?p=31517:294:129399391179038:ADD_ROWS:NO:

    and help the update of table with dynamic Action form

    and APEX_COLLECTION

    but I am unable to do I tried here http://apex.oracle.com/pls/apex/f?p=52985:5:101957963538920:

    am I missing something please let me know.

    Thanks in advance,

    Kind regards

    Pavan

    Hi Pavan,

    Check your page again please.

    I changed a code (your code commented on and put in some new)

    Your update has not looked like it worked because you had an error in your column map: you assigned the f05, f06, f07 and text elements, yet your application was based on the columns c001 and c002, c003 collection. So basically you have been updated from columns 5-7 and looking at 1 to 3 columns.

    I also changed your header before your worked well, but by using apex_collection.create_or_truncate_collection is easier to use because it does not require checking for an existing collection.

    Kind regards

    Vincent

    http://vincentdeelen.blogspot.com

  • Migrated collections - low resolution images section

    During the migration of collections of existing accounts of DPS using the Migration tool, all items are imported with a small image low resolution than the image of the article. He shoots tiny images that appear in the drop down table of contents in the current applications of DPS.

    When a checkerboard and the presentation of the card are implemented for these collections, so is pretty much agreed that we use tiny image size or the images will look blurry and pixelated.

    Any way to have the Migration tool to draw the image that appears in the bar of the slider in the existing applications of DPS? These images are larger and higher res and allow us to create networking and map page layouts that use large sizes of image and so to provide more flexibility and more possibilities in the layout settings.

    Hi Rafael,.

    The version that came out last night adds a new option of the tool of migration for the same reason. Instead of using the table of image content, you can have the migration tool pick up the thumbnail of the first page of each article.

    Neil

  • CS4 Master Collection updated installation media

    I'll set up a deployment package for CS4 Master Collection remotely using the Toolkit for development to use with SCCM.

    I was initially with 4 installation support provided by following the steps provided in the documentation. However, they are now clearly obsolete and require updating. If I download the installation media in the http://helpx.adobe.com/creative-suite/kb/cs4-product-downloads.html Web page if they have installed updates or client systems have will work always updates?

    I found the tool to update remotely, but it says it's for CS5 and above. Is there a similar tool for CS4?

    Thanks for any help.

    This discussion to the enterprise for cc forum Creative Suite Deployment '

    Mikey_it know that CS4 products download installers are for retail licenses.  If you deploy software, then it is likely that you have a volume license.  In this case, you want to download the https://licensing.adobe.com/volume license installation files.

Maybe you are looking for

  • 2000-2d09WM HP: power-on-password deletion

    I was reading some posts here, always provide you a code to remove the updated password power? If so could you provide one for me? 2000 - 2d09wm 56221000 lockcode Appreciate any help you can provide, Thank you, 123tech

  • 2014 SP1 introduced error in withdrawal of the license of the server Volume License

    After the update of a LabVIEW 2014 with Service Pack 1 installation, LabVIEW is unable to acquire a license from our server VLM... Service pack generates a need for an update of the license, or the VLM Server? The license worked (work) for 2014 befor

  • HP HDX16t-1200

    I tried to restore my system.  After the backup is complete, I started the restoration, only to be informed that the BOOTmgr was missing.  I've been invited to hit ctrl/alt/del to restart.  Now, it's the only message I get EVERY TIME I start it.  Get

  • HP Envy 4500 ~ transport Jam

    I just bought this printer. I'm trying to install it. I'm stuck after installing cartridges. The display shows 'transport Jam. The printer carriage cannot move... "I see no visible obstacles. I have taken the cartridges out and reinstalled several ti

  • Rotate the fonts

    Hi, guys. Does anyone know is it possible to rotate the fonts? Police class has a method derived from public Font derive(int style, int height, int units, int antialiasMode, int effects, int[] transform) I suspect that the transform parameter should