Release of parked document affects other document types

Hello,
we are using the standard parked-vendor-invoice-with-workflow scenario in production since 1, 5 years.
Now we want to start using the parking function for customer invoices as well, but without release requirement and workflow.
For some reason the release scenario is automatically also activated for the customer invoices (document type DR) . I. e  the "release necessary" flag is set automatically in the workflow tab strip in the parked customer invoice and the workflow (for the vendor invoice scenario)  is triggered as well for the customer invoice.
We have configured a workflow variant and defined the document release as active from 1 SEK.  We have assigned the wf-variant to a company code.
An approval path has been defined and assigned to the workflow variant, release approval group and the document type KR (vendor invoice). The approval path is also assigned to a workflow.
We thought that by defining the document type specifically  in the assignment of the approval path to the combination workflow variant, release approval group and document type, we could restrict the release scenario to be activated only for a specific document type.  This does not seem to happen.  Is this a known bug?
Kind regards
Viveka Schwartz

Hi,
What is the OSS note?
Thanks,
Steph

Similar Messages

  • Moving documents to other document library using content organizer rule

    Hi Team,<o:p></o:p>
    I have created a content organizer rule to move documents from one document library to another.<o:p></o:p>
    I have two document libraries say Doc A and Doc B, where Doc A is a source library (where I will upload the documents) and a folder Fol 1 in Doc B is a target destination (where document should
    be moved). I got to know from one of the other posts is, Doc A should be involved in any of the content organizer rules to be able to move documents to Doc B.<o:p></o:p>
    Right now, I have not created any content organizer rule to involve Doc A. And, a folder Fol1 in Doc B is a target destination for my content organizer rule.<o:p></o:p>
    1. I have uploaded a document in Doc A and by using "Send To" command, I have send it to Doc B. This document properties fulfills content organizer rule condition. But still it stays
    inside Doc B only, and not moved to folder Fol1 automatically (which is expected, I hope so)<o:p></o:p>
    2. Now if I again update the properties of the document, it will still be inside Doc B only and not moved inside Fol1 <o:p></o:p>
    3. I have opened Doc B in File explorer using "Open with Explorer" command and copied a document inside Doc B. Now after refreshing Doc B, even though the newly added document fulfills
    the content organizer rule condition, it is not moved inside Fol1 automatically (which it should, I suppose)<o:p></o:p>
    Can you please help me with the queries above?<o:p></o:p>
    Many thanks up-front for your help and support.<o:p></o:p>
    Just for an FYI: The rule which I created is to check whether the document title is not Empty. If it is
    not, condition will be true.<o:p></o:p>
    Thanks,
    Vikas Mishra
    Vikas Mishra

    try these link:
    https://support.office.com/en-us/article/Configure-the-Content-Organizer-to-route-documents-b0875658-69bc-4f48-addb-e3c5f01f2d9a?ui=en-US&rs=en-001&ad=US
    http://www.boostsolutions.com/blog/how-to-create-content-organizer-rules-in-sharepoint-2010/
    http://community.office365.com/en-us/f/154/t/255043.aspx
    http://community.office365.com/en-us/f/176/t/252790.aspx
    https://support.office.com/en-in/article/Create-Content-Organizer-rules-to-route-documents-1e4d37a3-635d-4764-b0fc-f7c5356c1900

  • How to transfer textedit documents among other documents from my older macbook to my ipadair?

    I have an older macbook(10.5.8) model which contains various documents including textedit documents, how can I easily transfer them to my ipadair? I tried a few ways but wouldnt work! I hear emailing is the only solution, is this true!
    Thank you for your support!

    Hi Windspeed,
    Thanks for the question. Based on what you stated, it seems like you want to move files between a Mac and an iOS device. I would recommend that you read this article, it may be able to help you isolate or resolve the issue.
    Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support
    Thanks for using Apple Support Communities.
    Cheers,
    Mario

  • Copy static text from one MIF documents to other MIF document

    Hi All,
    I'm trying to copy the text frames and their contents from one document to other document.
    I"m following the bellow steps..!
    1. Open Template1.mif by F_ApiSimpleOpen()
    2. Create new document called "Template2.mif" using "F_ApiCustomDoc"
    3. Import the required formats by
    F_ApiSimpleImportFormats(Template2,Template1,FF_UFF_COLOR |FF_UFF_COMBINED_FONTS |FF_UFF_COND |FF_UFF_DOCUMENT_PROPS |FF_UFF_FONT |FF_UFF_MATH |FF_UFF_PAGE |FF_UFF_PGF |FF_UFF_TABLE |FF_UFF_VAR))
    4. Read the text frames from "Template1" and create new text frame in Template2
         pgfId = F_ApiGetId(FV_SessionId, Template1, FP_FirstFlowInDoc);
         while (pgfid) {
         //     create a new text frame in Template2
              tFrameId = F_ApiNewGraphicObject(Template2, FO_TextFrame, pFrameId);
              objGraphicId = F_ApiGetId(Template1, pgfId, FP_FirstTextFrameInFlow);
         //assigning the properties of text frames
              propspdf = F_ApiGetProps(docIdfrom, objGraphicId);
              F_ApiSetProps(docIdto, tFrameId,&propspdf);
    Till this step, it is working as expected.
    Next I need to read the paragraphs of each text frame and put only static text available in the TEXT FRAMES OF Template1 in newly crated TEXT FRAMES of Template2. But ignore the variables in the text frames.
    I tried to work with the following piece of code
         doc2PgfId = F_ApiGetId(docIdfrom, objGraphicId, FP_FirstPgf);
         doc1PgfId = F_ApiGetId(docIdto, tFrameId, FP_FirstPgf);
         while (doc2PgfId && doc1PgfId)
                   F_ApiDeallocatePropVals(&propspdf);
                   tispdf = F_ApiGetText(docIdfrom, doc2PgfId, FTI_String|FTI_PgfBegin|FTI_PgfEnd);
                   tisspdf = F_ApiGetText(docIdto, doc1PgfId, FTI_String);
                   n=tispdf.len;
                   n1=tisspdf.len;
                   for(i=0; i<tispdf.len;i++){
                         ti = &tispdf.val[i];
                         tiT = &tisspdf.val[i];
                         //compare the text type and handle each text item appropriately
                         switch(ti->dataType){
                         //handle normal free flowing text
                          case(FTI_String):
                           //F_ApiAlert("In String", FF_ALERT_CONTINUE_NOTE);
                           tr.beg.objId = pgfId;
                           tr.beg.offset = ti->offset;
                           trT.beg.objId = tr.beg.objId;
                           trT.beg.offset = tr.beg.offset;
                        F_ApiDeallocatePropVals(&props);
                        props = F_ApiGetTextProps(docIdfrom, &tr.beg);
                        F_ApiSetTextProps(docIdto, &trT.beg,&props);
                        name1=(StringT)ti->u.sdata;
                        textLoc=F_ApiAddText(docIdto, &trT.beg,name1);
            //textLoc.objId = pgfId1;
            //textLoc.offset = textLoc.offset;
            //if the text string is a part of a variable then
            //it would have been taken care of so ignore it
            break;
           case(FTI_PgfBegin):
                      pgfId = ti->u.idata;
                      pgfId1 = tiT->u.idata;
                      propspdf = F_ApiGetProps(docIdfrom, pgfId);
                      F_ApiSetProps(docIdto, pgfId1,&propspdf);
                       break;
           case(FTI_PgfEnd):
                 pgfId = 0;
                 pgfId1= 0;
                 textLoc.offset=0;
                 bPgfalive = False;
                 break;
         //Get ID of next pgf in frame
    where am I going wrong? Is there any simple way of doing it?
    How do I go ahead with this? Please help..!
    Thanks,
    Basav

    Hi Michael,
    Thanks for quick reply..!
    There was a piece of code which validates whether the text frame I needed exists or not. I intentionally removed so as to not to confuse the reader.
    Let me give you a clear picture that what I want to do..!
    I've a MIF file and XML file that has the details of text frames and its contents in the MIF. XML looks like
    <?xml version="1.0" encoding="UTF-8"?>
    <MyProjectXML>
    <TextFrame frame="fr18111dd"><P>Basava</P></TextFrame>
    <TextFrame frame="fr224362cc"><P>Prabhu</P></TextFrame>
    <TextFrame frame="fr2547"><P>5 Year Performance (US Dollar)</P></TextFrame>
    </MyProjectXML>
    My MIF file has more than 50  named text frames. Some of them are in XML file, like - fr18111dd, fr224362cc,fr2547. These text frames have the static text,variables and tables. [ Tables I've kept it aside to work later for now]
    What I need -
    Need a MIF file that has frames available in XML file and replace the variables with the values given in <P> tag and keep the static text as it is.
    I'm trying the other way now, Open the MIF file and delete all the text frames except the frames mentioned in the XML file and save as new file.
    Let me know if I'm doing anything wrong here..! That will save my time and effort.
    Am I clear on my query? and what I wanted to achive ? Let me know otherwise..!
    Thanks,
    Basav

  • Multilevel release of parked documents

    Hi,
    I need to create the workflow which is to be started once the parked document is set to complete.Based on company code, document type and approval limit, the approver will be determined.There are three levels of release based on amount of the document.How would i maintain the three levels of release.Please help me out.
    Thanks,
    Venkatesh.

    Hi,
    For the park document, there are 2 std. workflows available serial & parallel workflow.
    1) For you scenario, Copy the Serial workflow and modify it.
    2) The no. of levels & Approver has to be picked at the run time right
    3) Write a method to determine the level based on the amount.
    3) To pick the Approver Create rule, in the rule container pass the level & company and get the approver
    4) Then call the Rule in the workflow.
    Regards,
    Surjith

  • Posting of MIRO transaction with other document type

    Hi Every Body,
    We want to make MIRO with other document type for some particular transaction , not with RE , we have defined other document type VR , also number range but how to link it in MM part because MM number range same for RE and having provision for  only one number range . Can we define MM no. range also separate & other wise with same MM no. how we can linl VR doc type no. range..
    Please give some idea
    Thanks,
    Dharmveer

    Hi,
    Thanks for reply
    We mapped the system as suggested by you , but we get posting termination most of time while doing MIRO & changing document type VR in deatil tab in header part.
    Please suggest me, hoe we can create transaction variant of MIRO then we can process such activites apart from standard.
    Thanks,
    Dharmveer

  • VF02 error in Release Billing document to Accounting document

    Hello SAP Folks,
    A sales order (VA01) and corresponding billing document has been posted (in VF01). When I try to release the billing document to Accounting, an error "Incorrect document no. XXXXXXXX.  Select the document number between yyyyyyyyy and zzzzzzzzzzzzzz " shows up. When I tried to find error through VFX3, it says, Release incomplete due to "FI/CO interface" Can anyone suggest the missing configuration.
    PS:  I checked the doc. type RV (Billing doc. transfer) and Billing type F2. They are in different number ranges. and RV is marked external. The number range settings are similar as that of another Company code (where we are able to release billing document to accounting document).
    Thanks in advance,
    Narayanan

    Hi,
    Thanks for your suggestions. The issue is resolved by changing the number range for RV document type (though it is still external). I guess this is made external since the Billing document number is passed to FI document number when it is released to Accounting documet.
    After the release, both Invoice and Accounting document have the same no.

  • Parking of Special GL document

    Hi,
    I am trying to park a Special GL document (Employee Receivables) but i am getting the error message as "Special G/L transactions not defined for bills/exch.and down pmnts"
    Message no. FP030
    Diagnosis
    You have selected a posting key with a special G/L indicator of type 'Bill of exchange', or 'Down payment'. Document parking is not defined for special G/L transactions of the type 'Bill of exchange' or 'Down payment'.
    System Response
    Document parking cannot be carried out.
    Procedure
    Select a different posting key or special G/L indicator. If the posting is a 'One-time posting' to a rent contract, select a different transaction type or post the document directly.
    The scenario is : For medical expenses the Company will bear 80% and the remaining 20% Employee will bear. When ever the invoice received from External Vendor the entry is "
    Medical Expenses A/c Dr        800
    Employee Special GL A/c Dr   200
    To External Vendor A/c.                1000
    While posting this entry i am getting the above error. For each type of advance we created Special GL inidicators.Client wants to see the Medical Receivables separately in the Balance sheet.
    So i am not able to park special GL transactions in the system.
    Please give solution.
    Regards,
    Sree

    Hi!
    First of all check your entry,
    Through Which T-code you are going to post this entry. through FB60 it is not possible.
    This may you book through f-43 or f-02 and while enter to special gl entry debit side you have to select posting key 29 and select spl. gl indicator whatever u define.
    if above all are is OK then check your special GL setting in OBYR
    Rakesh

  • How do I save a pdf as a word document so I can type in it?

    how do I save a pdf as a word document so I can type in it?

    Hey David, add some security to it. You can even keep people from printing it if you want to, or even need a password to open it.
    J.R.

  • Unable to change gl account in purchasing document rows of item type(8.8 ve

    Hi all,
    In previous sap b1 version ,in purchase document rows of item type -- system allows to change the gl account in rows.
    But in current 8.8 it is missing ,can any one know how to activate this or is there any logical reason to lock this.
    Regards,
    Naresh K

    Hi Chandra,
    In some older version this was possible. This was changed as this is the stock account to avoid usage of incorrect account and valuation report issues.
    If you want a specific stock account for the item change you can define that on the item master data. Set it to Item Level and then change the GL account.
    Hope it helps,
    Jesper

  • How to make New Document and Upload Document to have same Content Type in Document Library in Sharepoint 2010

    Hi,
    How to make 'New Document' and 'Upload Document' to have same content type(Custom) in Document Library in Sharepoint2010.
    Note : I have created custom Content Type since I have custom columns along with upload column..
    Regards, Shreyas R S

    go to library settings 
    Change new button order and default content type
    set your custom content type to be #1
    when you upload new document it will automatically have your custom content type
    Hope that helps|Amr Fouad|MCTS,MCPD sharePoint 2010

  • BAPI to park G/L Account document with ledger

    Hi Experts,
    I have been looking for BAPI to park G/L account document with ledger (FV50L).
    Can you please let me know, if you have know about it.
    I have found the one for posting BAPI_ACC_DOCUMENT_POST, but It should not be used in our case.
    It is park G/L account document without ledger.
    Thank you in advance.
    Kyongkeum Im.
    Edited by: Kyoung Keun Im on Aug 13, 2010 1:11 PM
    Edited by: Kyoung Keun Im on Aug 13, 2010 1:12 PM

    Hi,
    There is not function module for that. I am using BDC to park GL document. For BDC parking you can use Function module -
    POSTING_INTERFACE_START and POSTING_INTERFACE_DOCUMENT.
    Sample Logic:
    Loop at header.
    populate header.
      loop at item.
       populate item.
      endloop.
    call function POSTING_INTERFACE_START
    call function POSTING_INTERFACE_DOCUMENT
    call function POSTING_INTERFACE_END
    BAPI COMMIT.
    Endloop.

  • Parking of outgoing payment document

    There is no option to park an outgoing payment document(F-53)...What can be a workaround...

    HI
    MJ
    There is no parking for outgoing payments and in comming payments  and other payments and receipts in SAP. it is only available for invoices (ALL)
    payments means it has all authorization and full data that why it has no parking
    trinadhnaidu.a

  • How to find PDF files that have other documents bundeled within them?

    Hello guys
    I need help with the following: we have a huge number of PDF files that have other documents imbedded (bundled, attached) in them. If such a document is open in Acrobat, bundled files show up as attachments on the left. Some of those attachements are .mdi files. This is Microsoft Document Images files. Is there a way to flag PDF's that have those .mdi files in them? I need to find them and convert to PDF. If I need to be more descriptive please ask, and thank you in advance for help.

    Preflight is a complex plugin, it's hard to explain how to use it in one forum post. You need to read the documentation carefully.
    There's no pre-built profile for what you want, so you would first create a new Custom Check that compares the MIME type string of embedded files to what you're searching for (not the file extension but the full MIME identifier, which for Office files is a very long string). You would then place that new Custom Check into a new Profile, identifying it as an error condition. Once you've saved the Profile you can run it against a number of files and specify actions to be taken for pass and fail conditions, such as changing the filename or moving to a subfolder.

  • "Create Simple document" from other objects

    Scenario: Creating a document using option "Create Simple document" from other objects
    I have created a document type and defined the object link for Functional Location with option "create simple document"
    When clicking on create icon on the additional data tab on IL02 screen, The system asks for the document type and then the file to be uploaded.
    The document type that i have defined has the Description filed as mandatory field and hence i am not able to create the document.
    However, for the Document type when i set the description field as not mandatory the system creates DIR. But this DIR has no description.
    Please let me know if there is a BADI, using which i could set the Functional location name as the description OR if there is some enhancement by which the user is asked to enter the description when creating the document.
    Warm Regards,
    Vivek Mohankumar

    Hi Vivek,
    After my tests I would like to inform you that this is                  
    the standard system behavior as the document description field is       
    maintained as mandatory in transaction DC10. Please note that for the   
    simple creation of documents this should not be set as a mandatory      
    field.                                                                               
    The creation mode can be defined in transaction DC10 for each object    
    under 'Define object links'.                                                                               
    Please note that the value "1" for the creation of documents is used    
    to enable a user to simple attache a word file to an object             
    without going to the transaction CV01n. Therefore the system behaviour  
    is different then creating a document by CV01n and attaching a          
    file to it. With simple creation mode there should not be any           
    mandatory fields as the user cannot enter anything during the creation  
    process.                                                                               
    However, you can change the behaviour how the document is created by    
    MM02 transaction if you change the customizing in transaction DC10      
    like this:                                                                               
    If you maintain the value "2" for creation of documents, the user is    
    put to transaction CV01n and then the description can be entered. So    
    maybe this would solve the issue.  
    Regarding a useful BADI I can only recommned you to test BADI DOCUMENT_OBJ1,
    DOCUMENT_OBJ2 or DOCUMENT_MAIN01 for fill the description field.
    I hope this information could be useful for you and help to avoid the   
    mentioned error message.                                                                               
    Best regards,
    Christoph

Maybe you are looking for

  • What do I get "phishing" pop-up screens on a brand new install of Firefox?

    Something has infected my Firefox and I can't get rid of it. About a week or so ago, I started getting pop-up ads every time I go to a link in Firefox. I looked on the help blog and it said to do a "Restore to original settings". That didn't do any g

  • Restore my iPhone 4s to new

    Hi all not of my notifications are working so I want to restore my iPhone 4s back to new then put all my apps, photos, music back on after without restoring from a back up is this possible if so how plz

  • Dynamic Modification Rule (At Lot Level) In Quality

    Dear All Please explain me in detail how to use Dynamic Modification Rule (At Lot Level) In quality Module. Thanks & Regards Rahul Bhardwaj

  • Finder query return type..?

    I'm using a session bean ProcessBean and an entity bean AlarmBean.... where one of functions processor() of ProcessDataBean is like...... processor() println(.a..); println(..b.); correlate(); println(.c..); And correlator() is like:- correlator() pr

  • I cannot download anymore Movies & i have not used the 30 GB???

    Hi there. Please help. I have purchased several TV shows (12) from the i tunes Store and it will download only one at a time, ( and at a rate of about 5 hours per episode using broadband. On my ipod, I currently have 2 TV shows downloaded approx 506