Changing document name per approval stage

Hello All,
I need to use the Purchase Order interface both as a Purchase Requisition and a Purchase Order.
Basically, I have setup an approval stage for PO. Before the approval takes place, the document is considered a PR and post approval a PO.
Since, we can create separate print layouts for PR and PO, can the print layouts be tied to the documents approval stage ?
That is, till such time the PR is approved, only the PR layout is printable, else the PO layout becomes printable automatically.
Please throw in your ideas too.
Cheers.

When you send purchase order(ie)(purchase requisition) for
approval document is saved as draft,You can print document
with draft watermark which can be identified as purchase requistion.
After approval purchase order can be printed automatically
Wile adding.
This can be achieved by setting user defaults(Administration>Setup>Users)in which we can set it for a user to print purchase order while adding the document.
Jeyakanthan

Similar Messages

  • 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

  • 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

  • Change document name in event receiver

    I need to rename a document during an ItemUpdating or an ItemUpdated event. Either one would be fine. When my user changes the file name, I want my code to set it to something else. In the examples below, I am trying to set it to a silly constant value.
    If I can get this to work, I'll change it to use something meaningful.
    Is there any way to change a document's name in an event receiver? I have tried using ItemUpdated (with <Synchronization>Synchronous</Synchronization> in elements.xml). I have tried this:
    public override void ItemUpdated(SPItemEventProperties properties)
    using (DisabledEventsScope scope = new DisabledEventsScope())
    base.ItemUpdated(properties);
    try
    properties.Web.AllowUnsafeUpdates = true;
    properties.ListItem.File.Properties["FileLeafRef"] = "FOOFOO.docx";
    properties.ListItem.File.Update();
    properties.Web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    properties.ErrorMessage = "Document cannot be renamed." + ex.Message;
    properties.Status = SPEventReceiverStatus.CancelWithError;
    //base.ItemUpdated(properties);
    I have also tried this:
    public override void ItemUpdated(SPItemEventProperties properties)
    using (DisabledEventsScope scope = new DisabledEventsScope())
    base.ItemUpdated(properties);
    try
    properties.Web.AllowUnsafeUpdates = true;
    properties.AfterProperties["FileLeafRef"] = "FOOFOO.docx";
    properties.ListItem.Update();
    properties.Web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    properties.ErrorMessage = "Document cannot be renamed." + ex.Message;
    properties.Status = SPEventReceiverStatus.CancelWithError;
    //base.ItemUpdated(properties);
    And in that last one, I also tried setting properties.ListItem["FileLeafRef"]. I have also tried putting the base.ItemUpdated line after my logic (where you see it commented out above).
    Nothing works. No errors are thrown, but the document name stays the way the user set it.
    Leigh Webber

    There's three things you have to do in order to update the name properties:
    Assign properties.ListItem to a variable
    Update the BaseName field
    Update the Type field (if you wish to change the extension)
    public override void ItemUpdated(SPItemEventProperties properties)
    EventFiringEnabled = false;
    base.ItemUpdated(properties);
    var item = properties.ListItem; item["BaseName"] = "BarBar";
    item["Type"] = "docx"; //If you need to change the extension
    item.Update();
    EventFiringEnabled = true;
    This should fix your issue

  • 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 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")

  • Changing shopping cart in approval stage-SRM 5.0

    Hi All,
    I am facing an issue in Integration environment. It is working fine in Dev.
    Even if the security level at user details is defined as "Low" (2), user is not able to change the shopping cart in approval status (via Check Status, in case of requester or via Approver Inbox, in case of approver).
    Change button is not appearing in the check status.
    I checked following SDN blog but this is not helpful as it is working fine in Dev environment witout deactivating this BADI or implementing it as detailed in this blog.
    http://wiki.sdn.sap.com/wiki/display/SRM/Changingshoppingcartinapproval+stage
    Can someone please let me knwo if I am missing some configuration? Helpful answers will be rewarded. Thanks
    Regards
    Kapil

    Resolved with OSS note- 1397705

  • Authorizer cant change document request for approval

    Hi ,
    Is there any methods to enable the Authorizer to change the A/R Invoice that sent for their approval.
    E.g. Change the Unit Price, GL Code or add more items
    System Info: SBO 2007A PL 45

    HI Experts,
    I have a similar requirement, we have configured a one level approval template with a single authorizer. After the draft is sent from the originator and before the approval is done by the authorizer any attempt at changing the data in the draft returns an error stating "the draft is in approval process" however after the the draft is approved the authorizer is unable to change the document.  The requirement is, during approval process, the authorizer has to make corrections in the document if any..... please let me know if there are any settings that needs to be checked for this to occur.
    tha

  • 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.

  • How to display list of TCodes with Change Documents enabled

    Hi
    I have 42 transaction codes (e.g. QA11, QA12, QE51N, QE01, QE02, MM01, MM02) and I want to verify if "change document" logging is enabled for the critical data elements in these transactions. 
    I'm aware that you can individually check "change document" setting per table via SE11 > Enter Table Name > Technical Settings > “Log Data Changes” option.   Given the number of transactions (with multiple data elements) I need to check though, is there a  table in SAP where the field, table, tcode and existing change document setting can be viewed?
    Thanks
    T-code
    Description
    MM01
    Create material
    MM02
    Change material
    ME01
    Maintain source list
    MSC1N
    Create batch
    MSC2
    Change batch
    QA01
    Create inspection lot
    QA02
    Change inspection lot
    QA11
    Record usage decision
    QA12
    Change usage decision
    QA14
    Change usage decision without history
    QA16
    Collective usage decision for OK lots
    QA32
    Inspection lot selection
    QAC1
    Correct actual quantity in inspection lot
    QAC2
    Transfer inspection lot quantity
    QAC3
    Inspection lot – reset sample calculation
    QE01
    Record results
    QE02
    Change results
    QE51N
    Work list: results recording
    QM01
    Create quality notification
    QM02
    Change quality notification
    QP01
    Create Inspection Plan
    QP02
    Change Inspection Plan
    CS01
    Create BOM
    CS02
    Change BOM
    CC01
    Create Change Master
    CC02
    Change Change Master
    SU01
    Maintain authorizations
    SE38
    Execute program
    COR2
    Change process order
    CC22
    ECM Change Object Management Records
    MMDE
    Delete all materials
    COR1*
    Create process order with material
    QA08*
    Mass change of quality management inspection data
    C201*
    Create Master Recipe
    C202*
    Change Master Recipe
    C298*
    Deletion of Task Lists without Archiving
    QPR4*
    Process Physical-Sample Drawing
    COEBR*
    Batch Record Approval
    QPR1*
    Create physical sample
    QPR2*
    Change sample
    CV01N*
    Create Document
    CV02N*
    Change Document

    hi Raphael,
    you can also use following two table to view the change log at data element level:
    CDHDR - Change document header
    CDPOS - Change document items
    e.g. give the table CDHDR in SE16N enter your transactions field "TCODE", and date parameter, you can see the results.
    Regards
    Javed

  • How do I change my name as it appears to people receiving my emails?

    I used to have my nickname show with MobileMe, but now it is my full name and I can't font where to change it.

    Right. But the question is where/how to change my name. You've answered my question by telling me I need to do what I am asking how to do.
    Where exactly is the "Apple ID Manager"?
    I found and have changed my name per device. It's fairly hidden. So, to partially answer my own question on the iOS devices:
    Settings: iCloud (or mail, if using a subaccount for mail): Account (at the top): Advanced-Mail (at the bottom): Name.
    iCloud web site: log in: mail: settings (gear): advanced: place cursor in greyed out name and type to change it.
    OSX Mail: Preverences: Account: Account Info: Name

  • Where do we put authorised user name for approving DMS document in DMS work

    HI
    I am on a support role and here is a document creation through DMS and it goes approval for 4 level , upon each level mail trigger to the user id (approval authorised person) .
    now company changed the users for approving authority , so i have to change the authorised person name . can some one help me where to go to change their name in DMS.
    thanks in advance

    Hello,
      you should run transaction SUIM - User information system: then select the row "Roles --> By authorization values": in the field that will show up enter the name of the authorization object, that's to say C_DRAW_STA, then press the button"Entry values", put the Document type and the document status, then execute. The list of the roles containing that authorization object, with the values you are intersted in, will be displayed: then you have to enter in each role, open the tab "User", and there you will have the list of the users with the authorization to put that status for that document type. There you have to enter the name of the new user that shoud perform the release of the document.
      However you should also check if any SAP workflow task is  implemented to follow up the release steps.
    Best regards,
    Andrea

  • Can we change the name of reassign button in sharepoint 2010 approval workflow?

    can we change the name of reassign button in sharepoint 2010 approval workflow?
    Shazil Ali

    Yes, we can change it. Steps are as follows: 1. Create the workflow in SharePoint Designer 2010 2. Use Start Approval Process action 3. Write your logic and all setting as per you requirement and then publish the workflow once. 4. After this, click on
    the workflow name and there you will see the sections as Workflow Information, Customization, Settings, Start Options, Forms. Here you will see a form under Forms section with a name of Approval_x00....... with a type "Task". Click on this form. This form
    is an Infopath form that opens up when a task is to be edited (Task Form). This form will open up in Infopath (provided you have Infopath installed on your system) It may ask you the crendentials for security. 5. The task form will open up in Infopath for
    editing. Click on the Reasign button and in the top left corner in the ribbon section is the field (Label) having text as "Reassign Task". Change this and then save and publish the form.Publish the workflow once again.

  • Approval Stages- Marketing Documents

    Dear All
    I am working on SAP Business One 8.81 PL 06 and SAP Business One 8.82 PL00 (Test Enviroment)
    In both the version approval process is not working . I defined Approval stages, Template and condition as Always.
    Please let me know is there any changes are made in those version. Consultancy issue ?
    Thanks & Regards
    Ashish Gupte

    Hi,
    Check the following document to be sure that the steps you are taking are correct with respect to approval procedure :
    [Approval Procedure|https://websmp202.sap-ag.de/~sapidb/011000358700001075022009E/HowTo_AppProcedures_2007.pdf]
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Error while approving change document(TR lost project code)

    Hi All,
    I am having issue in change document approval, when we are approving change document for unit testing or if release management approving change for pre-production or production approval, we are getting error, I started coming from last two days only,\
    when I did detail analysis,  in all transports project code related to change document, disappear
    although if I create new change document, project code appear,
    Do we have  way to solve this issue?, I even not able to decouple the transport from change document, it giving error, do we have way where we can resync change document and transport?
    Dinesh

    Hi All,
    Do anyone have some solution for this issue?, it  is bigger than I thought, I can check it impacted all systems, and all transports,  all transports seems to issue they lost project code in it we rollover maintenance cycle last week and this problem started from their, we put charm master note and few other charm fixes(notes) last week,
    this problem not coming any new change document, but all change document created before rollover impacted
    Dinesh

Maybe you are looking for

  • Error in updating schema in SSM 7.0

    Hi, When I am updating schema in SSM 7.0, I am getting below error: An Error has occurred in the scipt on this page. Line:     67 Char:     3 Error:     'out1.1' is null or not an object Code:     0 URL:     http://<server:50000>/strategy/bi/admin_bi

  • Does Livecyle Designer come with Acrobat 9?

    I have been using Acrobat Pro 8 and Livecycle Designer. I'm have made over 100 forms using Livecycle Designer. I need to update to Acrobat 9 (as part of Design Suite) right away. Will Livecycle Designer be there with Acrobat 9? How will I edit all of

  • How do i post photos from iphoto to a facebook group instead of my own page?

    I know how to post photos from Iphoto to my Facebook page, but cannot find a "simple" way to post photos in Iphoto to a Facebook "group" of which I am a member. Any suggestions? Thanks

  • [WRT160N] Accessing the router_status page through apply.cgi (Curl)

    Hi everybody, This is my first post here so I hope I'm writing my topic in the good section. A few days ago, I changed my ISP and went from a static public IP adress to a dynamic one. I need to access to my home LAN through the internet, so I have to

  • Recovering Keywords Bridge CS4

    My hard drive crashed and I've replaced it with a new one and upgraded the O/S to W7 from XP MCE at the same time.  I've recovered my PSD's, JPEG's & camera raw (canon CR2) images from the old drive and when I started Bridge in the new install but mo