Change Document Names in Map of Documents

Hello,
I am taking the attachments from a completed task and putting them into a map of documents variable.  I was wondering if it is possible to change the names of the documents in the map?  I would like to be able to add an identifier to each document in the map.  Thanks.

The problem is that you put the id in quotes - which no longer evaluates the statement, but treats it as a litteral.
To make it easier on my feeble brain (especially when debugging using record/playback) I break it down into multiple steps in the same set value
/process_data/@myTempID is a string
/process_data/@myTempDocis a Document
Location  
Expression
/process_data/@myTempID 
/process_data/MapKeys[1]
/process_data/@myTempDoc
/process_data/MapOfDocuments[@id=/process_data/@myTempID]
/process_data/MapOfDocuments[@id=/process_data/@myTempID]     
setDocAttribute(/process_data/@myTempDoc, "wsfilename", "test.doc")

Similar Messages

  • Want to change router name on map

    Using Network Magic 5.5 
    When I bring up the map & click on the Router the MAC & IP info are correct..
    However the manufacture; Name, Model, & connection Name are wrong.. In fact I hada wireless router I tried to use and never got to work so I took it out, now it's name & model # show up here, and the extra printer I can't get to work on here is now the connection name, Is there a way I can change this manually
    1Snowbird

    1snowbird wrote:
    Using Network Magic 5.5 
    When I bring up the map & click on the Router the MAC & IP info are correct..
    However the manufacture; Name, Model, & connection Name are wrong.. In fact I hada wireless router I tried to use and never got to work so I took it out, now it's name & model # show up here, and the extra printer I can't get to work on here is now the connection name, Is there a way I can change this manually
    Hi 1Snowbird,
    Do the following on each computer. Do not reinstall until Network Magic is removed from each computer, first. Installing Network Magic again on each computer, won't change a thing, if reinstalled right away.
    Folder locations for Windows XP.
    Uninstall Network Magic. Reboot.
    Use Explore and remove the following folder and its sub-folders:
    \Documents and Settings\All Users\Application Data\Pure Networks
    \Program Files\Pure Networks
    Still using Explore manually clean out your \Temp Folders. Run Disk Cleanup.
    Reboot. Make sure that you are connected to the Router.
    Reinstall Network Magic.
    thecreator - Running Network Magic version -5.5..9195.0-Pure0 on Windows XP Home Edition SP 3
    Running Network Magic version -5.5.9195.0-Pure0 on Wireless Computer with McAfee Personal Firewall Build 11.5.131 Wireless Computer has D-Link DWA-552 connecting to D-Link DIR-655 A3 Router.

  • How do you change the name of a document in pages on an iPod touch?

    I am on my iPod touch and I want to name my document in Pages. How do I do it?? I know you can, but how??

    nevermind! I figured it out!! You just have to be in where all your documents are shown, hold the NAME (not the document it self, the name of the document) and if you hold it (tap it) for long enough, it will bring up the change document name screen.

  • My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer see

    My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer seems insistent on doing. Help!!

    11lizzyp wrote:
    can't be saved because the file is read-only.
    I did not create the file to be read-only. I created to be able to continue to add to it as I work on it.
    More on versions here:
    http://support.apple.com/kb/ht4753
    local snapshots:
    http://support.apple.com/kb/HT4878
    Sounds like a permissions problem ie read only.
    If running repair permissions from your DiskUtility.app does not sort it,
    Someone should jump in here with erudite and concise fix.

  • Changing Document Name of unsaved File

    Hi,
    is it possible to change the name of an opened but not saved document?
    If I open a photo from ACR as an object, PS will append "as object" to the document name.
    I'd like to delete that part of the document name, BEFORE it will be saved.
    Or is there another way to do that?
    app.activeDocument.name is read only...
    Thanks!

    Try this:
    -X
    var original = app.activeDocument;
    var newDoc = original.duplicate(original.name.replace(' as object', ''));
    original.close(SaveOptions.DONOTSAVECHANGES);

  • Change document name on HP 6700 using Win 8.1 so that I can save with my documents on hard drive

    change document name on HP 6700 using Win 8.1 so that I can save with my documents on hard drive.
    Am new to this, so help an old man.
    I scan a document, and it comes out as  time and date, and number, but how can i give it a name, so that I can file with other documents, not just the scans.
    Thanks

    Hi,
    You need to install the HP printer software.  The installation process will place a printer icon under the Windows 8.1 Apps menu. Click on the icon and you should be able to see the Advanced setting link.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • How do I change the name property of a file in a document library?

    I am trying to come up with an Event Receiver that will change the name property of an file when it is uploaded. For instance when a file is uploaded into a document Library, currently the Title is being generated (which is fine)...I want to be able to
    change the "Name" property from whatever it is, to match exactly what is in the "Title" property. Are there any sample codes/blogs out there that I can take a look at? Has anyone  had any experience doing this? It seems like something
    that should be straight forward, to change the "Name" property to match what is in the "Tilte" property.

    Hi,     
    You can try the code below which use the SPFile.MoveTo() function to change the name of the file.
    EventFiringEnabled = false;
    SPFile f = properties.ListItem.File;
    string spfileExt = new FileInfo(f.Name).Extension;
    f.MoveTo(properties.ListItem.ParentList.RootFolder.Url +
    "/" + properties.ListItem["Title"]+ "_new" + spfileExt);
    f.Update();
    EventFiringEnabled = true;
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5cafb8e4-bb85-4147-9bda-4ab42a4d4817/sharepoint-2013-event-receiver-to-rename-files-not-working?forum=sharepointdevelopment
    A link about rename uploaded file using Event Receiver for your reference:
    http://paulgalvinsoldblog.wordpress.com/2008/01/25/quick-easy-rename-uploaded-file-using-sharepoint-object-model-via-an-event-receiver/
    Best regards
    Patrick Liang
    TechNet Community Support

  • Change Document Object ICDTXT_ include name

    Hi fellow developers.
    What is the purpose of each field in ICDTXT_<include name> when preparing to call the function F<include name>_WRITE_DOCUMENT? For example, I have an IT called ICDTXT_ZCD_CONFIG_CV and this is how I am filling the fields:
       UPD_ICDTXT_ZCD_CONFIG_CV = UPD_Z00_CONFIG_CV.
       wa_log_info-teilobjid = 'Producto'.
       wa_log_info-textart = ' '.
       wa_log_info-textspr = sy-langu.
       wa_log_info-updkz = UPD_Z00_CONFIG_CV.
       append wa_log_info to ICDTXT_ZCD_CONFIG_CV.
    I am not sure at all what to set in textart. And teilobjid is the table key as far as I know. But I want to be sure I am doing this correctly.
    Thank you for your time.

    Yes you must call the FM via the generated include in your update program, change document are programmatically managed. in the "SAVE" form use some CALL FUNCTION IN UPDATE TASK to call the FM that updates database and the FM that creates change documents - look at [Update Techniques|http://help.sap.com/saphelp_nw04/helpdata/en/41/7af4cba79e11d1950f0000e82de14a/frameset.htm] and [BC414|http://www.sap.com/services/education]
    - without programming you can fill DBTABLOG via SE11 options
    - Also look at [Defining Change Document Objects|http://help.sap.com/SAPHELP_nwmobile71/helpdata/EN/2a/fa018f493111d182b70000e829fbfe/frameset.htm] and [Integrating the functionality into the program|http://help.sap.com/SAPHELP_nwmobile71/helpdata/EN/2a/fa01b6493111d182b70000e829fbfe/frameset.htm]
    Regards,
    Raymond

  • I want to change document name.

    Hi, all.
    I want to change document name.
    But the business one can change only AP document.
    AR document can't change their name.
    Is anyone know why only AP documents can change their name.
    Thank you for your help.
    seiichi

    Dear
    In Business one it is only possible to change the purchasing documents. you actually can do it from sdk.  change the system form title and menu name by updating Form.Title and MenuItem.String, as long as you get these UI API
    objects with your code.
    Best Regards,
    xiaodan AN

  • ALE: mapping IDoc fields to change document fields - TBD22 for ADRMAS iDoc

    Hi,
    I am currently try to find a table or way to extract the information of the TBD22 table (ALE: mapping IDoc fields to change document fields) for the iDocs/ Message Types:
    ADRMAS
    INTERNAL_ORDER
    PROJECT
    I am looking for a table that shows me to which SAP R/3 tables and fields the segments and fields of the above mentioned messages will be mapped to.
    When I add one of the above mentioned message types to the table TBD22 selection criteria I always receive the notification: "No table entries found for specific key".
    Could anybody determine Which table I have to use or why I cannot extract this information?
    Thanks in advance!
    Best regards

    Hi,
       Since we can not map the target IDOC when any of the field changes using nodefunctions , you can write UDF and check the same i.e if field1 changes or field2 changes or field3 changes then trigger new IDoc. This is one of the options that you can try...please try it once.
    Regards
    Priyanka

  • How to use change document object ?

    Friends,
    I am learning to use the Change Document object for one of my Z table. I have created a change doc object using SCDO. I have now written a test report in which i am issuing the SELECT statement for fetching old and new values from the Z table and passing them to the FM generated by SCDO.
    I am not able to see the changes in the CDHDR and CDPOS tables. I am doubtful abt the values being passed to the FM. Here are the values i am passing:
    CALL FUNCTION 'YTEST_WRITE_DOCUMENT'
      EXPORTING
        objectid                      = 'YTEST'
        tcode                         = 'se38'
        utime                         = sy-uzeit
        udate                         = sy-datum
        username                      = sy-uname
      PLANNED_CHANGE_NUMBER         = ' '
       OBJECT_CHANGE_INDICATOR        = 'U'
      PLANNED_OR_REAL_CHANGES       = ' '
      NO_CHANGE_POINTERS            = ' '
       UPD_ICDTXT_YTEST               = 'U'
        n_ztest_cle                   = wa_ztest_cle
        o_o_ztest_cle                 = o_ztest_cle
      UPD_ZTEST_CLE                 = ' '
      tables
        icdtxt_ytest                  = itab_cdtxt.
    Is the object ID the same as the Change Document Object name ??
    Please help.
    Thanks,
    Ram.

    Well, i found a way out for the problem i was facing. I was not setting the "UPD_ZTEST_CLE " FM parameter. When i set it to 'U', the changes got reflected in the CDHDR and CDPOS tables.
    Can i reward myself as i solved this by myself ???

  • Problem while generating Update progam for a Change Document Object

    Hi,
    I'm trying to deal with Change Document concept in a R/3 4.6C environment and to establish new Change Document object for my (Z)-table. I haven't using any namespace and created object with name ZTEST. Following the online documentation I came to the point, where I have to generate include program. I made all the nessesary inputs (using Z prefix) but faced
    "Function module name is reserved for SAP"
    Creating everything similarily using some of our registered namespaces (/somenamespace/) I succeed to generate the Update program and to integrate it in my Z-programs as well.
    My question is: is it possible to use Change Document Object-names without predefined namespace - being a regular customer developer, but not an SAP developer - means, if I am allowed to manage programs in the customer namespace (Z,Y, X) only. If yes, how to do this?
    Further (I decided not to open a new thread) - generated Update program uses
    CALL FUNCTION 'xxxxx' IN UPDATE TASK
    for creation of Change Numbers for generated Change Document Object. This CALL doesn't work when I implemented it in my Z-program, but when changed  (IN UPDATE TASK was commented) - everything goes well and the system creates records in CDHDR/CDPOS tables for my object class and table.
    Why is that? According to the documentation I shoud only fill appropriate variables for the Change Document Object (class, tr.code, etc.) and call generated FM, nothing is pointed out about any possible problems? Am I doing something wrong?
    Well, to be precise, I think I have to give a sample:
    1. I have a sample Z-table with few fields (their data elements are marked as Change-Document relevant).
    2. Using own z-progam I created a new record for this z-table. Also fill all the nessesary variables included in the interface of generated FM for Change Document Object (for example - FM-mane CD_CALL_my_object).
    3. I call the CDO FM.
    4. Check what is happening (directly in both tables CDHDR/CDPOS or using FM CHANGEDOCUMENT_READ).
    Further, I perfom the steps from 1 to 4 updating the created in previous loop record in my Z-table.
    In both cases if the FM 'CD_CALL_my_object' is called IN UPDATE TASK nothing happens, but in case of direct call (without addition IN UPDATE TASK) the system behaves as expected. Well, obliously I can change the generated code for our production needs, but it doesn't seems to be the correct decision - in case of next possible modification of the Change Document Object definition, respectively in need of re-generation of the code.
    Any hints are wellcome.
    Thanks in advance.
    Ivaylo Mutafchiev
    Edited by: Ivaylo Mutafchiev on Jan 24, 2008 10:24 AM

    "IN UPDATE TASK" resolved by myself. The one should explicitly call 'COMMIT WORK' from Z-program after CALL FUNCTION '...' IN UPDATE TASK in order to get changes in the CDHDR/CDPOS commited. The key in this issue for me was to check the documentation of CALL FUNCTION :-).
    Regards,
    Ivo

  • Changing Document Title in Pages for iPad and VoiceOver

    Is there a trick to changing the name of the document in Pages for iPad when voiceover is enabled. I can change the document name when voiceover is turned off but there doesn't seem to be away of getting to the label when voiceover is turned on.

    What makes this difficult is that I can export the documents in PDF format, but then I cannot view them in Pages on the iPad as they cannot be uploaded into iCloud and Pages cannot access documents in other cloud storage sites. Pages uses the Word templates best.
    I've considered Quickoffice, but don't want to spend the $$ on an app that may not work.
    I've even thought about Team Viewer and accessing the documents on my Mac at home, but why remote access another computer just to view native files?
    Thanks for the responses.

  • Vendor Master - Change documents

    Hi
    There is a standard SAP report which gives the change documents for the vendor (t code S_ALR_87012089). But the problem with this is, the report output is not an ALV grid output. Hence, the user is complaining about the amount of format required after downloading it to excel.
    Is there an easier way by which I can use the report output and transform it to ALV output?
    Any help is much appreciated.

    Thanks for your reply.
    I already tried this. It worked OK, but I do have a question. For the fields my report is giving field technical names as the table CDPOS has technical name. I do want to get field text in the report.
    Is there any way I can get them?
    Thanks,

  • Change document not found in article master ( t.code MM42)

    Hi,
    I am facing a strange  issue in MM42 !
    I see that the RP type in Logistic Dc view is not  same as the last value. Which means there is a change  made in this field. But the change document for this is not seen in MM42.
    Do you have any idea about which may have caused this?
    Thanks in advance
    Indrani

    Hi Indrani ,
    Another way of checking it ...
    Se16/SE16N   Table CDHDR .....
    Object = MATFULL and Object Value = Article Number ...  TR COde : MM42 ...
    Give an open date range...
    This will bring out all changes done to the article.
    then take the Object ID and Change DOC Numbers to CDPOS ... and now there you can filter for the field name DISMM or( RP Type field name)... If it has been changed ... it will be picked up..
    Regards
    Amitava

Maybe you are looking for

  • Change styles for ebook/print

    I have my book pasted up in InDesign, and I can easily output to PDF or EPUB from the book window. Great. However, I'd like different styles to apply to each format. For example, I want a different first-line paragraph indent level for PDF than for E

  • Reservation creation date

    Dear All, Please let me know, how to find the reservation creation date? sachin

  • How i use value signaling Event?

    how i use Value signaling event by labview? can you send me example?

  • Mail configuration

    Hi,           any one help me configure mail in sap.plz.

  • BBM's aren't being delivered (and thus not read)

    my bbm's are sending, because the tick is there, but there's no D.  i checked the forum for similar problems and it saids that it may be because my friends phone is off or not in a service area but i can conform for sure that that's not the case. thi