Status Change with Compulsory Original File Attachment

Hi,
We have created a document with 3 statuses (Created, Acknowledged, Released).
DIR will be created with "Created" status.
When the status will change to u201CAcknowledgedu201D system should check whether the DIR has a original file checked in. i.e. Changing status should be have mandatory condition of original is attached.
Same for the transition from "Acknowledged" to "Released"
How to do this?
Thanks & Regards,
Pavan

Hi Pradeep,
Does the status type help?
Also does the BAdi suggested can be used only for the single document type or will be across all the document types?
regards,
Pavan

Similar Messages

  • When I send an email with a photoshop file attached, the recipient receives it "flattened". How do I change this?

    when I send an email with a photoshop file attached, the recipient receives it "flattened". How do I change this?

    I've sent psd files to various people without issues, however you might want to try something like www.filedropper.com to make sure it's not that they can't open your version of psd file.
    You may also want to zip the file using the built in archiving software, simply right click (or control click) the file and choose Compress ....,  then you can email it to the person as a compressed archive.  That should preserve all the aspects of the file properly without any modifications.

  • Question. How do I update / modify my site? Do I work with the original file "modify"?

    How do I update / modify my site? Do I work with the original file "modify"?

    Not sure why modify is in quotes ... but yes you work with the original and then publish again or export the HTML again.

  • Versions with unavailable original files

    "Versions with unavailable original files cannot be shared."
    But I store all originals in the Aperture file. All in one place.
    I would like to make a smart album that would show me which images are lacking originals but don't see the right criteria to check- anyone have ideas?
    (If it matters? All previews are 'don't limit' and '12'. Why? Because I need to drag images from Preview to FileMaker; when you drag from aperture you drag previews, not originals, and I need to drag the full size image).

    We are on FM Pro Advanced v13. I use Advanced because I need the additional scripting utilities and the custom menus. I know about Media Browser but never thought of using it. Maybe I should describe the project.
    I'm preparing a reference book on plant material for zones 10+ (Tropicals), and in the course of this work over the past few years have been collecting photographs (with the iPhone more and more, as it turns out). The photo collection is nowhere near complete; I am adding perhaps 50 images a week and will be doing so for another year or so– have to catch the plants flowering.
    The editorial portion of the research is managed in Scrivener (that's where I write my weekly column so I'm used to it). FMP isnt really suitable as a text editor, although I do use it in my practice for memos and proposal. And believe it or not, I track citations in TextEdit.
    Back to FMP: as the research progresses we have mocked up pages, thinking how they might look. I also use the database in my normal practice as a landscape architect. Both of these uses require photos, but the photos are in Aperture.
    The workflow in Aperture involved assigning stars to images and uploading them to Flickr for my co-author to review.
    To get the images over to FMP, I just drag them from Aperture to FMP container fields. And THAT is why I have the previews so big.
    This is very far from ideal mostly because there is no linked relationship. In the end, I always imagined I would delte all photos from FMP and start over, dragging images to the appropriate record. This actually makes some sense because sometimes there are a dozen photos of each plant but only 6 container fields in each record. I could add more but realistically getting a dozen into print will be a miracle. More, even less so.
    That's my story and suggestions are very welcome. It's clunky as ****.

  • Versions with unavailable original files cannot be exported.

    I have imported some photos into Aperture and worked on them, exported some etc. but when I disconnected the memory card I realized I had the yellow triangle and I was not able to export the photos and had this message: Versions with unavailable original files cannot be exported.
    When I re-connected the memory card the the yellow triangle disappeared and I was able to work with the images.
    How can I get rid of the triangle without having to connect the memory card?
    "Locate referenced files" command didn't work.
    Please speak slowly as I am not super technical! :-)

    In the Import dialogue, you apparently have selected to store originals in their current location -- not a good plan when they are on a memory card.  Select where you want them in the future.
    With this particular card mounted, you should be able to take the originals into the Aperture Library, and if desired, later move them to be referenced.
    Ernie

  • Create a Document with an original file stored on application server

    Hello,
    I start with document managment system : i am able to create new document (CV01N) manually, add a local file and check-in this file.
    Now we need to store file which are stored on the SAP Application Server.
    Firstly, in the GUI of transaction CV01N, i don't know how to browse file on application server. All files i can't attach as original, are files i can access from my computer.
    Is it possible to access also on application server files ?
    Moreover, i have to define function module which have to
    - Create a document (DMS)
    - Attach an orginial file which is stored on application server
    - Check-in the file
    This function module will be called from a web application
    I define this kind of function and run it correctly with a local file (stored on my computer) : i call BAPI "BAPI_DOCUMENT_CREATE2" and "BAPI_DOCUMENT_CHECKIN2"
    But i don't how to do with a file stored on application server. I see also note 504692 and try a program like ZZUZTEST_TEST_CHECKIN which use FM CVAPI_DOC_CHECKIN but it return an error Error uploading  E:\usr\sap\TD1\DVEBMGS00\data\FACTURE.txt" (this path and file exist on application server and is really the file i want to checkin)
    Please could you confirm what i search, is possible or not.
    If possible, could help me with some explanations and guidelines and perhaps a sample ?
    Thank you very much.
    Regards,
    Eric
    The function used
    FUNCTION Z_TEST_CHECKIN.
    Checkin the first original of a document info record *
    from the application server and/or in the background *
      data   : w_host like BAPI_DOC_AUX-HOSTNAME.
      data: lf_line(255).
      data: ls_draw like DRAW,
            ls_message_cvapi like messages,
            lt_files_cvapi type standard table of CVAPI_DOC_FILE,
            lt_files_cvapi_header like CVAPI_DOC_FILE.
      data: lt_originals LIKE cvapi_doc_file OCCURS 0 WITH HEADER LINE,
            vo_originals LIKE cvapi_doc_file OCCURS 0 WITH HEADER LINE.
      ls_draw-dokar = 'ZFT'.
      ls_Draw-doknr = '0000000000000004500000032'.
      ls_Draw-dokvr = '00'.
      ls_Draw-doktl = '000'.
    Read Originals contained in the document info record
      CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
        EXPORTING
          pf_batchmode    = 'X'
          pf_hostname     = ' '
          pf_dokar        = ls_draw-dokar
          pf_doknr        = ls_draw-doknr
          pf_dokvr        = ls_draw-dokvr
          pf_doktl        = ls_draw-doktl
          pf_active_files = 'X'
        IMPORTING
          psx_draw        = ls_draw
        TABLES
          pt_files        = vo_originals
        EXCEPTIONS
          not_found       = 1
          no_auth         = 2
          error           = 3
          OTHERS          = 4.
      IF sy-subrc <> 0.
        WRITE 'Error returned by CVAPI_DOC_GETDETAIL'.          "#EC NOTEXT
        EXIT.
      ENDIF.
    Check if we can really access the file from the application server
      read table vo_originals index 1.
      open dataset vo_originals-filename for input in text mode ENCODING DEFAULT.
      if not sy-subrc is initial.
        message e500(26) with vo_originals-filename 'not found'.
      endif.
      read dataset vo_originals-filename into lf_line.
      if not sy-subrc is initial.
        message e500(26) with vo_originals-filename 'read error'.
      endif.
      lt_originals             = vo_originals.
      lt_originals-STORAGE_CAT = 'SAP-SYSTEM'.
      append lt_originals.
      w_host = sy-host.
      CALL FUNCTION 'CVAPI_DOC_CHECKIN'
      EXPORTING
      PF_DOKAR = ls_draw-dokar
      PF_DOKNR = ls_draw-doknr
      PF_DOKVR = ls_draw-dokvr
      PF_DOKTL = ls_draw-doktl
    PS_DOC_STATUS =
      PF_FTP_DEST = 'SAPFTPA'
      PF_HTTP_DEST = 'SAPHTTPA'
    *PF_HOSTNAME =  w_host
    PS_API_CONTROL =
    PF_REPLACE = ' '
    PF_CONTENT_PROVIDE = 'SRV'
      IMPORTING
      PSX_MESSAGE = ls_message_cvapi
      TABLES
      PT_FILES_X = lt_originals
    PT_COMP_X =
    PT_CONTENT =
      IF ls_message_cvapi-msg_type CA 'EA'.
        ROLLBACK WORK.
        MESSAGE ID '26' TYPE 'I' NUMBER '000'
        WITH ls_message_cvapi-msg_txt.
      ELSE.
        COMMIT WORK and wait.
      ENDIF.
    ENDFUNCTION.

    This is a bit tricky. I spent lots of hours about this .
    You have to set PF_HOSTNAME with your name of your AS and gives the path to the file on the server.
    You wrote
    *PF_HOSTNAME = w_host
    But beware: if you have more thän one AS you have to fix one AS for upload or you have to find the servers name of the file. A better way can be to share one folder by each AS.
    You also have to decide between HTTP or FTP.
    You wrote:
      PF_FTP_DEST = 'SAPFTPA'
      PF_HTTP_DEST = 'SAPHTTPA'
    You must define only one ! Then you have to check your settings in SM59 about working right.
    Pls rate, if this was helpful.
    Regards,
    Markus

  • Text messages with animated .gif files attachment

     I recieved a text the other day with an animated gif file attached. I believe it was sent as a zip file. Anyway I tried to open it and all I got was a gray screen with an icon . No animation.. The second one I recieved was from a buddy. I watched and listened to it on his Droid 1. I had him send it to my phone text came through fine when I went to load and play the gif file it .had sound but no animation, just the gray screen again. I know the attachment is a zip file as I sent it to my email and opened it on my computer. Any thoughts maybe there's a setting I'm not finding? I'm using whatver text mesage program thats standard on the DX.
    Thanks
    MTY55.

    Sounds like the issue you are having is that the files are zipped, MMS should be zipped because it has to access the files to display it.. I send and recieve anifated gif files and they play fine but also keep in mind that for some reason the stock email client does not play all files at same time, if there is a audio and photo, it will play audio and then the photo..

  • Table for WBS status change with date

    Hi,
    Please assist me with a table name which should have WBS status with date on which statis was changed.
    Thanks,
    Manish.

    Hi
    You can use program (SE38) RBSVCDOC to track these changes. Else go manually in CJ20N to track these status changes.
    Use JCDS and JEST table for any other reporting on it.
    *Kindly mark your thread once your query is resolved.*
    Regards
    Saurabh

  • Batch status change with UD

    Hi Everybody,
    I have a question about batch status change while taking UD. I understand that stock posting and batch status for each UD code is decided by the value in 'Posting proposal UD' field in Selected Set settings. I understand that I can customize the movement types for the values (eg VMENGE01, VMENGE02 etc) in config. But that is only for stock posting. From what setting is the Batch status decided eg. If we approve, the batch is unrestricted and if we reject it is restricted.
    Can I customize those values which are available in the drop down in the 'Posting proposal UD' ? Can I create a value of my own ?
    Regards,
    Manish Saraswat

    Manish,
    execute tcode QS51
    you will be able to see 'Posting Proposal UD' in "Selected Set ". Now select that line (Posting Proposal UD line). Status for Posting Proposal UD should be "Released"
    After selecting that line on left hand side there is " Dialog Structure " in that there is " Selected Set Code " Click on that.
    Complete list of code will come you can add and modify those codes.
    Hope now its clear to you.
    Edited by: tejasg on Mar 24, 2010 4:21 PM

  • Pictures in iWeb albums disappeared after change location of original files

    I created many albums in iWeb by dragging albums from iPhoto. But then I noticed some pictures from my iWeb albums disappeared after the original pictures got removed to another location (or deleted). How can I tell iWeb to make a copy of the pictures in iWeb itself so my iWeb albums can stay the same even when i need to reorganize the original files on the hard drive?
    Any suggestions on how to restoring my albums in iWeb? I am having a bit headache now. Thank you very much!

    That is not normal behavior. The photos should stay in iWeb even if you delete them from iPhoto. Are you running a "referenced" library or a "managed" one?
    Click to view full size
    Managed is the default option. If you're running a reference library that may be the reason. If so contact Apple via http://www.apple.com/feedback/iweb.html and http://www.apple.com/feedback/iphoto.html.
    Unless you have a backup of your domain file predating the loss of the photos I don't know how you will recover the photos.
    OT

  • System status change with delegated standard object

    Hi everybody,
    I delegated BUS2005 (production order) to ZBUS2005 and created a new event based upon the system status MANC (I0420). It works fine when I use my custom object ZBUS2005 in BSVZ and this event is successfully triggered. But when I change this object to the standard object BUS2005 in the same transaction BSVZ, the event is not triggered. BUS2005 has been already delegated to ZBUS2005.
    Can somebody kindly tell me how this can be fixed? I want to see the standard object, BUS2005 in the trace, instead of my custom object.
    Thanks,
    Max

    Thanks Nishant,
    Well, I have created many events for other objects and delegated the objects.
    In all these cases, I can see the standard objects in the trace, not the customized objects. But in these cases, I didnt go for status change management.
    So, why dont I see the same standard object in the trace in this case of BUS2005? Even the setting in BAVZ has been done according to BUS2005, not ZBUS2005. So, I am expecting BUS2005 in the trace. Trace comes only when I change this BUS2005 to ZBUS2005 in BSVZ.
    Please give your comments.
    Thanks,
    Max

  • A script to change back to original file names??

    Hi,
    I'm looking for a script for iPhoto that will give some photos back their original file names?
    or any way of doing that?
    cheers

    I have used apple scripts to correct time and dates?
    can this cause a problem?
    Probably not - although iPhoto probably will not recognize the modified information - but it is not a good idea to modify anything in the iPhoto library except using iPhoto - iPhoto '08 and later have a command to modify date and time - I do not think iPhoto 6 did, although its been a ling time now
    LN

  • Changing date on original file

    After upgrading to imovie 10, I realized that all previous version media, which is stored on an external hard drive, somehow was modified so that the creation date was actually the date the media was imported into  the previous version of imovie.  I upgraded to imovie 10 with the purchase of a new mac, so the modification to the creation dates may have happened during the migration.  Many of the titles in these media clips have the actual creation or record date in the title when you look at them but when you select get info the actual creation date is different, it's the date the media was imported.  This causes a husge problem, because when the media is updated into imovie 10 the dates are off and correcting the dates for all media is very time consuming.  My question is:
    1.  Is there a way to automatically convert the dates to the orgional creations dates.
    2.  Is there a way that I can go into the orgional file in the hard drive and change the creation date to the correct date, as this would be much easier then correcting the media after it's updated in the new imovie version 10.  I have tried this under the "get info" screen when looking at the file, however, I see no option that lets the creation date be modified.
    Thanks,
    Dennis

    If you have had a look at your other post,
    Why does PSE10 change my file date to today?
    you may be able to spot what can have triggered the updating of the catalog. There are too many date types in the exif, some of them are misleading. What is really interesting for a scan? For me (familiy history, genealogy) it's the supposed 'Date taken' or 'CreateDate' to display file chronogically. The file date in the OS is useful for backups.
    It's possible that the date digitized has some meaning for you.
    If you want to compare the different dates shown by John R Ellis in the Organizer database with those you see in an exif browser (or the properties in the editor, or the information panel in the organizer), you have to note that the 5 types of dates stored in the catalog database are;
    -pse:FileDate
    -Pse:FileDateOriginal
    -xmp:CreateDate
    -pse:TagDate
    -pse:LastOrganizerModifiedTime
    What's important to troubleshoot  your problems is to find what operation triggers the updating of the catalog from the files or vice versa.
    That can be: Update thumbnail, Write Metadata to files or...

  • ODI send email with latest error file attachment

    We have kick-out/error file with the format *err.txt. Whenever error occurs the same gets overwritten by the latest file. We are attaching this error file on the completion of the job. If error file generates, everything is fine. But, on the successful run, I mean when there are no error file generation, it attaches the previous run error file.
    Anyone of you help me how to handle this situation. Is there any way to validate the file generation date before attaching the file.
    Thanks in advance
    Edited by: user12958295 on Oct 30, 2012 7:42 AM

    Hi,
    Thanks for the response.
    As of now we are following that as a workaround. However our client wants to avoid the manual work of delete/move/renaming the error file.
    Is it possible to check the file generated date with sysdate for attaching the error file by odisendmail.
    Thanks!
    BRM

  • .mov vs .mp4- what to do with my original files?

    I have a macbook air that im using Imovie 11.  After I import my gopro to Imovie, I'd like to get rid of the old .MP4 files, that imovie seems to convert into LARGER .mov files.  I don't know if I should keep my original footage from my gopro HD which are stored as .MP4 files. I'd prefer to throw them out, but don't know if I *should* keep them. 
    I am storing ALL files (both the original Gopro .MP4 files AND the converted imovie .mov files) on an external drive and I believe I'm doing things right in that department. I selected move, not copy, but the original .MP4 files are still there.
      If I throw out my old .mp4 files will I be sorry?  I'm not doing anything terribly important with them, just family footage, but I'd hate to get rid of the files and be sorry I did.

    Yeah, but unfortunately; I can't export the music from iTunes to a hard drive. That's the problem. I can only export to CD but then I'll have to use a million discs and I don't want to do that.

Maybe you are looking for

  • I have an unlocked iPhone 5 purchased from Europe and would like to use it on AT

    Hello- I purchased an iPhone 5 in Denmark where I live.  It works fine here and when roaming.  I travel to the US every month and therefore have a post-paid full AT&T account.   In fact it is a shared data plan and I spend about $700 per month just f

  • Install and time machine

    When I restarted my computer last week I lost much - two user accounts, my email, my photos and pretty well everything I had added to the orginal iMac. I took it to the apple store and they used Time machine from my back up hard drive to my computer

  • Skype number still not working

    I am have been subscribing to a Skype number, but when I call it an automated female voice answers the number despite that I have been trying to reset it by switching Skype privacy settings. When I call from Skype to my phone a caller id number that

  • Row count in FI_SL

    I am trying to get the row count for FI_SL cube by Company code. The result is giving me the count in two rows. When I sum up the two rows the result exceeds the total no of records obtained at the fact table level. This cube is storing Planned and A

  • Planning & HFM installation in 2 seperate servers

    Hi All, I would like to install Hyperion EPM 11.1.2. The requirement is to install Planning & Essbase in one machine and HFM, FDQM on other machine. Can you pls. suggest which machine that i've to install shared services and which one i've to opt for