Copy multiple items from ical alters sorting order

I use OSX leopard with iCal 3.0.1. I would like to select multiple items and copy-paste them into a text document or spreadsheet. I use iCal to keep track of people's working hours and I need to send the hours to salary admin at the end of each month.
Using the "search" option within iCal, I can select all item concerning the working hours of, let's say, "George". If I copy-paste them into another application (Word, Mail, Numbers, Excel) the sorting order of the items altered. It looks like a rather random order. I want to have it ordered by date opbviously! Does anyone recognize this problem?

Pieter,
would send feedback to apple on this, recreated the behavior on both of my macs for multiple search results, and each time same thing, order is altered...
http://www.apple.com/feedback/ical.html

Similar Messages

  • Copy item from Quotation to sales Order

    Hello,
    How can I copy all the line items from quotation to sales order including the price, Quantity & the Sales Texts?
    Thanks
    AK

    Hi
    Maintain copy control from sales document to sales document using t-code VTAA. Select your target & source sales document type from the list & double click on the same. There you can define the copy control.
    For Text control you can use the T Code VOTXN & create your own text controls.
    I hope this will be helpful.
    Thanks & Regards,
    Bidhu

  • Copying pricing condition from quotation to sales order

    Hi,
    I would like to know how the following can be achieved.
    In quotation, i have two conditions type.
    For e.g. a item value
    1000 -> PR00
    3%  -> ZMarkup
    Gross Value -> 1003
    In the sales order, we are only having PR00 as the condition type. Thus only 1000 is being copied to sales order.
    How can i achieve such that the gross value in the quotation can be copied into PR00 of sales order?
    Regards

    Hi Friend,
    To copy the pricing from Quotation to Sales order without change you have to maintain copy control settings from  QT to OR
    Goto the Transaction code VTAA then click on position and choose the Source document as QT and the Target document as OR
    Then click on the item in the control tab and choose ur item category and click on Display
    Now in the Pricing field change the value To D
    Hope it is clear and work.
    regards,
    santosh

  • Copy sales office from contract to sales order

    HI,
    How can i copy sales office from contract to sales order.is there any requirement in the standard process?
    Regards,
    Ramky

    Dear Ramky,
    I think, the requirement will get full-filled with Standard Settings, itself:
    Check with Copy-Control Settings (in T. Code: VTAA) b/w Sales Order--Contract.
    For the Combination (Contract-to-Sales Order), select "Item" from Left-hand Dialog-Structure, and afterwards, select "Item-Category".
    Now, on to next screen, maintain as following:
    Copying requirements 303
    DataT 151 General item data
    DataT 102 Bus.data/item compl.
    Best Regards,
    Amit

  • Copy Billing plan from Quation to Sales order at header level

    Dear Gurus,
    I am using custom routine (600) to copy Billing plan from Quotation to Sales Order.
    I used following code to copy Billing plan.
    LOOP AT CFPLT.
    MOVE-CORRESPONDING cfplt TO FPLT.
    CLEAR FPLT-FPLNR.
    FPLT-FPLNR = FPLA-FPLNR.
    MOVE-CORRESPONDING FPLT TO XFPLT.
    XFPLT-UPDKZ = 'I'.
    APPEND XFPLT.
    CLEAR XFPLT.
    ENDLOOP.
    UPD_FPLT = 'I'.
    I also tried with CFPLA instead of CFPLT.
    Using this code all line item Billing plan is coping into header Sales order Billing Plan (Duplicating records). When I save and come back it is giving Express Document error.
    I could not able to save document.
    Please guide me this regards.
    Thanks,
    Vasanth.

    Hello Nag,
    Did you check your copy control routines in transaction VTAA? You need to see if these fields are included in the routines maintained for copy control between your contract and sales order.
    I hope this helps.
    Best regards,
    Ian Kehoe

  • Copy line items from Master Agreement to SubAgreement

    Dear all,
    As a requirement, we need to create a dummy line item at master agreement and subagreement level to be able to publish them to ERP without need
    to complete line items (they are completed in ERP via a development).
    We have created master agreement templates with a dummy line item but at subagreement level, templates are not available.
    What we are trying to develop is a script on post_create at agreement level to copy line items from Master Agreement to SubAgreement. We are able to get Master Agreement line items and copy them to the SubAgreement, but the subagreement is not created. This is the code we are using:
    import com.sap.odp.api.doccommon.masterdata.ValueListValueIBeanHomeIfc;
    import com.sap.odp.api.doccommon.masterdata.ValueListValueIBeanIfc;
    import com.sap.odp.api.doccommon.masterdata.ValueListTypeIBeanHomeIfc;
    import com.sap.odp.api.doccommon.masterdata.ValueListTypeIBeanIfc;
    import com.sap.eso.api.contracts.ContractIBeanHomeIfc;
    Mst_agreementBean = doc.getParentIBean();
    lineItemCollectionSub = doc.getLineItems();
    lineItemCollection = Mst_agreementBean.getLineItems();
    collectionsize = lineItemCollection.size();
    colln = Mst_agreementBean.getCollectionMetadata("MA_LINEITEMS").get(Mst_agreementBean);
    colln2 = doc.getCollectionMetadata("MA_LINEITEMS").get(doc)
    newProject = Mst_agreementBean.getIBeanHomeIfc().createFromAnother(Mst_agreementBean);
    newMember = colln.get(1);
    //  Get Values Line Item
    assCat = newMember.getAcctAssignCategory();
    actLimP         = newMember.getActualLimitPercent();
    delAdCity       = newMember.getDeliveryAddressCity();
    delAdCount    = newMember.getDeliveryAddressCountryRef();
    delAdDist       = newMember.getDeliveryAddressDistrict();
    //... (all fields included in the script)
    // Create Line
    newMember2 = newMember;
    AgreementHome = IBeanHomeLocator.lookup(session, doc.getObjectReference());
    AgreementHome.upgradeToEdit(doc);
    // Set Values
    newMember2.setAcctAssignCategory(assCat);
    newMember2.setActualLimitPercent(actLimP);
    newMember2.setDeliveryAddressCity(delAdCity);
    newMember2.setDeliveryAddressCountryRef(delAdCount);
    newMember2.setDeliveryAddressDistrict(delAdDist);
    //... (all fields included in the script)
    try{
    colln2.add(newMember2);
    AgreementHome.save(doc);
    AgreementHome.downgradeToView(doc);
    collectionbean = colln2.get(0);
    logInfo("Value of  collectionbeanSub " + collectionbean );
    }catch (ApplicationException e){
    logInfo("Error " + e.getClass() + ". " + e.getMessage());
    When we try to create an Agreement under a Master Agreement (clicking Add on Agreement tab), following error message is shown related to the line in blue:
    Facility=local4;sessionid=4e73bb8e73304d6284816f93f4e04522a7c387b; tenantid=#tenant.ecb#;username=LUGUELL; exception=Sourced file: inline evaluation of: ``// **   import com.sap.odp.api.doccommon.masterdata.ValueListValueIBeanHomeI ... '' : Method Invocation AgreementHome.save : at Line: 164 : in file: inline evaluation of: ``// **    import com.sap.odp.api.doccommon.masterdata.ValueListValueIBeanHomeI ... '' : AgreementHome .save ( doc )
    Target exception: java.lang.NullPointerException: while trying to invoke the method com.sap.eso.contracts.ContractTypeBo.getVendorVisible()
    of a null object returned from com.sap.eso.contracts.ContractCommonBo.getTypeBo()
    ;stacktrace=Sourced file: inline evaluation of: ``// *JLA*    import com.sap.odp.api.doccommon.masterdata.ValueListValueIBeanHomeI ... '' : Method Invocation AgreementHome.save : at Line: 164 : in file: inline evaluation of: ``// *JLA*    import com.sap.odp.api.doccommon.masterdata.ValueListValueIBeanHomeI ... '' : AgreementHome .save ( doc )
    Target exception: java.lang.NullPointerException: while trying to invoke the method com.sap.eso.contracts.ContractTypeBo.getVendorVisible()
    of a null object returned from com.sap.eso.contracts.ContractCommonBo.getTypeBo()
    Any ideas what is causing the error? What are we missing on our code to copy line items?
    Many thanks,
    Marc Romagosa
    Message was edited by: Marc Romagosa de Riba

    We managed to create a line item at VALIDATE script, but not at POST_CREATE. Either it is a bug or it is not possible at POST_CREATE script.

  • Cs sdk: copying an item from one document to another

    is there a way to copy any item from one ai document to the other ?

    I'm not one for bumping old threads, but this problem is really giving me a headache...
    I'm having the same exact problem with copying groups from one document to another.  It doesn't seem to matter if it's a top-level group or not; any group that gets copied over results in the copied art not showing up in the layer list and gives errors when trying to click on it.
    If my source document looks like this:
    Layer 1
      <path 1_1>
      <path 1_2>
      Layer 2
        <path 2_1>
    If I DuplicateArt on the GetFirstArtOfLayer(Layer 1), Layer 1 gets copied into the new document, but it doesn't show up in the layer list and I get errors trying to click on any of the art.
    If I iterate over the children/siblings of Layer 1 and duplicate them all separately, <path 1_1> and <path 1_2> will show up correctly in the new layer list and are clickable, but Layer 2 will not, and clicking on <path 2_1> results in the error.
    At this point, the only solution I can think of is to recursively iterate over the source tree, manually creating the destination groups, and then copying the art work into them.
    Very frustrating!

  • How to copy List item from one list to another using SPD workflow using HTTP call web service

    Hi,
    How to copy List item from one list to another using SPD workflow using HTTP call web service.
    Both the Lists are in different Web applications.
    Regards, Shreyas R S

    Hi Shreyas,
    From your post, it seems that you are using SharePoint 2013 workflow platform in SPD.
    If that is the case, we can use Call HTTP web service action to get the item data, but we cannot use Call HTTP web service to create a new item in the list in another web application with these data.
    As my test, we would get Unauthorized error when using Call HTTP web service action to create a new item in a list in another web application.
    So I recommend to achieve this goal programmatically.
    More references:
    https://msdn.microsoft.com/en-us/library/office/jj164022.aspx
    https://msdn.microsoft.com/en-us/library/office/dn292552.aspx?f=255&MSPPError=-2147217396
    Thanks,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • After updating numbers and pages I can no longer copy multiple cells from numbers and paste and match style to pages.

    After updating numbers and pages I can no longer copy multiple cells from numbers and paste and match style to pages.  I used to be able to select multipule cells in a row (such as company name, address, etc.) then paste and match style on to a pages letter. I found the paste and match style option in the edit menu, however it will only work one cell at a time. Before the update is was working great.

    For diagnosing purpose thy the procedure in a new user account and see if it works there. You create a new user account in the System Preferences > Accounts. If it works in the new account it is probably a corrupt plist file that needs to be deleted.

  • Crashes whenever I try to copy an item from form to form

    I crash frequently when I try to copy an item from one form to another. Many times, I will be able to copy 2-3 text boxes from one form to the next. On the 4th....crash. I get a image of a text box with a plus sign next to it when Livecycle locks... then I crash with no real message
    No a huge issue as its just text for now... but annoying

    Click here and search the article for '2 out of 3' without the quotes; in the case of forgotten answers, this generally involves either a message being sent to your rescue email address or contacting the iTunes Store staff directly.
    (75055)

  • Can't copy multiple files from compact flash via USB3

    Problems on MacBook Pro Retina 15-inch with Mavericks installed...
    I am not able to copy multiple files from an attached Lexar USB3 Compact Flash reader (card is 128GB Lexar UDMA 7 compliant).  Files are video files and when I try to copy more than one at a time the screen of my MacBook Pro flashes "off" and back "on" and the copy process ceases...
    Any fixes for this???

    See: https://discussions.apple.com/thread/5471050?tstart=60
    Update the firmware of your USB 3.0 card reader.  It's weird to think there is firmware on the thing, but it worked for me!

  • Sales order create/change line item with reference to contract - Open quantity not getting deducted for copied line item from the contract

    Hi friends,
    Please provide some valuable inputs for the following scenario:
    When a sales order line item is created(VA01) or changed(VA02) with reference to a Contract the open quantity is deducted in the contract which is a standard functionality. If the referenced line item is copied (custom enhancement to copy line item), then for the copied line item the open quantity is not getting deducted instead ATP quantity i.e. Available-to-promise is deducted.
    Any inputs on how we can fix this functionality i.e. deduct the open quantity from the contract for the copied line item?
    P.S. : Custom enhancement to copy line item is working fine, but open quantity is not getting deducted if the copied line item was referenced to a contract.
    Thanks,
    Sandeep
    Message was edited by: sandeep

    Sandeep,
    Yes, that was my original interpretation.  I was having a hard time believing that someone would ask such a question. 
    I guess, then, that you already know that you will have to add this logic to your enhancement. You should create your specifications and hand them off to a developer; ideally the one who created this enhanced solution in the first place.
    I do not provide advice in these forums about details of enhanced solutions.  Perhaps one of the other members will be more willing to do your work for you.
    Best Regards,
    DB49

  • Copying of Service items from contract into Purchase order

    Dear Friends,
    We have upgraded from 4.6B to ECC6.
    Previously when we create Purchase Order with reference to Contract(i.e.Release order),we select service line items by selecting service selection button from PO and select the service line items from Contract,then whatever the line item whether line item 30,or line item 60 copied from Contract is copied into line item 10 of Purchase order in 4.6B version.
    But in ECC6 ,it is copied into other line item but not copied into line item 10 of purchase order.
    Please suggest ,what needs to be done, what went wrong.
    Regards,
    Dayanand

    Hi,
    Pl. elaborate whether the quantity 1 is appearing at Item Overview level or at Item Details level. At the item overview level the quantity will aleays be 1 with unit of measure as AU. At item details, you will be able to view the actual quantity of services copied from contract.
    Regards,
    Prashant
    - Pl reward points if answer is helpful to you

  • Copying multiple contract's data to sales orders via BAPI.

    Hello Experts,
    We have a requirement to copy contract data into the sales order, reference multiple contracts and copy all data from referenced contract to the SO.The scenario is that a seperate contract is being refrenced at the header level and different contract is referenced to the line items.All the data needs to be copied to the header or item from the doucment being referenced.
    The standard BAPI available for creating the SO (CREATEDAT2) references the contract doucment, but doesnt copy all the data from the referencing doucment to the SO, as the copy control are not called.We also tried using the BAPI 'BAPI_SALESDOCUMENT_COPY', which copies all the data but only does this for a single contract reference at a time.The BAPi doesnt allow the specific items to be copied or doesnt allow the reference of multiple contracts at the line item level.
    Any BAPI which can be used or pointers to resolve this issue, will be very helpful.
    Thank you.
    Best Regards,
    Gaurav Bhardwaj.

    Better try to follow this
    [Read This Before Closing your Threads |Read This Before Closing your Threads;
    thanks
    G. Lakshmipathi

  • Copying multiple contract's data to sales order

    Hello Experts,
    We have a requirement to copy contract data into the sales order, reference multiple contracts and copy all data from referenced contract to the SO.The scenario is that a seperate contract is being refrenced at the header level and different contract is referenced to the line items.All the data needs to be copied to the header or item from the doucment being referenced.
    The standard BAPI available for creating the SO (CREATEDAT2) references the contract doucment, but doesnt copy all the data from the referencing doucment to the SO, as the copy control are not called.We also tried using the BAPI 'BAPI_SALESDOCUMENT_COPY', which copies all the data but only does this for a single contract reference at a time.The BAPi doesnt allow the specific items to be copied or doesnt allow the reference of multiple contracts at the line item level.
    Any BAPI which can be used or pointers to resolve this issue, will be very helpful.
    Thank you.
    Best Regards,
    Gaurav Bhardwaj.

    Hi PeteA,
    I dont get any message, the problem is I dont see the contract no field on the screen.
    I copied the SM01 order type to ZM01 and did the required configuration, now when I use the ZM01 order type I cannot see the contract field but when I use SM01 the same is appearing.
    I saw some screen config for order types in Basic Order view but SM01 does not have any entries there.
    Thanks,
    Sarath.c

Maybe you are looking for

  • SharePoint foundation search is not working in SP2010 Foundation version

    Hi, I am using SharePoint Search2010 foundation version. CA->Application management->manageservices on server. But I checked in CA->Manage web applications How i need to configure search functionality for web application. I tried to search in site co

  • Windows 7 Bootcamp

    I just newly installed Windows 7 bootcamp on my MacBook Pro (2010). The installtion ran smoothly. But there seems to be a problem for me. The bootup time from being on to off or vice versa is 7 seconds flat. And when I play games, my CPU usage would

  • Undeploy an sda file through command-line

    Hi All,       I want to undeploy an .sda file through command-line,what is the procedure to undeploy an sda file through command-line and send me the procedure for this Thanks & Regards, guru

  • HELP: I cant switch off a message in my terminal window

    I am trying to get some scala coding done, but I keep getting this extremely annoying message in my terminal window: Broadcast Message from [email protected] (no tty) at 20:26 BST... Oct 5 20:26:22 jonathan-kings-MacBook-Pro-2996 kernel[0]: How do I

  • Newbie Struts ActionForm creation question in JDeveloper

    Hey guys, I am playing around with Struts and the JDeveloper functionality for that framework. So I am getting the hang of the diagramatic way of viewing the entire Web application by graphically creating the struts-config.xml file. That is great. Bu