Creating automaticly foldername by date (YYY MM DD) fails in PSE10

Using Elements 10 i have a problem when importing files from my camera to Harddisk.
I want to import the files in Elements Organizer creating automaticly a foldername like YYYY MM DD.
If i choose this (YYY MM DD) in properties(Camera and Cardreader), Elements Organizer will creat a Folder like YYYY DD MM.
Because i have a lot of photos organized within Organizer it is difficult to find the folders
by date on my harddisk.

Hi, Brian,
No - I tried downloading the new update a couple of times and it always seemed to delete files from my card after dowloading them - so I went back to the old version - I can cope with the wrong date format by using a custom date setting which seems to work.
In terms of the downloader duplicating files - it seems to work if I use the basic dowloader (at least it picks up some duplicates) - but does'nt work when I use the advanced format where you can choose which pictures to copy across.
Maybe my set up is odd in some way - at least I know these work arounds now.
DW

Similar Messages

  • How to create automatic creation of BP from customer and vendor master data

    Hi gurus,
    can any one tell how to create automatic creation of BP from customer and vendor master data.
    Please give me the steps.
    Thanks
    Sasikanth.

    HI,
    Goto SPRO\ Cross application components \ Master data synchronization \ Synchronization control.
    Assign account groups of customer and vendors to respective BP grouping. This setting is enough to create BP in background while creating customer / vendor. But the fields groups are very much important, ensure mandatory fields should be sync.
    rgds,
    Srini

  • How to create a Date or time field that automatically saves current date or time?

    hello,
    i want to know that how to create a Date/Time field that automatically shows current Date/Time when .pdf form is opened.
    also want to how to stop user to give input in Date/Time field
    currently im putting a Date field but it is accepting user input.
    hoping for quick response
    Thanks in advance!

    You can place the below code in the initialize event of the field to display the current date and time.
    Set the language to FormCalc.
    You can play around the formats to get the desired format of date and time.
    if($.rawValue eq null or $.rawValue eq "") then
    $.rawValue = Concat(Num2Date(Date(), "MM/DD/YYYY")," ", Num2Time(Time(), "h:MM:SS A"));
    endif
    You can not restrict the input area in Date time field instead you can validate the input while existing the field.
    (OR) set the field to either readOnly or protected mode.
    Thanks
    Srini

  • Internal Order for AUC Asset not getting created Automatically

    As per SAP Standard , when I create an  AUC Internal Order (KO01), and save , AUC asset is gets created automatically ted via AS01 and stores the AUC Asset in Internal Order settlement rule. 
    However when tried with the client Im not able to create, AUC is not getting automatically created and stored in Int Order Settlement rule.
    In config I have added investment profile to Ord Type  and in OAOA ( AUC Asset class setting , Investment profile is also checked)
    Kindly let me have your inputs to fix the issue
    Advance Thanks
    Sanjai

    Hi,
    In order to create AUC asset automatically by the system, you need to create an investment profile in OITA.
    Then assign this investment profile in the Internal order master data created through KO01 in the Investments tab.
    There is no option of assigning the Investment profile in the Order type.
    And in OAOA that is Asset class, select the radio button investment measure.
    You can default the Asset class of AUC in the investment profile or leave it blank so that same can be filled when system prompts for AUC creation.
    You cant see the AUC asset in the settlement rule once Investment order is created, but only after settlement of the balances to the AUC u can see.
    Thanks & Regards,
    Ravi Kumar

  • No TO is created automatically when Kanban is set to empty sometimes

    Hi Gurus,
    My customer come across a strange problem.
    The same material , the same Kanban, sometimes TO can not be created automatically when Kanban is set to empty, but sometimes TO can be created automatically.
    I checked the following things:
    Configuration :activate 'Automatic TO creation immediately after TR generation' for replenishment strategy '0006 Kanban from WM with transfer requirement'.
                        Storage type and storage section search strategy are right.
    Master data: MRP2 View and WM1 and WM2 view are right.
                       Supply area and control cycle are right.
    Stock: there is enough stock in right storage type and storage section
    when the TO is not created automatically , i can use LT04 to create TO , and search stratey works well.  and TO can be created successfully.
    So only i can come up is because of some one is creating TO , so no TO can be created because of the material is blocked .
    Do you know any other reason will cause this problem?
    BR,
    Dragsky

    Who has any idea on this? thank you!

  • How do i create a subset of data in numbers 3.5

    Hi
    I use Numbers 3.5.2 on my MacBook Pro. I am familiar with Excel but finding it difficult to transfer my Pivot Table knowledge into Numbers. I just about understand how SUMIF works now but have a further question related to summarising data from one table into another table and would very much appreciate some guidance as I can't find any tutorials covering this subject.
    Example
    Assume Table 1 has a column of data called Surname and another called Pay.
    Table 1 has 100 rows and there are 20 unique entries for Surname.
    I want to summarise the Table 1 data into Table 2 by Name by Pay.
    But I don't want to manually input all the unique entries of Surname into Table 2.
    I want to create a column called Surname in Table 2 that holds 1 row for each unique Surname in Table 1.
    So Table 2 would have 20 rows.
    I will then use SUMIF to total all Pay for each Surname now in Table 2 by referencing Pay from Table 1.
    It would be great if rows in Table 2 were created automatically when entering a row in Table 1 (assuming it's the first row in Table 1 with that specific Surname) but that's not absolutely essential if it's complex.
    I do have a further question relating to this but any help to get me to understand how to effectively extract the 20 entries of Surname from Table 1 into Table 2 would be tremendous. In anticipation, thank you for reading.
    Regards
    Martin

    Hello
    For instance, you may try something like the following tables.
    Table 1 (excerpt)
    A1  Surname
    A2  A
    A3  B
    A4  A
    A5  A
    B1  Pay
    B2  10
    B3  20
    B4  20
    B5  10
    C1  ordinal
    C2  =COUNTIF(A$2:A2,A2)
    C3  =COUNTIF(A$2:A3,A3)
    C4  =COUNTIF(A$2:A4,A4)
    C5  =COUNTIF(A$2:A5,A5)
    Table 2 (excerpt)
    A1  Surname
    A2  =IFERROR(INDEX(Table 1::A,C2,1),"")
    A3  =IFERROR(INDEX(Table 1::A,C3,1),"")
    A4  =IFERROR(INDEX(Table 1::A,C4,1),"")
    A5  =IFERROR(INDEX(Table 1::A,C5,1),"")
    B1  Total Pay
    B2  =IF(A<>"",SUMIF(Table 1::A,A2,Table 1::B),"")
    B3  =IF(A<>"",SUMIF(Table 1::A,A3,Table 1::B),"")
    B4  =IF(A<>"",SUMIF(Table 1::A,A4,Table 1::B),"")
    B5  =IF(A<>"",SUMIF(Table 1::A,A5,Table 1::B),"")
    C1  index
    C2  =IFERROR(MATCH(1,Table 1::C,0),"")
    C3  =IFERROR(MATCH(1,OFFSET(Table 1::C,C2,0,ROWS(Table 1::C)-C2,1),0)+C2,"")
    C4  =IFERROR(MATCH(1,OFFSET(Table 1::C,C3,0,ROWS(Table 1::C)-C3,1),0)+C3,"")
    C5  =IFERROR(MATCH(1,OFFSET(Table 1::C,C4,0,ROWS(Table 1::C)-C4,1),0)+C4,"")
    Notes.
    Table 1::C is to record ordinal number per distinct name in Table 1::A.
    Table 2::C is to calculate row indices in Table 1::C where its value = 1, i.e., row indices of the 1st appearence of every distinct name in Table 1::A.
    Formula in Table 1::C2 can be filled down.
    Formula in Table 2::C3 can be filled down.
    Formulae in Table 2::A2 and Table 2::B2 can be filled down.
    Tables are built in Numbers v2.
    Hope this may help,
    H
    EDIT: fixed notes.

  • How to create a folder with date each day?

    I've not used Automator, just once to "create" a workflow to create a new folder with a name; but what I want is this:
    Each morning at 12:01 am, a new folder to be created with the correct date as the name of the folder.
    So for tomorrow, Sunday 23 Nov 2008 at 12:01, I'd suddenly have a folder on my Hard Drive that would have the date like 23 Nov 2008 or 11/23/2008 or 23-11-2008 or similar.
    Then at the end of a week I'd have 7 of these; - but I can manually trash them-- I want to create these on my HD since I backup via SuperDuper! each morning (automatically) at 3:35 am (incremental backup to an external La Cie HD) and I want to know if was done, so by having a folder with the date on it I can open the external HD and if I see that that folder with the recent date is there, then I'm confident the BackUp was run.
    I have been able to create a workflow to create a folder in Automator, but not sure how to:
    1. Have the folder created automatically each day at 12:01
    2. How to have the folder label be the date
    Thanks for any comments or certainly any other work-around or other way to do this or similar.
    Regards, Steve

    Open the AppleScript Editor. Copy the following into it:
    set dt to date string of (current date)
    set mth to word 2 of dt
    set dy to word 3 of dt
    set yr to word 4 of dt
    set dtt to mth & " " & dy & " " & yr
    tell application "Finder"
    make new folder at alias "Macintosh HD:Users:username:Desktop:" with properties {name:dtt}
    end tell
    Amend the path with your Hard Disk name and username. Save as an application to anywhere suitable.
    In iCal, set up an event with a daily repeat and an alarm at the time you want it: under 'Alarm' choose 'Open file': then in the next menu which will appear change from 'iCal' to 'Other' and navigate to your script. Enter the date and time.
    Your folder will be created as required: iCal does not need to be running. This script gives the folder name as, for example, 'November 22 2008', but it's easy to amend the script if you want something a bit different - for example:
    property zro : ""
    set yr to year of (current date) as string
    set dy to day of (current date)
    set mt to month of (current date)
    set dyy to dy as string
    set nmm to the number of items in dyy
    if nmm is 1 then
    set zro to 0
    end if
    if mt is January then
    set mth to "01"
    else if mt is February then
    set mth to "02"
    else if mt is March then
    set mth to "03"
    else if mt is April then
    set mth to "04"
    else if mt is May then
    set mth to "05"
    else if mt is June then
    set mth to "06"
    else if mt is July then
    set mth to "07"
    else if mt is August then
    set mth to "08"
    else if mt is September then
    set mth to "09"
    else if mt is October then
    set mth to "10"
    else if mt is November then
    set mth to "11"
    else if mt is December then
    set mth to "12"
    end if
    set dtt to mth & "-" & zro & dy & "-" & yr as string
    tell application "Finder"
    make new folder at alias "iBook HD:Users:roger:Desktop:" with properties {name:dtt}
    end tell
    This gives the folder name as, for example, 11-22-2008. (The days will have leading zeros, if you don't want these just remove the references to 'zro'.)

  • SRM Purchase Order not Created Automatically

    SRM 7.0 Extended Classic Scenario:
    Issue:  When creating a standard shopping cart in SRM the Purchase Order is not created in SRM (or in R3).  Eventhough the shopping cart is fully approved and has a vendor assigned.  The overall shopping cart status remains approved,the line items status shows 'item in transfer process'.  Otherwise there are no errors in the application monitor.  Nothing appears in table BBP_DOCUMENT_TAB
    Considerations:  Everything is working fine for limit shopping cart, the PO gets created automatically and the SC has status follow-on document created.
    Also, this was working fine for standard orders, it seems that support pack 7 or 8 broke this functionality, yet I do not see any notes regarding the issue.  Any ideas on what controls the automatic PO generation or how it could work for limits but not standard SC's would be greatly appreciated.
    Thanks,
    Matt
    Edited by: Matt Joseph on Nov 17, 2010 10:27 AM

    First of all PO should be created then you can see entry in doc table.
    u Note 1480994 - How to process a shopping cart with status I1111?
    see SAP treatment and some work around..
    Symptom
    Shopping Cart is stuck in status I1111 (Item in transfer process).
    Other terms
    Application Monitor, I1112, I1111, Monitor Shopping Cart
    Reason and Prerequisites
    This is a FAQ note, which shows how to treat such Shopping Carts.
    Solution
    Shopping Cart status I1111 (Item in transfer process) is a temporary status, which means that shopping cart is being processed in order to generate a follow-on document.
    However, it is possible that status I1111 becomes permanent and, in this case, shopping cart status is inconsistent.
    There are some procedures to be considered when shopping cart is stuck in status I1111.
    Report BBP_ALERT_SB_NOTTRANSFERED is available to change the status of the shopping cart item from I1111 to 'Error in transmission' (I1112) and later on, it is possible to retransfer this shopping cart from Application Monitor/Monitor Shopping Cart transactions.
    Note 441768 provides more information about this report.
    However, BBP_ALERT_SB_NOTTRANSFERED works in a time stamp. BBP_ALERT_SB_NOTTRANSFERED will check shopping carts created after date specified in table BBP_CONTROL.
    To check this information, go to SE16 -> BBP_CONTROL and as input parameter provide the report name. Here you will see the last date that report has been run.
    If you have a shopping cart in status I1111 which is older than date specified in table BBP_CONTROL, you have to change manually the time stamp specified in such table. You have to specify an older date (before shopping cart creation).
    Doing this, you can run report BBP_ALERT_SB_NOTTRANSFERED and cart in question will have status I1112 assigned.
    Once status I1112 is assigned to shopping cart, you can retransfer it from Application Monitor (BBPWEBMONITOR transaction in SAP_GUI) or Monitor Shopping Cart in the web.
    To transfer Shopping Carts from BBPWEBMONITOR, some settings need to be done.
    Following notes should be considered:
    550044
    FAQ Alert monitor RZ20 does not show any alerts
    396102
    BBP Alert monitor RZ20 does not work
    387701
    The Shopping Card are not transfered after "resubmit"
    According note 387701, workflows WS10000214 and WS10000215 have to be activated. One of them is to delete shopping cart item using Application Monitor and the other one is to resubmit the cart. Then, once this settings are done, you can retransfer I1112 carts from Application Monitor.
    If all settings are done and you have a cart with status I1112 that it is not appearing in Application Monitor, report BBP_ALERT_SC_STATUS_ERROR is available, which checks the carts in status I1112 and put them in the Application Monitor, in order to allow you to transfer them again. Note 631513 explains about this report.
    Additional notes to be considered in this scenario:
    1159609
    Transfer function does not create local purchase orders
    1233037
    BBP_MON_SC: Shopping cart transfer ends in status I1111
    1040878
    Cannot transfer shopping carts with status I1112
    Header Data
    Release Status: Released for Customer
    Released on: 09.08.2010  16:04:09
    Master Language: English
    Priority: Recommendations/additional info
    Category: Consulting
    Primary Component: SRM-EBP-SHP Shopping Cart
    Secondary Components: SRM-EBP-APM Application Monitors
    Affected Releases
    Release-Independent
    Related Notes
    1233037 - BBP_MON_SC: Shopping cart transfer ends in status I1111
    1159609 - Transfer function does not create local purchase orders
    1040878 - Cannot transfer shopping carts with status I1112

  • Client automatically cache the data got from cache server?

    Hi expert,
    I have 2 questions about the client local cache. Would you please help to give me some suggestion?
    1. Will client automatically locally cache the data got from cache server the first time and automatically update the data in local cache when getting the same data from cache server again? I go through the API reference but cannot find any API to query the data currently cached in the local cache.
    2. If client will automatically cache the data got from cache server. Is there any way for a client to get the data event that happens to its local cache, such as entry created in local cache, entry deleted from local cache and entry updated in local cache? In my opinion, when getting an entry from cache server the first time, the MapListener's entry create event should be triggered. When getting the same entry again, the entry update event should be triggered.
    However, I have tried a client with replicated cache, a client with partitioned cache, an extend client with remote cache and a client with local cache(front cache part of near cache), the client (the NamedCache object has been set the MapListener) cannot get any event notification after getting data from cache server. By the way, my listener is OK since when putting data the entry create event and entry update event will be triggered.
    Your suggestion is very appreciated. :)

    Hi
    If I were you I would read this http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/toc.htm
    and particularly the section about Near Caching here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/nearcache.htm#CDEFEAJG
    which is what you are asking about in your question.
    Near Caching is how Coherence stores data in the locally - which is the answetr to your first question. How Near Caching works is explained in the documentation.
    Events, which you ask about in your second question are explained here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/delivereventsjava.htm#CBBIIEFA
    It might be that ContinuousQueryCache is closer to what you want. This is explained here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/queryabledatafabric.htm#sthref38 A ContinuousQueryCache is like having a sub-set of the underlying cache on the local client which you can then listen to etc...
    JK

  • Creating automatically "OracleBI Spreadsheet Add-In" files (Excel files)

    I have the necessity of create automatically an excel file with a query to a multidimensional model (ROLAP Cube). It exists any API for a programation language that makes easy this process of creation?
    How "OracleBI Spreadsheet Add-In" saves the metadata in the excel file, for example, the information about the database (host name, database name), dimensions and measures selected by the user when a query is made with the "Query Builder"?
    It is possible to share any information about this subject?
    Thanks!!!
    Rui Torres

    I exported to xml an excel file with a query, that was produced by the “Query Builder”, and it is true that the metadata that contains the information about the database, dimensions and measures selected, is specified in xml and is stored in hidden sheets.
    My problem is not to create an excel file (create sheets, write in the cells,...) because it exists some apis that do this kind of operations.
    My difficulty, is to produce the xml metadata, that is defined by Oracle, and contains the information that is used by "OracleBI Spreadsheet Add-In" to put the data in the cells of an excel sheet.
    What I want to know is, for example, if exists any kind of function that receives the name of the host, the name of the database, the owner of the cube, the cube name and all the options that we can choose in the “Query Builder” (measures and dimensions that we want, the disposition of the dimensions - layout), and return a String with the Oracle’s xml metadata.
    With this xml metadata that is returned, I am prepared to create an excel file, that have the functionality of to connect to a database, and get the data that is stored in it.
    Thanks!!!
    Rui Torres

  • Snap file is created automatically on my SharePoint database ?

    Hi,
    On My SharePoint Database a snap file is created which consumes lots of space and the performance of server is degraded.
    The snap file is created automatically and its also removed automatically after 1 day.
    I am new to SQL and won't find any scheduled task for snap file under SQL .
    I had checked on technet and won't find an appropriate solution, why snapshot file is created.
    The SQL server version is 2008 R2 and SharePoint version is 2013.
    Also due to snap file sometime I am unable to take backup of database with DPM (Data Protection Manager).
    Thanks,
    Nadeem A

    Hi Nadeem Ansari,
    A take Snapshot operation creates .vmdk, -delta.vmdk, vmsd, and vmsn files. You should ensure the type of snapshots file.According to your description, the snapshot file was created automatically, and there are no any scheduled task for the snap file in
    SQL Server instance. As other post, you need to verify if there is a job about back up your back up a database to a snapshot in SharePoint Server by using SQL Server tools. And verify if the snapshot file was created by others, and if it is file system snapshots
    file.
    For more information about snapshot files, you can review the following article.
    https://pubs.vmware.com/vsphere-51/index.jsp?topic=%2Fcom.vmware.vsphere.vm_admin.doc%2FGUID-38F4D574-ADE7-4B80-AEAB-7EC502A379F4.html
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Auto created FK columns in data modeler

    Newbie to sql data modeler and have this question.
    When created a relational model, it automatically generated many extra columns for Foreign Keys with notion of (1,2,..) Is there a setting to disable it. I like to have the generated DDL not to include these extra columns . Thanks.

    Hi,
    you can create foreign keys in two ways:
    1) using table dialog - no new FK columns are generated
    2) using "New FK Relation" tool - new FK columns are created automatically; However you can tune the process to your preferences:
    - "General Options>General" page - select "Show properties dialog on new object" - as result FK dialog will appear when new FK is created;
    - "General Options>Model>Relational" - select "Delete generated FK columns" - auto generated FK columns are here to help - you always have to define FK columns as part of FK definition (no functional FKs in current release) - you can replace these columns with existing columns and auto generated FK columns will be removed automatically (this cause only auto generated columns).
    At the end you can find that auto generated columns are not that bad.
    Philip

  • I need to create automatic invoice(vf01) on click of pgi.so which Bapi?

    Hi all,
               I need to create automatic invoice(vf01) on click of pgi.
    so which bapi shell i use and how shell i pass   outbound deliver((likp-vbeln) to document (KOMFK-vbeln) through that bapi.
    Is BAPI_BILLINGDOC_CREATE is correct bapi to do so.if it is then what i have to pass in parametres.
    Please suggest me.
    Regards,
    Himanshu

    Hi,
      Thanks buddy for your kind support. Now i have below code ..plese check.
    tables:  nast.
      data : bb like BAPIVBRK occurs 0 with header line ,
             re like BAPIRET1 occurs 0 with header line ,
             ss like BAPIVBRKSUCCESS occurs 0 with header line .
            bb-REF_DOC = nast-OBJKY.
           bb-REF_DOC_CA = 'J'. " commented"
              append bb.
    CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
    EXPORTING
      CREATORDATAIN         =
      TESTRUN               =
      POSTING               =
      TABLES
        BILLINGDATAIN         = bb
      CONDITIONDATAIN       =
      CCARDDATAIN           =
      TEXTDATAIN            =
      ERRORS                =
        RETURN                = re
        SUCCESS               = ss .
    I have to chek whether it works or not.
    Regards,

  • Formula automatically populate the date when inventory goes to "zero"

    Hello- I am trying to create a formula that will automatically populate the date when inventory goes to "zero".
    Date: Row 3 Columns P-AB
    Inventory: Rows 5-400 Columns P-AB
    Column J rows 5-400 is where I want the inventory run-out date to auto-pop
    with so many rows of data, where stock goes to "O" will clearly vary per row. I want this formula, to look between Col. P-AB and tell me in Col. J when my inventory goes to "zero"
    Thank you!

    Thank you for your reply...using your formula, I'm still not coming up with inventory run-off date from row 3.
    I need Column J to give me the date when my inventory is "0".

  • PO Confirmation create automatically

    Hi,
    Anyone knows an easy way to create PO confirmation automatically? Same Date and Quantity as requested.
    Essentially, we would like to create Order Acknowledgment on the confirmation tab and we would like this to happen at PO creation.
    Let me know if you know an easy way to do this without enhancement.
    Regards
    David

    The main reason is because of SCM. STO and PO`s are only consider in the ATP check if they have confirmation. We need this configuration for STO so it's also required for PO`s.
    We will change those confirmations manually if required.
    Regards
    David

Maybe you are looking for

  • Dynamic Data columns

    Hi... Here's my scenario. My layout is keyfigures in lead columns. I want Calendar Year in the Header. I want the Calendar Year/Month (0CALMONTH) in data columns. But, the data columns should be dynamically set to the 12 months of the Year I choose a

  • Didn't download, but got a malware email

    I just got the NACHAm "Your payment has been rejected and read the .exe attachment" Zeus malware email today (it's been floating around since 2009). I don't have Windows or any window apps on my Mac, and am running 10.6.8. As soon as I saw this I had

  • Jdev9052

    I've downloaded the new mapviewer jdev extensions for jdev 9051 or higher. I am using jdev9052.When using mapviewer tags in a jsp I get the error Error(9,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient

  • Installing iLife 08 (DVD) on G4 Cube (500MHz)

    Seemingly simple issue: Install some components of iLife08 on my older Cube desktop; specifically iPhoto 7. No DVD player in the Cube, but have both a Macbook Pro and Macbook Air w/ DVD players (and yes, I did try to connect the USB DVD drive for my

  • Labview proframmer needed-located in Singapore

    Dear people, Our company is in the test and instrumentation business located in Singapore. We are keen to look for LabView programmer with 2-5 years experience. Please contact me at [email protected] All information treated in confidentially.