Extracting items from photos

I would like to know the easiest way to extact one particular item from a photo while keeping everything else intact?

Check out this page from Help:
http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-77d2a.h tml

Similar Messages

  • What has happened to the export from Photo Stream option in iPhoto?

    Until very recently I was able to export items from Photo Stream in iPhoto my Mac. Abruptly this option seems to have disappeared, and is now greyed out. Anyone got any idea why? Thanks in anticipation?

    The borders and themes have been discontinued.
    If you want them back, send a feature request to Apple:
    http://www.apple.com/feedback/iphoto.html.

  • How to extract Cleared and Open Items from SAP R/3?

    Hi experts,
    I have a requirement from user to extract cleared and open invoice items from SAP R/3.
    Can someone tell me how to do that?
    Thanks!

    Hi,
    Use the Data source 0FI_AR_4 to Know the status (0FI_DOCSTAT) of payment to be done by customer.
    OR
    Enhance the 2LIS_13_VDITM with VBUP fields which will give the status of Billing.
    With rgds,
    Anil Kumar Sharma .P

  • Epson Stylus Photo 1290 - how do I remove items from the print queue?

    Description of problem with "Epson Stylus Photo 1290" Application:
    After selecting Show Completed Jobs from the main menu (Jobs > Hide/Show Completed Jobs) I am presented with a status list of print jobs (a.k.a. "print queue") that are either marked as "Completed", "Cancelled", "On Hold", "Printing" etc. Each and every time I print an item it is added to this list.
    I simply want to clear this list.
    However, the application's "Delete" button appears to only transform a "Printing" job to a "Cancelled" job, for example.
    So how on earth do I clear the old (and, to me, useless) jobs listed in this print queue?
    I know this isn't apple software but seeking help on the EPSON sites (and the rest of the net) has led me nowhere.
    Many many thanks in advance if anyone can suggest anything!
    My set-up:
    Hardware:
    Model Identifier: MacBookPro5,1
    Boot ROM Version: MBP51.007E.B05
    SMC Version (system): 1.33f8
    Running: OS X 10.5.8
    Problem App: EPSON Stylus Photo 1290.app, version 6.0.3
    Queue name: EPSONStylus_Photo1290
    Host name: localhost
    Driver version: 3.09 (confirmed as latest)
    URL: usb://EPSON/Stylus%20Photo%201290?serial=WORLL0112061542320
    Have print log files been cleared: Yes (using MacPilot)
    Have print preferences been trashed/reset: Yes (all that I could find)
    When did this problem start: not sure, I first noticed it several months after first using it on my MBP 10.5.x

    Hmmmm. Doesn't look like I can edit my post. Okay.......
    Contrary to what I've said above, this IS an Apple issue as the problem lies in the Print Queue, which is part of the OS.
    The "fix" is to go System Preferences > Print & Fax and then delete the 1290 from the list of printers.
    When the 1290 printer is re-added its print queue is now empty AND the Delete button does as it is supposed to do - it deletes items from the queue list.
    Hooray!

  • Gurus...Need help....extract data from BKPF header table and BSEG line item

    Gurus,
    I have to write the logic to fetch data from bkpf and bseg. Need help on how can i do that..
    I have to get bukrs  belnr gjahr ldgrp from BKPF for a given date and company code. For all these documents, then i have to get the line items from BSEG if the ldgrp is I1 or SPACE.
    If the ldgrp is not I1 or SPACE then i have to fetch the records from BSEG_ADD and then generate a ALV report with all the data including the data that was fetched from BKPF.
    So, it wil be a combined ALV report that displays header as well as LINE item data together...
    Can u please help me with the code...I am not sure how can everything go all together in one internal table....Becoz once its there in one table then only a ALV list can be generated.......
    Cheers:
    Sam

    hi Sam, this may be of some similar thing.
    Use this program, I got this prog from a source and we added a small conditional check in the program which checks document numbers in BSEG and also comapres in BKPF and sees if the output from BSEG falls under the posting data range specified in the initial selection.
    Now just so you know, this output is kinda messed up, so you will have to play with it in Excel to extract the document numbers, if that is what you want.
    ============================
    PROGRAM....... ZFI_BSEG_DOWNLOAD
    TITLE......... Download BSEG
    PROGRAM TYPE.. Download
    ======================================================================
    GENERAL DOCUMENTATION AND COMMENTS
    <...>
    ======================================================================
    ASSOCIATED PROGRAMS
    <Program>..... <Description>
    ======================================================================
    CHANGE HISTORY
    Date By Ticket Description
    REPORT zfi_bseg_download.
    TABLES: bseg, bkpf.
    TYPES: BEGIN OF ty_output,
    line(6000) TYPE c,
    END OF ty_output.
    TYPES: ty_tab_output TYPE TABLE OF ty_output,
    ty_tab_nametab TYPE TABLE OF x031l.
    CONSTANTS: c_delimiter(04) TYPE c VALUE '"%%"',
    c_records TYPE i VALUE 10000.
    SELECTION-SCREEN
    SELECT-OPTIONS: p_bukrs FOR bseg-bukrs,
    p_belnr FOR bseg-belnr,
    p_buzei FOR bseg-buzei,
    p_gjahr FOR bseg-gjahr,
    p_budat for bkpf-budat.
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_file LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_append AS CHECKBOX DEFAULT 'X'.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM get_records.
    *& Form get_records
    FORM get_records.
    DATA: l_cursor TYPE cursor,
    lt_bseg TYPE TABLE OF bseg,
    ls_bseg LIKE LINE OF lt_bseg,
    lt_output TYPE ty_tab_output,
    ls_output LIKE LINE OF lt_output,
    lt_nametab TYPE ty_tab_nametab,
    ls_nametab LIKE LINE OF lt_nametab,
    l_field(30) TYPE c,
    l_output(50) TYPE c,
    l_date(10) TYPE c,
    l_len TYPE i.
    FIELD-SYMBOLS: <field>.
    IF p_append NE space.
    OPEN DATASET p_file FOR APPENDING IN TEXT MODE.
    ELSE.
    OPEN DATASET p_file FOR OUTPUT IN TEXT MODE.
    ENDIF.
    Retrieve BSEF fieldnames and data types
    PERFORM get_fields CHANGING lt_nametab.
    OPEN CURSOR l_cursor FOR
    SELECT * FROM bseg
    WHERE bukrs IN p_bukrs
    AND belnr IN p_belnr
    AND buzei IN p_buzei
    AND gjahr IN p_gjahr.
    Write out fieldnames
    IF p_append IS INITIAL.
    LOOP AT lt_nametab INTO ls_nametab.
    CONCATENATE ls_output ls_nametab-fieldname
    INTO ls_output SEPARATED BY c_delimiter.
    ENDLOOP.
    IF ls_output+0(4) = c_delimiter.
    SHIFT ls_output LEFT BY 4 PLACES.
    ENDIF.
    l_len = strlen( ls_output ).
    TRANSFER ls_output TO p_file LENGTH l_len.
    ENDIF.
    Process BSEG records
    DO.
    CLEAR lt_bseg.
    FETCH NEXT CURSOR l_cursor
    INTO TABLE lt_bseg
    PACKAGE SIZE c_records.
    IF sy-subrc 0.
    EXIT.
    ENDIF.
    LOOP AT lt_bseg INTO ls_bseg.
    SELECT single * FROM BKPF
    WHERE BUKRS = ls_bseg-BUKRS
    AND BELNR = ls_bseg-BELNR
    AND GJAHR = ls_bseg-GJAHR
    AND BUDAT in p_budat.
    if syst-subrc 0.
    continue.
    endif.
    CLEAR ls_output.
    Process individual fields of BSEG record
    LOOP AT lt_nametab INTO ls_nametab.
    CONCATENATE 'LS_BSEG-' ls_nametab-fieldname INTO l_field.
    ASSIGN (l_field) TO <field>.
    CLEAR l_output.
    Process by field data types
    CASE ls_nametab-exid.
    WHEN 'C' OR 'N' OR 'I'.
    Character, Numeric & Integer
    l_output = <field>.
    WHEN 'D'.
    Dates
    WRITE <field> TO l_date DD/MM/YYYY.
    l_output = l_date.
    WHEN 'P'.
    Packed decimals
    WRITE <field> TO l_output.
    WHEN OTHERS.
    MESSAGE a000(zs) WITH 'Data type error - ' ls_nametab-exid.
    ENDCASE.
    SHIFT l_output LEFT DELETING LEADING space.
    CONCATENATE ls_output l_output
    INTO ls_output SEPARATED BY c_delimiter.
    ENDLOOP.
    IF ls_output+0(4) = c_delimiter.
    SHIFT ls_output LEFT BY 4 PLACES.
    ENDIF.
    l_len = strlen( ls_output ).
    TRANSFER ls_output TO p_file LENGTH l_len.
    ENDLOOP.
    IF sy-subrc = 0.
    ENDIF.
    ENDDO.
    CLOSE CURSOR l_cursor.
    CLOSE DATASET p_file.
    ENDFORM. " get_records
    *& Form get_fields
    FORM get_fields CHANGING pt_nametab TYPE ty_tab_nametab.
    CALL FUNCTION 'RFC_GET_NAMETAB'
    EXPORTING
    tabname = 'BSEG'
    TABLES
    nametab = pt_nametab
    EXCEPTIONS
    table_not_active = 1
    OTHERS = 2.
    IF sy-subrc 0.
    ENDIF.
    ENDFORM. " get_fields
    hope this helps.
    cheers,
    Hema.

  • How do I transfer my photos and other items from the cloude to my Dell desktop

    How do I transfer my photos and other items from the cloud to my Dell
    desktop

    Hello johnfromwildomar,
    Thank you for using Apple Support Communities.
    You can use the following articles to help you set up to share photos from iCloud to your computer.
    iCloud: Set up My Photo Stream
    iCloud" My Photo Stream FAQ
    Regards,
    Jeff D. 

  • I want to buy a photoshop that will move trees or remove trees etc in landscape photos, add an item from another photo etc

    I have not used any photoshop except years ago.  I am completely lacking in information.  If  I want to fix reference photos to look like I want them to look by removing aspects, like a tree, rock etc or move them within the photo, what do I need to buy?  also finding an item from one photo that I would like to add to another, such as a person, again which version must I buy.
    I do not want to do the Cloud thing which is costly, I want the least expensive means to have these tools.
    cheers!

    Wrong forum, but Photoshop Elements will do what you want.

  • So they removed Pattern maker, and the Extract filters from Photoshop CS4

    Personally I hardly ever used these, but did occasionally. I was wondering how this is going to affect others?
    I don't see how removing two items from the filters menu makes much difference to anything. Maybe its more of a launch time issue, although I'm not sure that taking functionality away just to have fraction of a second faster launch, is a little daft.
    They are still included on the CD, but this is going to inconvenience me if I ever need them in a freelance role. There were problems with both of them: When I first saw extract, it was almost as if the engineeers themselves hadn't woken up to non destructive editing. And pattern maker lacks the most obvious features, and doesn't perform particularly well. They are also both slow and cumbersome to use.
    But
    they do have other occasional uses beyond what they were (admittedly quite badly) designed for, especially pattern maker for reintroducing sampled texture sourced from the image. I don't see much replacement for this

    Regarding "Extract" and "PatternMaker":
    If you really need them right now, just add the CS3 plug-ins into CS4 they will work as they always have.
    Actually, John Nack has stated that those old plug-ins will be downloadable from the Adobe site if you need them.
    >We've bitten the bullet with this release and have sent a number of features into retirement. Extract, Pattern Maker, Web Photo Gallery, Contact Sheet, Picture Package, and PDF Presentation have been removed from the default installation.
    >
    The latter four have been replaced by the Output module in Bridge CS4, and our intention is to replace Extract with features inside Photoshop (building on Refine Edge & more). All of these except PDF Presentation will remain available as optional installs (to be posted on Adobe.com), but over time they'll be phased out.
    [Emphasis mine.]

  • How do I delete from Photos but leave the pictures in the albumns I created instead of the duplication I have now?

    How do I delete all the photos I have in PHOTOS after I've put them all in several albums?  I don't need them duplicated. When I go to delete them the box asks if I want to delete them from EVERYWHERE but doesn't give me an option to NOT delete (from the albums). I paid £15 to get storage on I cloud and hope I have stored them correctly on there but as I don't know how to find them on I cloud to check if I've done it right, I am very reluctant to even try to delete over 1000 precious photos! Once they've gone they've gone.....! lol Meanwhile I'm stuck with no storage left to be able to take new photos of my newly born grandson! Help!!

    This will tell you exactly what iCloud does backup.
    iCloud: iCloud storage and backup overview - Support - Apple
    You did not necessarily waste the money on the storage space. Actually, if you take lots and lots of photos, you might need more storage since camera roll photos are stored in the iCloud backup. But you cannot delete the photos from the iPad, and then backup with iCloud without removing those photos from the backup. When you backup the iPad, you are backing up the state of the iPad at that particular date and time. As long as you leave the photos on the iPad and you have enough storage capacity left in iCloud, the photos will contniue to be backed up.
    This is interesting reading as well. I do not agree with Apple's statement that iCloud is the best way to backup for most users. I use the free iCloud account that Apple offeres but until I am forced to do so I will never totally rely on iCloud. I continue to use iTunes for backups and iCloud is my backup backup.
    Choosing an iOS backup method (Should I use iTunes or iCloud to back up my iOS device?
    iCloud does not backup any synced content or any content that you might have on the iPad that did not originate from one of Appl'es stores - iTunes, the App Store or iBooks. It is possible to have content on the iPad that did not come from Apple, so using iCloud as your sole backup solution does not make sense. Of course, Apple would love nothing more than for you to only use their stores, their own content and their own backup solutions.
    This is not the exact article that I was looking for where Apple recommends importing your photos to your computer, but the article does address that here as part of how you can manage your iCloud storage.
    iCloud: Managing your iCloud storage - Support - Apple
    An important thing that you have to know about backups is that they are not really a way to store content. Backups are a way in which you can restore the state of the iPad to the way that it was on the day and at the time that you made the backup. App documents, app settings, device settings, Safari History and so on. Backups are very important, but you cannot extract individual items from a backup like you can from a hard drive, thumb drive or from a folder on your computer.
    Many users disagree with the way that I feel about using iCloud solely and that is their right and their choice to do so. I am not saying that my way is the right way - I am merely sharing my opinions with you.

  • Unrestricted sharing of free* items from iTunes Store

    We are trying to find a legal but convenient way of managing our family iTunes purchases and sharing.
    We are just beginning to use iTunes on a couple of new Macs, three iPads or iPod Touch devices and two old PC's.
    We have a home Wi-Fi network with a network drive, where we can store items to be shared.
    The children in a few years will move out and will take their music, e-books, etc. with them.
    Our Internet connection is slow we would like to avoid downloading the same free item from the iTunes Store to libraries associated with different Apple ID's.
    We want everybody to eventually have his/her own copy of our home videos and voice memos recorded on portable devices, which can be further shared without any restrictions.
    I understand that some of the rules that Apple set for iTunes users are as follows.
    1. Every item purchased from iTunes Store is marked with the ownership information i.e. information about of the account it was purchased from. (The account is identified at any given time by a unique Apple ID.)
    2. The ownership information on an item can not be changed, i.e. I cannot give an item to somebody else, declining to use it any more, and transferring the item to that person's iTunes library associated with that person's iTunes account.
    Question 1: Are the statements 1 and 2 above correct and precise?
    Question 2: Does the same apply to free items (iTunes U, e-books, iPod/iPad apps) from the iTunes store? (it is painful to download the same free item to different accounts over a slow Internet connection.)
    Question 3. Does the same apply to music imported into iTunes from a CD?
    Question 4: Is it true that in order to allow the kids to take their items with them when they move out, one has to make sure that the items
    have been purchased from iTunes accounts associated with their own Apple ID's and placed in their separate iTunes libraries?
    Question 5: If I add our home videos and voice memos to my iTunes Library associated with my iTunes account, and do not retain other copies, will it be possible to copy such items to libraries associated with other Apple ID's without any restrictions? Will it be possible to extract such items from iTunes?
    Question 6: As long as we are using the same Wi-Fi, can we share music, video,  ebooks from libraries associated with different Apple ID's? I believe so, but please confirm. What are the restrictions? Is it helpful to place an iTunes library on a network drive?
    Question 7: I believe the same iTunes library can contain items purchased through different iTunes accounts; also there can be multiple iTunes libraries associated with the same iTunes account. Are such options useful and would they help in managing family purchases and sharing?
    Question 8. I noticed that a portable device can sync (download) items from only one library. Different persons have apps and music from different libraries associated with their own Apple ID's. We would like them to have also on their portable devices the same free e-books and home videos or voice memos. Do we have to copy such free e-books and voice memos to all the different libraries?
    These must be questions many familes ask, but I could not find a precise and comprehensive answer despite browsing the web for several days.
    Could you please help?

    No. It said nothing about authorizing a computer. I only have one I-Pod and one computer with my library on it. I have listened to these 4 songs for over one year on my p/c and I-Pod. This is a new one to me. These 4 songs still show up in my "purchased" section of my I-tunes but I cannot play them and they will not
    copy to my I-Pod. I see where I can repurchase these songs at the I-tunes store, but don't want to pay for them twice. What do you think is going on? Thanks.

  • When I extracting data from DSO to Cube by using DTP.

    When i am extracting data from DSO to Cube by using DTP.
    I am getting following erros.
    Data package processing terminated (Message no. RSBK229).
    Error in BW: error getting datapakid cob_pro (Message no. RS_EXCEPTION105).
    Error while extracting from source 0FC_DS08 (type DataStore) - (Message no. RSBK242).
    Data package processing terminated. (Message no. RSBK229).
    Data package 1 / 10/04/2011 15:49:56 / Status 'Processed with Errors'. (Message no. RSBK257).
    This is the brand new BI 7.3 system. Implementing the PSCD and TRM.
    I have used the standard business content objects in FI-CA (dunning history header, item,activities) and standard Datasource (0FC_DUN_HEADER ,0FC_DUN_ITEMS, 0FC_DUN_ACTIVITIES). I have extracted data till the DSO level . when I try to pull the data to info provider level(cube) using DTP . I am getting fallowing error.
    my observation: when ever I use the DSO as source to any target like another DSO or cube. its throwing same kind of error for any flow including simple Flat file .
    please suggest any one whether do I need to maintain basic settings since its a brand new BI 7.3.
    please help me out on this issue . I am not able to move forward .its very urgent

    hello
    Have you solved the problem ?  
    I have the same error...
    as you solve this error,
    can you help me please I have the same error
    yimi castro garcia
    [email protected]

  • [Forum FAQ] SharePoint 2013: Extracting values from a multi-value enabled lookup column and merge values to a multi-value enabled column

    For some business requirements, users want to extract values from a multi-value enabled lookup column
    and add items to another list based on each separate value. In contrast, others want to find duplicate values in the list and merge associated values to a multi-value enabled column and then
    add items to another list based on the merged value. All of these can be achieved using SharePoint Designer 2013 Workflow.
    How to extract values from a multi-value enabled lookup column and add items to another list based
    on each separate value using SharePoint Designer 2013.
    Important actions: Loop Shape; Utility Actions
    Three scenarios
    Things to note
    Steps to create Workflow
    How to merge values to a multi-value enabled column and add item to another list based on the
    merged value using SharePoint Designer 2013.
    Important actions: Call HTTP Web Service; Build Dictionary
    Things to note
    Steps to create Workflow
    How to
    extract values from a multi-value enabled lookup column and
    add items to another list based on each separate value using SharePoint Designer 2013.
    For example, they have three lists as below. They want to
    extract values from the Destinations column
    in Lookup2 and add items to Lookup3 based on each country and set Title to current item: ID.
    Lookup1:
    Title (Single line of text)
    Lookup2:
    Title (Single line of text), Destinations (Lookup; Get information from: Lookup1 in Title column).\
    Lookup3:
    Title (Single line of text), Country (Single line of text).
    Important action
    1. Loop Shape: SharePoint Designer 2013 support two types of loops: loop n times and loop with condition.
    Loops must also conform to the following rules:
    Loops must be within a stage, and stages cannot be within a loop.
    Steps may be within a loop.
    Loops may have only one entry and one exit point.
    2. Utility Actions: It contains many actions, such as ‘Extract Substring from Index of String’ and ‘Find substring in String’.
    Three scenarios
    We need to loop through the string returned from the look up column and look for commas. There are three
    scenarios:
    1.  No comma but string is non-empty so there is only one country.
    2.  At least one comma so there is at least two or more countries to loop.
    3.  In the loop we have consumed all the commas so we have found the last country. 
    Things to note
    There are two things to note:
    1. "Find string in string (output to Variable:index)"  will return -1 if doesn't find
    the searched for string.
    2. In the opening statement "Set Variable: Countries to Current Item:Destinations" set the return
    field as  "Lookup Values, Comma Delimited".
    Steps to create Workflow
    Create a custom list named Lookup1.
    Create a custom list named Lookup2, add column: Destinations (Lookup; Get information from: Lookup1 in Title column).
    Create a custom list named Lookup3, add column: Country (Single line of text).
    Create a workflow associated to Lookup2.
    Add conditions and actions:
    Start the workflow automatically when an item is created.
    Add item to Lookup2, then workflow will be started automatically and create multiple items to lookup3.
    See the below in workflow History List:
    How to merge values to a multi-value enabled column and add item to another list based on the
    merged value using SharePoint Designer 2013
    For example, they have three lists as below. They want to find duplicate values in the Title column in
    Lookup3 and merge country column to a multi-value enabled column and then add item to lookup2 and set the Title to Current Item: Title.
    Lookup1:
    Title (Single line of text)
    Lookup3:
    Title (Single line of text), Country (Single line of text).
    Lookup2:
    Title (Single line of text), Test (Single line of text).
    Important actions
    "Call HTTP Web Service"
    action: In SharePoint 2013 workflows, we can call a web service using a new action introduced in SharePoint 2013 named Call HTTP Web Service. This action
    is flexible and allows you to make simple calls to a web service easily, or, if needed, you can create more complex calls using HTTP verbs as well as allowing you to add HTTP headers.
    “Build Dictionary"
    action:
    The Dictionary variable type is a new variable type in the SharePoint 2013 Workflow.
    The following are the three actions specifically designed for the Dictionary variable type: Build Dictionary, Count Items in a Dictionary and Get an Item from a Dictionary.
    The "Call HTTP Web Service" workflow action would be useless without the new "Dictionary" workflow action.
    Things to note
    The
    HTTP URI is set to https://sitename/_api/web/lists/GetByTitle('listname')/items?$orderby=Id%20desc and the HTTP method is set to “GET”. Then the list will be sort by Id in descending order.
    Use Get
    d/results(0)/Id form
    Variable: ResponseContent (Output to
    Variable: maxid) to get the Max ID.
    Use Set
    Variable: minid to Current List:ID to get the Min ID.
    Use Copy from
    Variable: destianation , starting at
    1 (Output to
    Variable: destianation) to remove the space.
    Steps to create Workflow
    Create a custom list named Lookup1.
    Create a custom list named Lookup2, add column: Test (Single line of text).
    Create a custom list named Lookup3, add column: Country (Single line of text).
    Create a workflow associated to Lookup3.
    Add a new "Build Dictionary" action
    to define the http request header:
    Add a Call HTTP Web Serviceaction, click on
    this and paste your http request.
    To associate the
    RequestHeader variable, select the Call action property,
    set the
    RequestHeaders property to
    RequestHeader:
    In the Call action, click on
    response and associate the response to a new
    variable: ResponseContent (of type Dictionary).
    After the Call action add Get item from Dictionary action to get the Max ID.
    Add Set Workflow Variable action to get the Min ID.
    Add Loop Shape (Loop with Condition) to get all the duplicate titles and integrate them to a string.
    Create item in Lookup2.
    The final Stage should look like this:
    Start the workflow automatically when an item is created.
    Add item to Lookup3, then workflow will be started automatically and create item to lookup2.
    See the below in workflow History List:
    References
    SharePoint Designer 2013 - Extracting values from a multi-value enabled lookup column into a dictionary as separate items:
    http://social.technet.microsoft.com/Forums/en-US/97d34468-1b53-4741-88b0-958472f8ca9a/sharepoint-designer-2013-extracting-values-from-a-multivalue-enabled-lookup-column-into-a
    Workflow actions quick reference (SharePoint 2013 Workflow platform):
    http://msdn.microsoft.com/en-us/library/jj164026.aspx
    Understanding Dictionary actions in SharePoint Designer 2013:
    http://msdn.microsoft.com/en-us/library/office/jj554504.aspx
    Working with Web Services in SharePoint 2013 Workflows using SharePoint Designer 2013:
    http://msdn.microsoft.com/en-us/library/office/dn567558.aspx
    Calling the SharePoint 2013 Rest API from a SharePoint Designer Workflow:
    http://sergeluca.wordpress.com/2013/04/09/calling-the-sharepoint-2013-rest-api-from-a-sharepoint-designer-workflow/

    GREAT info, but it may be helpful to note that when replacing a portion of the variable "Countries" with a whitespace character, you may cause the workflow to fail in a few specific cases (certain lookup fields will not accept this and will automatically
    cancel).  I only found this out when recreating your workflow on a similar, but much more complex list set.  
    To resolve this issue, I used another utility action (Extract Substring from Index of List) to clear out the whitespace.  I configured it as "Copy from
    Variable: Countries, starting at
    1 (Output to Variable: Countries), which takes care of this issue in those few cases.
    Otherwise, WOW!  AWESOME JOB!  Thanks!  :)

  • Extracting expenses from G/L

    Hi,
    I am trying to extract some document items from the G/L account in order to identify some expenses. I am using the DataStage pack for SAP which calls BAPI methods. I identified the <b>GeneralLedger</b> component which might give me what I need through the <b>GetDocumentItems</b> method.
    However, the method requires a <b>Ledger</b> as an input parameter and I do not know where to take the value from (like 0F, LC...).
    Is there a way to list the ledgers through BAPI?
    More than that, the ledger is required to have a GLFLEXT summary table.
    Thanks,
    Petru

    Hi Petru,
    Ledger <b>0</b> (i.e. <b>GLT0</b>) contains G/L account transaction figures, whilst <b>GLT1</b> contains the Local General Ledger Summary Table.
    To be sure what name is given to the ledger in your system, execute transaction code <b>SE11</b> with table <b>GLT0</b> and click on "<b>DIsplay</b>". Next, click on the "<b>Content</b>" icon on the "<b>Application Tool</b>" bar just before the "<b>Technical Settings</b>" button. Once you are in the input selection screen, ensure your cursor is in the first field (i.e. <b>Ledger</b>) and click on the input help button or use <b>F4</b>. This would show you all the available ledgers within your system with their appropriate names and descriptions. Look at the name given to Ledger <b>GLT0</b> in your system and use it for your extraction in the DataStage pack. The name is usually the first column abbreviated as "<b>Ld</b>".
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • Extracting data from Excel To Illustrator javascript or vbscript

    Hi all-
    I was wondering if there was a way to extract data from Excel to be used in Illustrator. I know there is an option of variables and xml, and I don't want that. I've seen and tried out how to read illustrator and write to excel, and I get that.  What I would like to do is pretty much the opposite:
    1.Pre-fill in an Excel file(.xls,.csv, doesn't matter) with data such as a filename in column 1 and (Replacement Text) in column 2 and close manually.
    2. Run script(VBSCRIPT,Javascript, doesn't matter)
    3.For each column in Excel file where cell in first column is not empty, open Illustrator Template with placeholder of "DWG" textframe and replace the frame titled "DWG" with Replacement text from Excel in Column2.
    4, Save each to a PDF file and name file with text from Excel Column1(Filename)
    In a nutshell, there will be a single illustrator template with a premade textFrame with a name of "DWG". Excel will contain two columns, one for the filename to be named and one for the relative text to replace with the placeholder in AI. I hoped I explained this well enough without causing too much confusion. Thanks in advance.
    Filename
    Replacement Text
    test1.pdf
    DWG01
    test2.pdf
    DWG02
    test3.pdf
    DWG03
    test4.pdf
    DWG04

    As text… \n is new line character and \r is return character. I can't remember which excel uses but they both equate to a line/paragraph… I very quickly threw together an example for you…
    #target Illustrator
    textToPDF();
    function textToPDF() {
              if ( app.documents.length == 0 ) { return; }
              var doc, csvFile, i, fileArray, opts;
              csvFile = File( '~/Desktop/ScriptTest/Test.csv' );
              if ( !csvFile.exists ) { return; }
              fileArray = readInCSV( csvFile );
              doc = app.activeDocument;
              opts = new PDFSaveOptions();
              opts.pDFPreset = '[Press Quality]';
              // Here we loop the main array
              for ( i = 0; i < fileArray.length; i++ ) {
                        // Here we get the second item of sub array i
                        doc.textFrames.getByName( 'DWG' ).contents = fileArray[i].[1];
                        // Here we get the first item of sub array i
                        doc.saveAs( File( fileArray[i].[0] ), opts );
    function readInCSV( fileObj ) {
              var fileArray, thisLine, csvArray;
              fileArray =[];
              fileObj.open( 'r' );
              while( !fileObj.eof ) {
                        thisLine = fileObj.readln();
                        csvArray = thisLine.split( ',' );
                        fileArray.push( csvArray );
              fileObj.close();
              return fileArray;
    I haven't tested it but it should be close…?

  • How can I transfer photos from photo library to my computer

    I need help transferring photos from I phone 4 to I phone 5
    I have managed to get all photos from camera roll but not other albums
    Please help me to get the other pictures from photo library
    Thanks
    Tara

    Are these pictures on your iPod no longer stored on your PC or in a backup somewhere?  If so, you'll need the help of third party software to assist you with the task of extracting the photos from your iPod to your PC.  Keep in mind that these synced photos are no longer in their full resolution, but instead are scaled down thumbnails of the original.
    If you stored these photos in full resolution, see this article for instructions on copying them from your iPod back to your PC.
    Use Disk Mode to copy photos from iPod
    Once the photos are on your PC again, you can configure them to sync to your iPhone.
    iOS and iPod: Syncing photos using iTunes
    B-rock

Maybe you are looking for