Unbale to create new document part with same document number

Number range assigned to the X Document Type is internal. I have created new document (0001) with Document Part 000 & Version 00. For same Document Number when i tried to create New Document part by mentioning Document Numner 0001, Document Part 001 and Version 00, it says Document Type X can be assigned to internal number range only.
Even I tried with following selection....
Document Number = Blank
Document Part = 001
Document Version = 00
Template:
Document = 0001
Document Part = 000
Document Version = 00
Now system is creating document with new number i.e. 0002.  But we want to create another document part with same Document Number. What is the problem with internal number range for Document Number?

Hi Pradeep,
Following are the config parameter of the document type.
CM Relevnce = blank
Number assignmt= 01
Internal Number Range =02
External Number Range= blank
Number Exit =MCDOKZNR
Vers. No. Incr. =0
Version Sequence = blank
AlternativeScreen = blank
Let me know if you need anything more.
Edited by: JJSingh76 on Dec 7, 2010 7:25 PM

Similar Messages

  • Issue Related to Billing Document F2 with same Invoice Number.

    Hi All,
    I have 3 Sales Order with 2 Sales Order belonging to Sales Org A and one belonging to Sales Org B. The Invoice generated for all the deliveries for Sales Order has the same Invoice Number. As per the standard functinality it is not possible to generate same Invoice Number for Sales Order belonging to different Sales Organisation. I have chekced the Table VBFA the preceding document for the Invoice Number I am getting 3 entries. Please could you help me out in analysing his issue. Where the possible error could be ?.
    Thanks & Regards,
    Sam.

    Kindly check as it could be due to the Single Invoice generated for collective three Deliveries.
    As per the standard functinality it is not possible to generate same Invoice Number for Sales Order belonging to different Sales Organisation
    This is not a standard Functionality.But if you have made a Logic in the Copy Control Routine then it could be possible.
    Single Invoice Number can be generated for one or more Deliveries if you process it through VF04.
    Best Regards,
    Ankur

  • New info record with same details as archive one.

    Hi Experts,
    Due to some issue we want to archieve some standard info record which are created on vendor / material group / plant  basis.My query is does system allows to create new info record with same vendor / material group / plant combination after archiving earlier record which is on same basis.
    Thnaks & Regards
    Vinay

    Hi Jurgen,
    Thanks for reply.
    Our issue is while creating work order(IW31) having external services upon entering info record number in some cases in same client rate is picked up from info record condition but some times from last purchase order based on info update.
    We have checked following points.
    1.In all the cases work order type  is same.
    2.Info record are of standard type with same condition.info record are for vendor & material group combination.
    3.Checked after changing rate in info record and in purchase order but similar issue exists
    4.Compare vendor master also.
    5.Their are no contract /sch.agreement for vendors.
    Our requirement is to have rate from info record in all the cases in work order.So have two options.
    1.Archiving info record-But will need setting in SPRO and also need to create same record again with same combination.Also as their are recent purchase order against those info record not sure whether system will allow or not.Can you please tell what are prerequiste for archiving info record.
    or
    2.To remove only purchase order number updated in EINE table in those info record where this issue is occuring.We have checked in development system and after removing purchase order number in EINE table it picks up rate from info record.
    So thought of checking before removing order ref.from EINE table.
    Thanks
    Vinay

  • New window with same document

    I'm considering switching from Excel to Numbers, and looking at the functions I use the most.
    In Excel I often have 2 windows open with the same document (one with my income, and one with my expenses for instance). Are you able to open a new window of the same document in Numbers?

    I agree, but this thread was/is about opening multiple windows onto a single document. I contend that, where using multi-window viewing makes sense, so might a less monolithic arrangement of several tables, perhaps across a couple of sheets.
    There are at least two reasons for a large table in Numbers:
    (1) The table is designed with an Excel mindset (or imported from Excel) where there isn't this particular degree of freedom of many separate tables. When I see questions about multi-window or split screen viewing, often at the heart of the matter is Excel mindset. In Excel it is common to create separate "zones" within a larger spreadsheet. This practice can create spreadsheets covering vast numbers of cells. In Numbers, these zones would better occupy separate tables, and not just because of the visibility issue. Separate tables resize more naturally, a problem in Excel when resizing one zone disrupts another.
    (2) The table contains a lot of data of the same form (sharing the same headers). I think Numbers could use some work in handling this case. At minimum, while a table is active, the table headers and footers could be "pinned" to the window while scrolling as the column labels: A,B,C,.. and row labels 1,2,3,... are currently.

  • Seperate Document Row with same account  when post GL

    Hello everyone
    How I can seperate Document Row with same account  when post GL
    because If I post dcoument that  have many rows but same account and difference detail. It will sum amount for same account in JE
    and I found that will seperate if it has diference project code but it's not enough for me.
    How I can config SAP B1 to seperate Doc row when post to JE if it has difference detail (as userfield or standard filed)
    Sorry for my poor english
    Thank,Seang

    Hello Suthee,
    Sorry to tell you, it is not possible to do so in current B1 without addon development.
    There are 2 alternative.
    1.Consulting Workaround:
    Seperate the Item into 2 items, the account into 2 sub accounts.e.g.
    Item A => Item A01 and A02
    G/L Account 1001 => Sub Account 100101 and 100102
    2.AddOn development to seperate the JE just after it is created document
    You can update to JE to seperate just after JE are created by docuemnts.
    Just Listen FormDataAdd Event.
    Sample Code:
    Private Sub FormDataEventHandler( _
        ByRef BusinessObjectInfo As SAPbouiCOM.BusinessObjectInfo, _
        ByRef BubbleEvent As Boolean) Handles oApp.FormDataEvent
            'I just listen 133 - AR invoice here,
            'You may add the target documents
            'Before action = true, start the transation
            If BusinessObjectInfo.FormTypeEx = "133" _
                    And (BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD _
                    Or BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE) _
                    And BusinessObjectInfo.BeforeAction = True Then
                oCompany.StartTransaction()
            End If
            'Before Action = false,
            'Update the JE in document
            'Succeed, commit, otherwise rollback
            If BusinessObjectInfo.FormTypeEx = "133" _
            And (BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD _
            Or BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE) Then
                If BusinessObjectInfo.BeforeAction = False And BusinessObjectInfo.ActionSuccess Then
                    Dim xmlDoc As System.Xml.XmlDocument = New System.Xml.XmlDocument
                    xmlDoc.LoadXml(BusinessObjectInfo.ObjectKey)
                    Dim objectKey As String
                    objectKey = xmlDoc.SelectSingleNode("//DocEntry").InnerText
                    Dim oDocument As SAPbobsCOM.Documents = Nothing
                    oDocument = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
                    If oDocument.GetByKey(CInt(objectKey)) Then
                        Dim oJE As SAPbobsCOM.JournalEntries
                        oJE = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
                        If oJE.GetByKey(oDocument.TransNum) Then
                            '*Add you code to Update oJE lines here*
                            lRetCode = oJE.Update
                            If 0 <> lRetCode Then
                                oApp.MessageBox("Failed to update JE")
                                'roll back the whole transaction, including the document
                                oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_RollBack)
                                Exit Sub
                            Else
                                'Commit the transaction
                                oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_Commit)
                            End If
                        End If
                    End If
                End If
            End If
        End Sub
    Hope it helps. Thanks.
    Kind Regards
    -Yatsea

  • What issues we may face in installing a new Prod portal with same SID as existing one

    Hello All -
    We found some vbs script files in the host of EP Prod system. On confirmation from SAP we deleted those files without any harm to our prod EP system. But customer is still concerned about the security of the system and wanted us build the new EP prod system with same SID.
    We approached SAP and they suggested to install a new EP system and do customization rather than performing system copy from existing prod EP system because that may still bring those security threat changes to new EP prod system. (we ll decommission the old EP if everything works fine in new EP)
    Now I would like to list all the issues we may face in building a new EP system with same SID as that of already existing one and then doing entire customization again in new EP from Basis team point of view. The following are very few i could think of. Could you please add some other concerns you could think of.
    1) Keeping in mind that this EP system is in use for more than 6 years, some of the customization could have been done on lower versions. So could those changes be again exported from Dev and imported into new version of EP we are building now ?
    2) Can't add two hosts with same name in DNS Server
    3) Can't add two systems with same SID in Solution Manager for calculation of SPS to upgrade new EP

    You would have to run ipsinstall and install the new gateway. Make sure to follow the installation instruction for installing a gateway.
    After you install the gateway you follow the steps in the link you posted to let the server know there is a new gateway.
    Then make sure to restart the gateway and server.
    HTH ..

  • To create 3 diff files with same content but with diff names in same target

    Hi SapAll.
    i have got a a requirement where pi need to create 3 different files with same content but with different names under same target from a single Idoc.
    its an IDOC to 3 File Inteface.
    can any body help me in providing the differnt solutions for this without use of any script executions.
    will be waiitng for response.
    regards.
    Varma

    > i want to use only one communication channel to produce 3 different file names with same content ,so here i should use only one message mapping in 3 operation mappings .
    This is not possible to produce 3 different file names with single CC. You have to use 3 different CCs. unless you have going to use some other trick e.g some script to rename the file etc..
    As I suggested in my previous reply use Multi-Mapping Or create 3 different Interface Mappings (by using the same MM).
    Note: You have to create 3 different Inbound Message Interfaces (you can use the same Inbound Message Type) otherwise while creating the 3 Interface Determination it won't allow because of same Outbound & Inbound Message Interface. It will simply say Interface alreday exists..
    So, just use the Multi-Mapping which is best solution in my opinion, because the benefit of using multi-mapping are:
    1. You have to create only single Message Mapping
    2. Single Interface Mapping
    3. Single Receiver Determination
    4. Single Interface Determination
    5. 3 Receiver CCs (3 you have to use in any case)
    6. Performance wise it is good (read the blog's last 2 para)
    7. And last but not the least easy to maintain the scenario.

  • Reprinting check with same check number

    How to reprint the check with same check number. In transaction FCH7, I am able to reprint the check but it gives another check number. Is there another transaction code to reprint the same check with the same check number
    thankyou

    Hello Sheena,
    please disregard the last answer, that works for SAP Business One...
    For your situation:
    If you reprint checks with transaction FCH7, you need to void the
    previous check (with a void reason) and afterwards the system would
    assign a new check number.
    However, if you do it through transaction FBZ5 (print form for Payment
    Document), the system will ask you, if you would like to print an
    existing check number or would like to get a new check number assigned
    (Check -> print->"Check information already exists.
    Reprint old check number or assign new check number?" => print with old
    check number).
    As per you comments, I assume that the second option (via transaction
    FBZ5), is the way you should use to reprint checks without getting
    a new check number assigned.
    Sorry for the confusion...
    Cheers,
    Jon

  • CS4 & CS5 Indy with same serial number

    Can CS4 & CS5 Indy with same serial number both be open on the same machine?
    Thanks!

    I'm wondering how you have two versions with the same serial number? Volume license maybe?
    In the world of single licenses an upgrade from CS4 to CS5 would get a new new number, at least in my experience. As far as installing multiple versions (but not differnt localizations, like US and ME, of the same version) no problem, and I often have multiple versions open at the same time for testing and answereing questions here on the forum.

  • I have bought lightroom 5 and loaded it onto my lap top but i want to buy a new lap top will i be able to load the same software onto my new laptop using the same serial number

    Can I use the light room 5 software I have bought to install it on my new laptop using the same serial number as before

    Yes, the Lightroom license key is single user/owner.
    It can be installed on two computers at the same time with one in use at any point in time.
    Mac & or PC.
    There is no deactivate process just uninstall from one and install on another as many times that is necessary.
    The link below gives a detailed procedural procedure.
    http://www.lightroomqueen.com/how-move-lightroom-to-new-computer/

  • Vendor Invoice with Same Reference Number in two fiscal years.

    Vendor Invoice entered in SAP.
    DocumentNum 1600000612  Reference "47026723WA" Vendor Number "637278" Year "2008"
    DocumentNum 1600000667  Reference "47026723WA" Vendor Number "637278" Year "2009"
    We are thinking SAP will not allow/generate invoice with same Reference number. How can we restrict from entering Vendor invoices with Same Reference Number from same Vendor.
    Thanks
    Raghuram

    Restrict it through message control
    Transaction code OBA5
    Message NO.121
    Make it error for batch and online.
    Thanks,
    Ravi

  • Two idocs with same idoc number in idx5

    We are using an idoc to file scenario where idocs are bundled using bpm and posted to ftp. here the issue is we are getting two idocs with same idoc number in idx5. due to which the file in ftp is getting overwritten.
    Could anyone suggest me what to do in this regard.

    Hi,
    >>>check your sender system is sending same IDoc twice ?
    if you send the same IDOC twice they both get different numbers as IDOC number is taken from the IDOC num range
    unless you're able to send the same IDOC twice with the same IDOC num somehow
    Regards,
    Michal Krawczyk

  • I got both a PC version and a mac version in my purchase but once i loaded to my PC it will not allow me to load to my Mac with same redemption number. Is there a way to do that?

    i got both a PC version and a mac version in my purchase but once i loaded to my PC it will not allow me to load to my Mac with same redemption number. Is there a way to do that?

    I was going to ask a similar question - we bought the boxed version of PSE11 with mac and pc disc - can we install the program on our mac as well as our PC? It's already on the PC but would be very handy to have it on Mac also. Thanks

  • Create new project files with uploaded word document

    How do I create a new project file with an uploaded word document.  I tried to follow the guidelines using the Robohelp PDF file but after I upload the word document, I cannot see it in the workspace.  Are there other steps to bring the document into Robohelp 9.  I am using the trial version and have never used Robohelp before.
    Thank you!

    I was finally able to fix my problem and I hope to publish this in as many pages as I can.  First I had the exact same issue.  My file was password protected (the one I used as a shell for a new project) spent two hours of work, went home and next
    day “Nothing” same errors.  Cannot open file etc. etc.  So after two hours searching the net I found this company that has a
    Project Repair Toolbox that is cloud based for FREE (no useless downloads).
    I went in > It asked me for the file that I had on my local drive > prompted me for the password and > BAM! the file opened right up.  Since it as viewer only I was able to at least begin re-typing the project plan which was small in nature.
     Check it out, hope it works for you. 
    http://www.project.repairtoolbox.com/

  • How to create a new user aaa with same rights as existing user bbb ?

    Assume user bbb already exists in Oracla 10g database.
    How can I create a new user aaa with the same rights/permissions as the old user bbb?
    Is this procedure/command also working if the old user is user "system" (=dbadmin)?

    There is some possibilty to generate a EXPDP dump file which contains only DDL statements related to account and
    privileges: EXCLUDE/INCLUDE parameter can help.
    For example, following EXPDP statements seem to work with SYSTEM account:
    expdp / schemas=system content=metadata_only exclude=table,sequence,package,function,procedure,synonym,,type view dumpfile=DPD:system.dmp logfile=DPD:system.log
    Export: Release 10.2.0.2.0 - Production on Thursday, 14 February, 2008 9:41:36
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Starting "OPS$XXX"."SYS_EXPORT_SCHEMA_01":  /******** schemas=system con
    tent=metadata_only exclude=table,sequence,package,function,procedure,synonym,type view dumpfile=DPD:system.dmp logfile=DPD:system.log
    Processing object type SCHEMA_EXPORT/USER
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/POST_SCHEMA/PROCACT_SCHEMA
    Master table "OPS$XXX"."SYS_EXPORT_SCHEMA_01" successfully loaded/unload
    ed
    Dump file set for OPS$XXX.SYS_EXPORT_SCHEMA_01 is:
      C:\TEMP\SYSTEM.DMP
    Job "OPS$XXX"."SYS_EXPORT_SCHEMA_01" successfully completed at 09:41:41
    impdp / sqlfile=dpd:system.sql dumpfile=DPD:system.dmp logfile=DPD:system.logImport: Release 10.2.0.2.0 - Production on Thursday, 14 February, 2008 9:42:46
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Master table "OPS$XXX"."SYS_SQL_FILE_FULL_05" successfully loaded/unload
    ed
    Starting "OPS$XXX"."SYS_SQL_FILE_FULL_05":  /******** sqlfile=dpd:system
    .sql dumpfile=DPD:system.dmp logfile=DPD:system.log
    Processing object type SCHEMA_EXPORT/USER
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/POST_SCHEMA/PROCACT_SCHEMA
    Job "OPS$XXX"."SYS_SQL_FILE_FULL_05" successfully completed at 09:42:50and system.sql is:
    -- CONNECT OPS$XXX
    -- new object type path is: SCHEMA_EXPORT/USER
    -- CONNECT SYSTEM
    ALTER USER "SYSTEM" IDENTIFIED BY VALUES '970BAA5B81930A40'
          TEMPORARY TABLESPACE "TEMP";
    -- new object type path is: SCHEMA_EXPORT/SYSTEM_GRANT
    GRANT GLOBAL QUERY REWRITE TO "SYSTEM";
    GRANT CREATE MATERIALIZED VIEW TO "SYSTEM";
    GRANT SELECT ANY TABLE TO "SYSTEM";
    GRANT CREATE TABLE TO "SYSTEM";
    GRANT UNLIMITED TABLESPACE TO "SYSTEM" WITH ADMIN OPTION;
    -- new object type path is: SCHEMA_EXPORT/ROLE_GRANT
    GRANT "DBA" TO "SYSTEM" WITH ADMIN OPTION;
    GRANT "AQ_ADMINISTRATOR_ROLE" TO "SYSTEM" WITH ADMIN OPTION;
    GRANT "MGMT_USER" TO "SYSTEM";
    -- new object type path is: SCHEMA_EXPORT/DEFAULT_ROLE
    ALTER USER "SYSTEM" DEFAULT ROLE ALL;
    -- new object type path is: SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    BEGIN
    sys.dbms_logrep_imp.instantiate_schema(schema_name=>SYS_CONTEXT('USERENV','CURRENT_SCHEMA'), export_db_name=>'BAS002.REGRESS.RDBMS.DEV.US.ORACLE.COM', inst_scn=>'1456160');
    COMMIT;
    END;
    -- new object type path is: SCHEMA_EXPORT/POST_SCHEMA/PROCACT_SCHEMA
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.CLEANUP_SCHEMA_IMPORT;
    COMMIT;
    END;
    / These export and import steps don't take into account privileges granted on schema objects belonging to another user likely due to to the EXCLUDE statements.
    Message was edited by:
    Pierre Forstmann

Maybe you are looking for

  • Possible.. or impossible?

    is it possible to have Java edit/create a text document in a specific folder? and if the folder doesnt exist also create the folder? If you know how to do this please hook me up with some info :)

  • 8-way Random Erase

    I'd like to know if anyone anywhere has ever successfully finished an 8-Way Random Erase on their computer. I started one Friday on my PowerMac G4 with a 40G drive. The following Wednesday it's half way through and doesn't look like it's moving. I've

  • Final cut 5 won't work on lion

    There have been several issues regarding the old Final Cut 5.1 not working on Lion.  Well, here is the solution.  Don't let anyone tell you that your editing software is just "too outdated".  I feel like once you purchase a product.....if you keep th

  • TWS (Tivoli Workload Scheduler) and NW 7.40

    Hi Guys Does any of you have experience if TWS does work with Netweaver 7.40 ? We are upgrading from BW/NW 7.01 to BW/NW 7.40 and are using TWS 8.6 FP2. Anyone who has upgraded to BW 7.40 and are using TWS (8.6), that can tell if this interface still

  • Rollovers stay highlight when back button is clicked

    Hi All, I am a novice Dreamweaver user so please forgive me if this question is basic... I have looked everywhere for the answer. I am designing my page and I have created rollover through Behaviors. They work great, but the problem that I am running