Add new document in approval prodedure document tab

Hi Friends
I want to add new document like journal enteries in the Documents tab of approval procedures can i do this. Need solution asap.

Hi Richa Malik
As you know approvals is internal SBO mechanism and you can't change its behaviour at metadata level.
What i could suggest is to implement your own approvals for journal entries by yourself usin SDK.
How it can be done:
- add UDF to JE - that will store the status of JE (confirmed/redused)
- implement using UI trigger on Add-action
- refuse Add action in case of any specific condition and save JE as Journal Voucher + send message to user which has to confirm JE
- implement some logic regarding UDF of JE (user1 and user 2 can confirm it, others can't, for example)
- user can save Voucher as JE only if it is confirmed
something like this..
HTH

Similar Messages

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How do I add new fields to the 'Customer Data' tab under the BP

    I had previously found a screen in the SAP GUI to add fields so that they would show up on the 'Custmer Data' tab under the Business Partner screen. I thought it had been somewhere in se80 but I cannot find it again. Does anyone know where this is? Thank you!

    Hi Mark,
    You can do this using transaction EEWB. This is the Easy Enhancement Workbench.
    within this, you can use the wizard which will guide you through a step by step process to add the fields you need. Basically, there are 2 ways to add new fields  :
    1. Add new fields - this adds fields to table BUT000, but places the fields on a new tab called 'Customer Data'
    2. Add new attributes table - creates a new table and links it to BUT000 using the partner number.
    Hope this helps you.
    Cheers,
    Rishu.

  • Add new field in Work Order Component Tab

    Dear Experts,
    Really need your advice to solve my client requirement related to Work Order. The requirement is to put status code and estimated date of returned material in WO Component Tab.
    And because we almost use all of fields in Component. So i'm trying to know, is there any configuration (in SPRO - if any) by adding new custom fields in Work Order (WO) Component Tab?.
    Or is there any enhancement (EXIT) to add new fields in WO?
    Please advice.
    Thanks.
    LN.

    Hi Anthyodaya,
    Try this screensexit not sure if this is what you are looking for
    EXIT_SAPMV45A_001( Take help of ABAP for this)
    Hope this helps.
    Thanks and Regards
    Rohit
    this Question is raised by you twice..please close one.

  • Add new document links to UDO

    Hello,
    I have created a UDO from an RFX and am now am trying to link the 2. I want to add a link in the RFX to the UDO and in the UDO to the RFX.
    I have added the link from RFX to UDO as follows:
    linkCollnRFX=doc.getDocumentLinkList();
         newMember=linkCollnRFX.create();
         newMember.setDisplayName("Test Link");
         newMember.setLinkDefinitionType(new DocLinkDefinitionTypeEnumType(1));
         newMember.setLinkDocObjRef(udoBean.getObjectReference());
         relnHome =IBeanHomeLocator.lookup(session, DocumentLinkDefinitionIBeanHomeIfc.sHOME_NAME);
         relnBean = relnHome.findUnique("RelatedSRF");
         newMember.setLinkDefinitionObjRef(relnBean.getObjectReference());
         linkCollnRFX.add(newMember);
         //save the document
         doc.getIBeanHomeIfc().save(doc);
    I need to the same thing for the UDO. UserDefinedBizDoc1IBeanIfc has getAllDocumentLinks() which returns CollectionIfc. CollectionIfc has no add method. Can someone please help me understand how I can add to this collection?
    Thanks,
    MP

    Thanks Baski,
    getDocumentLinkList()  is not listed in UserDefinedBizDoc1IBeanIfc. I anyway tried and as expected got the following error
    Error in method invocation: No args method getDocumentLinkList() not found in class'com.sap.odp.api.doccommon.userdefined.UserDefinedBizDoc1IBeanImpl' : at Line: 30 : in file: inline evaluation of: ``import com.sap.odp.api.doccommon.userdefined.*;  import com.sap.odp.api.doccommo . . . '' : udoBean .getDocumentLinkList ( )
    I also already tried casting this yesterday, I tried the following 3 methods, and all gave me the same error listed below.
         linkCollnUDO=(AssociativeCollectionIfc) udoBean.getAllDocumentLinks();
         newMemberUDO=linkCollnUDO.create();
         linkColln=udoBean.getAllDocumentLinks();
         linkCollnUDO=(AssociativeCollectionIfc) linkColln;
         newMemberUDO=linkCollnUDO.create();
         linkColln=udoBean.getAllDocumentLinks();
         AssociativeCollectionIfc linkCollnUDO=(AssociativeCollectionIfc) linkColln;
         newMemberUDO=linkCollnUDO.create();
    2011-10-13 08:34:43.459     ERROR     local4     ScriptManager     executeToolbarScript     RequestHandler.RqThread: tb_script     4D37565E1B5A849F12847A27A8ED6F5E     #abc.context.id#     abcadmin               Toolbar (rfx.RFXDoc. ABC1) script exception: ID: Illegal cast. Cannot cast com.sap.odp.api.doccommon.userdefined.UserDefinedBizDoc1IBeanImpl$1 to com.sap.odp.api.ibean.AssociativeCollectionIfc
    Am I doing something wrong? Can you help me to cast this properly?
    Thanks,
    MP

  • Document Search - how to add new document with link to ALL

    CRM 5.0,  can easily add documents in the ICWC under the Document Search or gui t-code CRM_KW but the linkage is to me.   How can I change or create the link to to "ALL" so all users can find them in the search.

    Hi Glenn,
    Just to clarify for other readers, I assume you are referring to the document search functionality in the Interaction Center that uses Content Management to search for documents and link them to the current business transaction, the current account (business partner) or the current agent/user?
    I am not aware of any out of the box method for linking a document to all CRM users or agents. But if you want to have a look around at the code, I think the class and methods you might want to start with class CL_CRM_IC_CUCOCM_IMPL method REGISTER_*.
    Maybe someone else has an idea how to link multiple users/agents (e.g. all users belonging to a particular org unit or profile) at once, instead of only linking the current user/agent?
    Warm regards,
    John

  • Requirement to add new Document data restriction Field in OLI8BW

    HI
           I need to fill in Set Up Tables for 2LIS_12_VCITM (Deliveries) in source system. I want to restrict data only to past 3 years (2008-2010). Currently i dont have an option to select year in the Document Data Restriction area of the statistical set up screen. Please let me know how to add a year field in this area to restrict the data.
    Thanks much.

    HI
    for this requirement customization is not possible.
    Regards,
    Chandra.

  • VideoPlayer.aspx page--how to add an element on page that allows to "Link to a Document" rather than "Add New Document"

    Hi All,
    We have SharePoint 2013 and are setting up a Video Library. The Video Player page is great, but rather than adding documents to this page, and have them go into a folder called "Additional Content" we would like to add an element to the page that
    would allow us to link to documents already on SharePoint so if something gets updated, then we don't have to worry about uploading documents in both places. However, because this is a Document Set, if I add a web part to the page (Content Query in this case)
    and then filter documents to the content query--it applies the content query and its filter to every single video's video player page.
    Anyone know of a way around this?

    Hi,
    According to your description, you might want to enable users add the links to documents in SharePoint Libraries in the “videoplayerpage.aspx”.
    The available OOTB features won’t be capable of your requirement, a possible workaround is that we can use JavaScript with JavaScript Client Object Model to achieve it programmatically.
    With JavaScript, we will be able to generate the controls needed in the “videoplayerpage.aspx” to provide users the abilities to get a link to a file in a SharePoint Library and
    display all the selected links in the current page;
    With JavaScript Client Object Model, we can save/read/update the related links of different video files in an extra list based on the ID of a video file. Also, it will enable us
    to query all the documents in all libraries in the current site.
    More information about JavaScript Client Object Model:
    How to: Create, Update, and Delete List Items Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185011(v=office.14).aspx
    Common Programming Tasks in the JavaScript Object Model
    http://msdn.microsoft.com/en-us/library/office/hh185015(v=office.14).aspx
    About how to
    modify the HTML source of a page using JavaScript:
    http://www.w3schools.com/js/js_htmldom_html.asp
    http://njarb.com/2011/06/update-html-content-using-javascript/
    It won't be an easy job to make all these things working together, therefore, a fact you might want to take into consideration is that more time and effort would be required to
    make it works.
    Feel free to reply if there any question about my suggestion.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • How do I add new document?

    I'm trying to figure out how to copy and paste from notepad to create to PDF?

    The Adobe Reader does not support creating PDF. Best you could do is copy text and copy it into an Annotation (after creating an annot).
    Pat

  • How to add new value in Classification under General tab via MM02.

    Hello Experts,
    I've a requirement where I need to add a new material variant configuration value via MM02 as highlighted below. I've also attached the screen shot of CL02, the two characteristics which I need to add (highlighted in red).
    Can please anybody tell me the steps to add value in Classification under General tab via MM02.
    Many thanks in advance.

    zero cool,
    Use transaction CL02 , open class in PCL_222_PURO_BOX with class type 300
    add characterstic
    PCH_COSTING_WGT_DETERM
    PCH_COSTING_WGT_A_DETERM
    save it.
    Now use MM02 and go to classification view , now you would be able to see these characterstic there.
    Check and come back.
    Thanks
    Ritesh

  • Add new status values to "documentation tab" in solar02

    HI,
    I want to add new status values for the documentation tab in solar02.
    can anyone tell me the process for the same?
    thanks,
    basis admin

    Hi,
    If you're reffering to the documents status you can define custom ones at:
    Transaction SPRO
      button "SAP Reference IMG"
        Navigate through:
    -SAP Solution Manager Implementation Guide
      -SAP Solution Manager
        -Cross-Scenario Settings
          -Document Management
            -Status for Documents
    options:
    *Define Status Values for Documents
    *Assign Status Values for Read Authorization
    *Define Document Status Schemes
    *Assign Status Scheme to Documentation Type
    Please read these Steps and you'll be able to configure these status.
    Kind regards,
    Fabricius

  • How can I add new documnet

    Hello
    My English ability very poor sorry...
    I want to insert(add) new document into old document
    so I did like below
    doc.getDocumentElement().appendChild(structureDoc.getDocumentElement());
    but it is not operating...
    help me

    no problemo, you have to use the importNode method:
    doc.getDocumentElement().appendChild(doc.importNode(structureDoc.getDocumentElement(), true));

  • Is it possible to add new delivery schedule with bapi_change_po?

    Hi all,
    We're able to update PO existing line item and delivery schedule date with BAPI_CHANGE_PO. However we can't find any way to add new delivery date (under delivery schedule tab, in PO) for multiple delivery schedule scenario.
    please advise is it to do so with BAPI_CHANGE_PO or we should try other approach to do it. Thanks.

    Use the BAPI "BAPI_PO_CHANGE".  New delivery schedule information can be filled in the structures POSCHEDULE & POSCHEDULEX.
    poschedule-po_item = <item_number>
    poschedule-sched_line = <new schedule Line>.
    poschedule-delivery_date = <delivery_date>.
    poschedule-quantity = <schedule quantity>.
    append poschedule.
    poschedulex-po_item = <item_number>
    poschedulex-sched_line = <new schedule Line>.
    poschedulex-po_itemx = 'X'.
    poschedulex-sched_linex = 'X'.
    poschedule-delivery_date = 'X'.
    poschedule-quantity = 'X'.
    append poschedulex.
    Regards
    Vinod
    Edited by: Vinod Kumar on Apr 21, 2010 11:35 AM

  • Add New Screen Fields in Delievery Line Item

    Hello All,
    We have a requiremnet where we should add 3 custom fields to delivery line item tabs,
    please let me know how I can add a new tab for delievry line item tabs and how to add new custom screen fields in that tab,.
    Thanks
    Add New Screen Fields in Delievery Line Item
    Edited by: kishore_99 on Dec 8, 2009 5:31 PM

    No, I won't explain it in detail - you need to read the documentation and at least make an attempt at the process on your own first.  The documentation is right there in the IMG where I said it was but here's the path since you can't find it:
    Logistics Execution -> Shipping -> System Modifications -> Business Add-Ins in Shipping -> BADI for Additional Item Detail Screen...

  • Is the 'add new page' button working? (SG CC)

    Anyone else having issues with the add new page button under the look tab?  When I click it, instead of being able to add a new page with my custom looks or reopen any of the example folders, it makes a copy of whatever page happens to be selected.  I feel like I'm missing something because I don't remember encountering the problem with CS6.

    Answered my own question.  I was in "Quick View Mode" not "Look Management View Mode".  From the right view you can navigate to the folder you want displayed. /winning

Maybe you are looking for