How to copy Base Document Series to Target Documet

Hi Experts,
i have a multiple series of document
when i select one of them in PO and then copy this  PO to A/P Invoice
then this series is not get copied to A/p Invoice,
so how to copy this series to target document
please help me
find the attachment
thnaks

Hi Navanath,
By Setting up Series User wise for every Users, You can achieve your goal.
you can set Series User wise from below Path : Administration >> System Initialization >> Document Numbering
After following Path, double click on Document Name No then another window will get open when you can create Series and also make that Series default according to user.
For doing Series to Default for any user, Select that Series which you want to make Default than Select "Set as Default" Option from right Lower Corner of the window.
When You Select one Option from Below Screen Shot
Select Last Option i.e. St as Default for Certain User. As soon as you will Select last Option then a new window will get open to Select Users.
Select Users for that Series and Click on Update on Left Lower Corner of the Form.
This Process you need to follow for every User for whom you want to assign Series for their transaction Identification.
Hope this will help
Regards:::::
Atul Chakraborty

Similar Messages

  • Please help! -5002,Base document card and target document card do not match

    Hi
    When I try to save an invoice with a payment thro' the DI API I get the following error :
    <b>-5002,Base document card and target document card do not match</b>
    Why am I getting this error and how can I solce it?
    Thanks

    Hi,
    For the sake of anyone else who has this problem:
    After much searching for the answer to why I was getting this message I found that the internal validation must be case sensitive and so 'C00417' on the receipt was not matching 'c00417' on the invoice.

  • PO from SO via DI API:Base document card and target document card do not ..

    HI All,
    I am trying to create Purchase Order from Sales Order. This is possible by GUI (on Sales Order on logistics tabs Click On Purcase Orders CheckBox.
    I got the error message: -5002-Base document card and target document card do not match.
    The message itself can be understandable, because the Customer and Supplier has a different CardCode.
    I am sure I am using a correct code
    oPo.Lines.BaseType = BoObjectTypes.oOrders
    oPo.Lines.BaseEntry = sDocEntry
    oPo.Lines.BaseLine = iLineNum
    Where oPo is a Purchase Order document.
    sDocEntry is a Sales Order docentry and iLineNum is a Line number of Sales Order
    For other A/R to A/R and A/P to A/P documents are working fine.
    Has anybody found this error or has anybody created application like this?
    I am using sbo2007PL46
    Regards,
    J.

    Hi guys,
    this is still on the suggestion page:
    Link existing Purchase Orders to (Sales) Orders via DI API : View Idea
    I tryed with 9.1 PL 4 and it didn't work.

  • Incoming Excise document automaticaly show the base document Series ans Do

    Dear All,
    One of my customer  have two branches and for that they  created them as two separate warehouses. And both branches are excisable unit. So when they  are transferring inventory from one branch to other which are excisable so they have to raise Excise invoice based on Inventory Transfer.
    They require in an incoming Excise document automatically show the base document Series and Docnumber  in a  "Excise Ref No."  field .
    pl provide me FMS query .
    regards
    Rakesh

    Bom dia Marc de Ruijter,
    Não dá para ler sua thread, mas imagino que seu validador esteja desligado.
    No GRC vá em SPRO --> SAP GRC Nota Fiscal Electronica --> Configure System Response for Each Tax Number (CNPJ)
    Para ligar/desligar o Validador basta clicar no check box na coluna Validation.
    Observação: Para correto funcionamento do GRC deve-se sempre utilizar o validador ligado.
    Após isto refaça seu teste, é provável que você receba um erro de validação para a NF-e. Veja em GRC Web monitor -> NFe Detailed View -> Validation History.
    Atenciosamente,
    Fernando Da Ró

  • Base document card and target document card do not match

    I ran into this error "Base document card and target document card do not match" while uploading Outgoing Payments too AP Invoices.
    The CardCode of the Invoice matches the CardCode of the Payment so it's not that issue. I can't seem to fix this error.
    Any input would be helpful.
    Here's screenshots too
    OVPM - Payments
    VPM1 - Payments_Checks
    VPM2 - Payments_Invoices

    Hi,
    For the sake of anyone else who has this problem:
    After much searching for the answer to why I was getting this message I found that the internal validation must be case sensitive and so 'C00417' on the receipt was not matching 'c00417' on the invoice.

  • Journal entry series based on base document series

    We defined series starting with 141 and 142 for two locations for almost all document types. When I post a document (A/P invoice or outgoing payment or any other), the journal entry is getting posted with default series (141) instead of being based on the Origin document series (141 for 141 and 142 for 142). Is there any way to configure this?

    Hi,
    JE numbering document can not base on origin document. But they can be set default by user only. That is system behavior.
    Hope this helps,
    TVSon

  • How to copy CO Document Number Ranges in KANK.

    hi , experts
    I need to config CO Document Number Ranges in KANK.
    I want to copy the existing group and elements from controlling area 0001 (provided in SAP) to my controlling area.
    But, there is an error message saying that my controlling area and the controlling area 0001 have different elements and thus can not be copied.
    Why is that?
    And, how to copy it so I can have the same groups, intervals, and elements with controlling area 0001?

    Hi
    Assign the object first, before copying the number range.
    Like for
    Primary postings                                       01.......................
    COIN CO Through-postings from FI
    KAZO Down payment
    Planning transactions                     02........
    FIPA Payment scheduling
    KAZP Plan cost center accrual
    KOAP Plan settlement
    KPIV Actual cost distrib. cost obj.
    KPPB Standard cost estimate
    SKS

  • How to copy a document from one CM Repository to another CM Repository?

    I am trying to build a UI Command that similiar to the standard "Delete" UICommand, but the only thing is before the document get deleted in the current repository (say Default  - it is a CM Repository with fsdb mode), it create a copy in another archive repository (say Default_Archieve - is is a it is a CM Repository with fsdb mode).
    Here is some portion of my UICommand class (it is a modification of the standard "delete" UICommand)
    Code Start----
    import com.sapportals.wcm.command.CopyResourceCommand;
    import com.sapportals.wcm.command.DeleteResourceCommand;
    private IRenderingEvent execute(IResource res) throws WcmException {
              String dispname = res.getDisplayName(true);
    //Here we copy the resource to another repository before the delete the resource in the current repository.
    CopyResourceCommand copyCommand = new CopyResourceComman();
    copyCommand.setResource(res);
    System.err.println("ArchiveResource:execute:" + dispname + " is set to be copied.");     
    String rid = res.getRID().toString();
    System.err.println("ArchiveResource:execute:rid=" + rid);
    String new_rid = rid.replaceAl("default","default_archive");
    System.err.println("ArchiveResource:execute:new_rid=" + new_rid);
    copyCommand.setTarget(newRID);
    copyCommand.execute();
    DeleteResourceCommand deleteCommand = new DeleteResourceCommand();
    deleteCommand.setResource(res);
    deleteCommand.execute();
    if (deleteCommand.failed())
    return new InfoEvent(StatusType.ERROR, deleteCommand.getMessage());
    if (sendDeleteEvent())
         return new DeleteEvent(
         StatusType.OK,
         getBundleString("xmsg_DeleteSuccessful",dispname));
         else
         return new InfoEvent(
                        StatusType.OK,
                        getBundleString("xmsg_DeleteSuccessful", dispname));
    Code End----
    If I change the target uri to be copied to the location in the same repository (default), this command work fine, it is just when it is copied cross repository, this cod doesn't work.
    Thanks fo advice.
    Kent

    Hi, Boris.
    I try to do it with subfolder path as following:
    Code----
    String newRID ="/mbcokm_archive/" + resource.getDisplayName();
                             writeln(res, "newRID= " + newRID);
                             copyCommand.setTarget(newRID);
                             copyCommand.execute();
    But still it does not take it.
    If I change it to some location in the same repository, like the following:
    Code----
    String newRID ="/mbcokm/" + resource.getDisplayName();
                             writeln(res, "newRID= " + newRID);
                             copyCommand.setTarget(newRID);
                             copyCommand.execute();
    So, I am pretty sure that something to do with the cross repostory copy.
    I am trying to use the standard API to copy the resource, instead of using the com.sapportals.wcm.command.CopyResourceCommand.
    Do you think you can do some testing on cross repository testing, and see how it will look for you.
    Thanks a lot.
    Kent

  • How to copy a document and paste in pdf form

    I have an email that I copied. I need to paste to a document in PDF form. Does any one know how I am to do this?

    Hi shortcake61,
    Do you want to create a PDF from the email? Or add the content of the email to an existing PDF file? In either case, you can use Acrobat to do the job. If you don't have Acrobat, please feel free to give it a try. You can download a 30-day trial form http://www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • How to copy word document with bullet to email body without any changes

    when I paste word doc to mail body symbols all are changed..

    when I paste word doc to mail body symbols all are changed..

  • Based document series need to be copied to target document

    Hi,
    There are 4 document series for every marketing document as Manufacturing - Series 1, Trading - Series 2, Retail - Series 3, Wholesale - Series 4, Shoppers - Series 5.
    Now User A is been given permission / authorization for document series 1 and 2 which is for Manufacturing and Trading and user B is given permission for document series 3,4 and 5 for Retail, Wholesale and Shoppers. Now when user B makes a sales order in say Wholesale which is document series 4 and then makes a delivery based on the sales order it is seen that in delivery note he has to again select the document series manually which is series 4 Wholesale. Why it is not possible to copy the based document series to the target document.
    Again for example user A makes PO in series 1 which is Manufacturing and then makes a Good Reciept PO then again he has to select the document series in the target document as 1 manually.
    Is there any way by which the base document series can be copied to the target document without manually selecting the same as its creates a mess if the user forgets to select the document series in the target document....Means SO is made in in Wholesales and Delivery is done in Shoppers. No default series also can be done as in any series as per requirement the user does the base document and he wants that once he put the series in the base document then automatically while doing the target document the base document series should be selected.
    Kindly let me know is there any possibility in SBO 2005B.
    Regards,
    Kamlesh

    Dear Shamseer,
    Default series has been set for that particular user. But for that user only 2-3 series are defined as per clients requirement. Now user wants that once in the base document the series is selected. All the corresponding target document should come with the same series ( Note all marketing document has the same series name but have diffrent series number )
    Regards,
    Kamlesh

  • Closed base Document appears in the open item list

    Hi all,
    While we are fully copying a base document to a target document, the base document header and rows will be closed, but it will appear in the open item list report.
    So the customer has created a Sales Order -> Delivery -> A/R Invoice.
    The Sales Order document status gives 'Closed', but still appears in the Open Item list (Sales - AR --> Sales Reports --> Open Items List).
    The customer using: SBO2005A PL22
    Further i also have looked in the SAP Notes (Note 1083366) but i can't solved it.
    Thanks in advance.

    Chief,
    In open items list of sales order,
    *select reqd. sales order,net amount,tax & total amount open in
    sales order,
    also open delivery document & compare with it,
    there must be difference in tax total/total/they
    must have changed quantity,unit price,date,changed payment terms/tax codes which causes delivery created without reference to sales order.
    That's why sales order is open.
    You can manaully close sales order by Data-->Close.
    Jeyakanthan

  • How to deactivate "Draw  Document Wizard "

    HI ,
    When we Copy the Base Document to the Target Document .
    There Comes a "DRAW DOCUMENT WIZARD" to draw all data ar to customize .
    My Client wants that this wizard should not reflects to their users whenever they copy from the base document .
    So is there any way to Deactivate the "Draw Documnt Wizards" over the transaction .
    Thanks
    Ashish

    hi ranjan,
    Draw document wizard is standard functionality for copying a base document to target document,
    Instead use Copy To to copy base document to target document.
    Jeyakanthan

  • Document serie cannot be copied

    When copying documents the serie set in the base document
    is NOT considered. By definition in a new document the serie suggested
    by the system is the one set as default.
    We would like to link the base document with all following documents in terms of series.

    Hello Christiane
    Thanks a lot  for your reply. yes even i read that error log. It says
    "Instead of posting a reversal of the reversal, you have to recreate theoriginal clearing, that is, post a new equivalent for the original
    clearing document."
    Does this mean that i need to post a new payment document or try to
    adjust with the old document.But if i have to do how will i be ableto
    achieve this as the old document is alrady reset and a new document has
    been posted which is not a payment document.
    This error we have faced for the first time. Please guide us how to
    achieve this so that in future we can handle these cases.
    Regards,
    Charvi

  • Base Document and Target Document Menu for User Defined Forms

    Hi Experts,
    I am facing a problem regarding enabling the menu "Base Document" Menu UID="5898" and "Target Document" Menu UID="5899" . Both of these menu Items are not enabled for User Defined Form .Actually I have developed a user Defined form for Purchase Requisition that targets Purchase Order . User can Copy Line Items From Purchase Requisition to Purchase Order and I am tracking the DocEntry and LineId of PR into PO Item's using UDS . I want to Open this PR Document upon Click of BaseDocument Menu .I have tried all the options. I have used Form.enableMenu() method also . But none of those options work for this menu . I ahve also searched about this problem i this forum also but there is no soultion so far posted regarding this.
    I really want to confirm whether it is possible or not using SDK for User Defined Forms . Is there any possiblity of implementing any WorkArounds and Having this feature implemented .
    I am Expecting a true solutions as this Forum has so many Experienced Experts .
    Thanks and Regards,
    Pooja Singh.

    Hello Poja,
    It is not possible, because the requested menus are depending on the forms, and the are not exists,
    WorkAround:
    add the menus to the User Defined forms, and use right click to activate them:
    oForm.Menu.Add("5898", "Base Document", BoMenuType.mt_STRING, oForm.Menu.Count)
    oForm.EnableMenu("5898", True)
    And hanle the menu event when you clicked them and the form is your custom form.
    Regards,
    János

Maybe you are looking for