Element _WF_PARFOREACH_INDEX

Hi experts,
what is the element WFPARFOREACH_INDEX in WF's container? How is it filled?
Thanks and regards
Antonella

This index is used when you have a multi-line element you are looping at. Check tab Miscellaneous. There is a field called Multiline Element used for dynamic parallel processing. Read the documentation on that tab and you will understand more.

Similar Messages

  • Error while using container element _WF_PARFOREACH_INDEX in workflow

    Hi All,
    I am using internal container element WFPARFOREACH_INDEX in internal table so that i can use it as index to read table row one by one..but in binding i am getting error "Container element '_WF_PARFOREACH_INDEX' does not exist" in form of an example.
    Can someone tell me that how to get rid of this error in binding? I am using this element variable to achieve parallel branching in workflow.
    Regards,
    Sumit

    Hi AA,
    You would probably need to create more than one containers.
    In workflows, we have following types of containers:
    1. Workflow container
    2. Task Container
    3. Event Container
    Now, since you need the element VBELN, try the following:
    1. Create a WF container for VBELN. Make it as both input and output parameter.
    2. Create a container for the Mail Step, again with VBELN field as an input parameter.
    3. There would be a button for binding in the mailstep. Bind the Field VBELN from Work flow container to the Mail Step container.
    Once binding is done, save it and Activate the Workflow.
    Hope this helps.
    Do get back in case of any issues.
    Regards,
    Sonal

  • Container element for Count in Parallel Approval Workflow

    Hi Gurus,
    We are using ECC 6.0 and I have this below requirement. Please share your thoughts on how we can achieve this.
    We are using a User decision step in parallel workflow to generate and send individual work items to multiple approvers. that is, we generate multiple work items and send to individual approvers for the same step in the workflow and get the combined result (Approve or Reject) to proceed further. I understand that individual result for each work item is stored in container element '_RESULT' (0001 for Approve, 0002 for Reject) and combined result of all the sub-work items is stored in '_WI_RESULT' (0001 for Approve, 0002 for Reject). Also, we can see the index # of work items generated for the same step (node) from container element ''_WF_PARFOREACH_INDEX'.
    My requirement is to set work item to COMPLETED status after we obtain a certain # of APPROVE (_RESULT = 0001) decision. Let's say, after 2 of the approvers say Ápproved', then I'd like to close all the other relevant work items and set the Combined result '_WI_RESULT'to APPROVE and Complete the relevant work item. I was wondering if there is a container element that holds the (count) # of work items generated in individual work item container so that I can keep reading this value to see how many decisions have been made. That is, for example, If there are 3 parallel work items generated and 1st user said Äpproved',  is there a way to know out of a total of 3 approvals (to get the combined result '_WI_RESULT'), one is completed and 2 approval decisions are still pending. I'm trying to use step-level Pgm Exit (After_execution Method) to read this container element for # of approvals done and if the combined result '_WI_RESULT'is '0001'(Approve), i'll try to end other work items. One way of doing is to have a custom table to capture this and keep reading this table after each decision. But, I don't want to have all this customization and I believe there should be a way the SAP is storing somewhere this # of completed or Pending approval work items that got originated from a single step/node. One way of doing could be, after each decision, read the dependent work items (having same node # and Parent Work item etc.,) and get the other relevant work items and read their status etc., But I think this is a lengthy process and may be there is an easier way, perhaps some container element that holds this information.
    Please let me know if you need any clarification on my requirement and share your thoughts on how I can achieve easily.
    Appreciate and thank you in advance for your help.
    Regards,
    Venu

    Hi Karri,
    Thank you for your reply. I was actually doing the same with having an APR_COUNT and passing that for each of individual work items and bind it back to task--> wflow container. And keep checking this counter in wf container.
    Once, we obtain certain # of approvals, then I guess I'll have to complete or cancel the other work items.
    I was thinking may be there is some container element already exists that keep track of this, I guess not .
    Thanks for your input
    Regards,
    Venu

  • How is the binding sequenced?

    Hi all,
    I have a workflow where the first step is a background step used to retrieve multiline container element defined by a class ZCL_APPROVAL_STEP. The binding method -> task and step -> workflow are correctly defined.
    At the next step I have the actual approval where I use the dynamic parallel processing functionality (one approval for each ZCL_APPROVAL_STEP instance in my multiline container element).
    The agent of that step is defined by a rule to which I pass &<my multiline element>[&_WF_PARFOREACH_INDEX&].AGENT&.
    AGENT being an attribute of the ZCL_APPROVAL_STEP class.
    Now the problem is that at runtime the workflow fails (error status) after the completion of my background step. In the workflow log, on the background step I see a message saying "Workitem processing complete" and just after another message saying that source expression &<my multiline element>[&_WF_PARFOREACH_INDEX&].AGENT& is not available. When I look at the workflow container, I see my multiline element is empty.
    Thus to me it seems well that the return binding of a background step takes place only after the workflow->rule binding of the next step.
    Things I have done to try solving the problem (no luck so far):
    - Removing the "advance with dialog" flag in both the background and the approval steps.
    - Inserting a dummy container operation between the two steps.
    - Checking the binding definitions
    - Searching oss...
    I could always try to put a deadline of one minute or so in my approval step, or insert a dummy step inbetween, but that is not a nice and clean solution.
    Anyone experienced similar issues before?
    Thanks in advance for the help.
    Patrick

    @Rob:
    I tried inserting a dummy step between my background (agent determination) and my online (approval) steps. It still did not work although it brought some progress: my multiline workflow container element was then correctly filled in by the background step.
    I now replaced my class attribute by a functional method (that just returns the attribute) and it works. Even without the dummy step.
    I'll never understand 100% the wonders of the SAP workflow engine
    @Arghadip:
    Eventhough I have the agent available in an attribute, I still prefer using a rule. I developped my own one which just returns what it receives (i.e. user id) + makes a few checks (i.e. is the user still valid, etc.) + adds the 'US' prefix if necessary. The main reason is that it allows a better error handling: I flagged the "Terminate if rule resolution without result" checkbox in the rule definition. This avoids my workitem going to all possible agents if my attribute is empty (which should not happen but who knows whether agent determination tables are always 100% correctly maintained...).

  • Need 2 Multiline elements for user decision step

    We are on SAP R/3 Enterprise version.
    I have this requirement to find agents based on the agent type and work center field.  So I created a responsibility rule for each type of agent type.  The responsibility rule is keyed on the work center, and HR positions are mapped to each responsibility rule’s work center field. 
    We have 50 agent types/responsibility rules, 60 work centers, and 1 or more positions for each agent type and work center combinations. Due to the total number of positions, I prefer to use 1 responsibility rule per agent type for ease of maintenance.
    I have a FM that reads the responsibility rule based on the agent type and work center field and retrieve the agent_list.  I used this FM/method/step prior to my user decision step and pass the agent_list to the UD step via container.
    In my user decision step, the ‘Other’ tab does not have Multiline element for me to enter my agent_list.  So I cannot use &agent_list[&_WF_PARFOREACH_INDEX&]& in my user decision agent assignment expression field.
    In my last job, we have SAP ECC 5.0, the UD step has a ‘Misc’ tab that has Multiline element, but our current SAP R/3 Enterprise version does not have ‘Misc’ tab, it only has ‘Other’ tab.
    Question:
    1.  How do I use [&_WF_PARFOREACH_INDEX&] without Multiline element for agent_list in UD step?
    2. I have to use the same way to retrieve my LED_agent_list as well, so I need 2 Multiline elements in my UD step. But normally in  ‘Other’ tab, it allows you to define only 1 Multiline element. How do I get around this restriction?
    3. My last resort is to use 1 responsibility rule, then I can use the rule in the agent assignment.  If that is the case, is there any limit on the number of entries in the rule?
    Thanks.
    Amy

    Sorry, I posted to the wrong forum.

  • 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

  • How many computers can you use one copy of Photoshop Elements 11 on please?

    I intend to purchase Adobe Photoshop Elements 11 for my two student children.  Could you tell me if they will both be able to install in on their respective computers?

    One copy of the software can be installed and activated on two computers but a) they must be used by the same person and b) not at the same.
    Your intended use is not in accordance with conditions set out in the End User License Agreement (EULA)
    http://www.adobe.com/products/eulas/pdfs/Gen_WWCombined-MULTI-20111031_1230.pdf
    2.1.3 Portable or Home Computer Use. Subject to the restrictions set forth in Section 2.1.4, the
    primary user of the Computer on which the Software is installed under Section 2.1 (“Primary User”)
    may install a second copy of the Software for his or her exclusive use on either a portable Computer
    or a Computer located at his or her home, provided that the Software on the portable or home
    Computer is not used at the same time as the Software on the primary Computer.
    You should purchase two copies of the software giving each of your children the ability to use the software on two computers.

  • If each of my family members have Elements on their computers, can we all share central catalog?

    Like most families, each of our family members have their own camera. Rather than having catalogues on individual computers, can we share the one single catalogue from a central NAS drive etc?

    Hi Hatstead,
    A NAS drive is just a sharable network drive that all computers can see. The Adobe Revel suggestion is a good one. I will give it a try but not sure if it will support all the metadata tags that I have in Adobe Elements in order to view the photos/videos in different ways. It would also appear that if each family member will be uploading more photo's etc allowed for by the free licence that I will be up for the premium subscription for each of them per year. Do you know if this is the case and will it support the Elements Metadata tags?
    Many Thanks
    John

Maybe you are looking for