Error In GR/IR Slip Number

Hi,
While doing the Production Confirmation, the following error has occured:
Message no. M7138
For this Item, assignment of a goods receipt/ issue slip number is not supported. However, this document contains items which require GR/IR Slip Number
Is this MM related problem or PP, & what do I need to do an MM guy.
Regards,

Hi
Goto Transaction OMC1 and then to 'No.range grp' where you can define the number ranges....external and Internal number ranges ....
Hop this will solve ur pblm ....
Regards
Siva

Similar Messages

  • Error While entering GR/GI slip number in MIGO (Message no. NR751 )

    Hi Experts,
    While entering GR/GI slip number in MIGO,system throws an error
    "For object XABBELEGNR , number range interval does not exist OMJ6"
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Transaction code: OMJ6
    Configuration settings are already done in OMC1.
    external number range already maintained for this plant and year 2010 in  OMC1  OMJ6 .but still this error comes.
    would appreciate the help.

    Check these links:
    Posting a "goods issue" msg NR751
    Re: GR posting problem
    Check in OMR4 - document types in IV - document type assigned to Tcode MR11 (say KP) and then check document type tab in same Tcode for number range series assigned to doc type KP - maintain series in FBN1. You can check in NRIV database table with object RF_BELEG for number range series maintained.

  • Error Message - ORA-01722 Invalid Number

    Hello:
    I have the following situation. When I create an organization, a record is inserted into the following table, AGREEMENTS, and populates four fields.
    I have an update form which selects the organization from the AGREEMENTS table so the user can populate the rest of the table. In addition, on this form, there is a drop-down box which allows the user to select the name of a legal document along with the version of the document in which the user needs to select. This select list is created via an LOV joining three tables. The item name for this select list is :P6_DOCUMENT.
    The code for the LOV is:
    SELECT S.DOC_NAME||' - '|| O.VERSION_NO AS DOC, O.ORG_DOC_CURR_KEY
    FROM SUPPORTING_DOCS S,
         ORG_DOC_CURR_VER O,
         AGREEMENTS H
    WHERE
        S.DOC_TYPE = 'HISA'
    AND S.SUPPORTING_DOC_KEY = O.SUPPORTING_DOC_KEY
    AND H.ORG_KEY_LE = O.ORG_KEY
    AND O.ORG_KEY=:P6_ORG_KEY_LEWhen the user completes the form, the SUBMIT process is a PL/SQL block consisting of an UPDATE statement to update the AGREEMENTS table based on the selected organization and an INSERT statement to insert a record into the AGREEMENTS_DOC table to store the value stored in :P7_DOCUMENT.
    Ok, now here is where my problem starts.
    When I first bring up the form and I select the organization I want to update, I click the Search button to find the organization and I receive the following error message: ORA-01722 Invalid Number.
    At this point all I'm doing is a basic search. There is no insert/update or anything going on. I'm not understanding why I would be receiving this error message.
    The search is based on the database column ORG_KEY_LE whose datatype is NUMBER.
    In my application, the item assigned to ORG_KEY_LE is P6_ORG_KEY_LE.
    I have a PL/SQL block process created (On Load-Before Header) in the Page Rendering area of my page definition. The PL/SQL code that is written is:
    BEGIN
    IF :P6_SEARCH_ORG != '0' THEN
    :P6_ORG_KEY_LE := :P6_SEARCH_ORG;
    END IF;
    END;I then have an Item created, :P6_SEARCH_ORG, which is a Select List. In the LOV portion of the page for this item, I have the following:
    select ORG_KEY_LE display_value, ORG_KEY_LE return_value
    from AGREEMENTS
    order by 1The reason for using this table is because this table contains the newly created organization which needs to be updated with the remaining columns of data.
    I then have a Search button in the Button area which has the following settings:
    Button Position: Region Template Position #CHANGE#.
    Condition Type: Value of Item in Express 1 is NULL.
    Expression 1: :P6_ORG_KEY_LE.
    To troubleshoot this problem, I created two pages, one page to do the UPDATE and the second page to do the INSERT.
    The SEARCH functionality in both pages are identical.
    When I run my UPDATE page, which only involves updating the missing fields, the process works. I have my search box, I'm able to search for the organization, make my updates, and I'm good.
    When I run my INSERT page, which involves inserting the record with the assigned document, I receive the error message after I click the SEARCH button. In order to INSERT the record into this table, I first need to SELECT the organization that was UPDATED in the AGREEMENTS table (using the UPDATE page described in above paragraph). When I select the organization, the user can then assign the appropriate legal document to the organization and insert the record into the AGREEMENTS_DOC table.
    Can someone help me with this error message? I'm not sure why I am able to perform my SEARCH on a page with the UPDATE statement, not able to perform the SEARCH on the page with my INSERT statement, and not be able to perform the SEARCH on the page that combines the UPDATE and INSERT statements.
    I did some more troubleshooting and I do believe my SUBMIT process which contains the INSERT statement is the issue. I created a fourth page which doesn't have a SUBMIT process. I brought up the form, searched for my organization and the information for that organization appeared. The problem is definately with my UPDATE/INSERT process.
    The PL/SQL block for the Submit process is the following:
    BEGIN
    update
        MDD.HISA_AGREEMENTS
         set
           LAST_UPDATED_BY=V('APP_USER'),
           APPROVER_SALUTATION=:P6_APPROVER_SALUTATION,
           APPROVER_FIRST_NAME=:P6_APPROVER_FIRST_NAME,
           APPROVER_MIDDLE_INITIAL=:P6_APPROVER_MIDDLE_INITIAL,
           APPROVER_LAST_NAME=:P6_APPROVER_LAST_NAME,
           APPROVER_NAME_SUFFIX=:P6_APPROVER_NAME_SUFFIX,
           APPROVER_EMAIL_ADDR=:P6_APPROVER_EMAIL_ADDR,
           SPONSOR_EMAIL_ADDR=:P6_SPONSOR_EMAIL_ADDR,
           APPROVER_TITLE=:P6_APPROVER_TITLE
    where
          ORG_KEY_LE=:P6_ORG_KEY_LE
    INSERT INTO
        HISA_AGREEMENT_DOCS
          (HISA_AGREEMENT_DOC_KEY,
           ORG_KEY_LE,
           APPLICATION_KEY,
           STATUS,
           STATUS_DATE,
           CREATED_BY,
           ORG_DOC_CURR_KEY)
    VALUES
          (HISA_AGREEMENT_DOC_KEY_SEQ.NEXTVAL,
           :P6_ORG_KEY_LE,
           :P6_APPLICATION_KEY,
           'C',
           SYSDATE,
           V('APP_USER'),
           :P6_DOCUMENT)
    END;There is something wrong with the above statement and I do not understand what it could be. Can someone help?
    Thanks for the help.

    Hi,
    I believe you are on to something.
    The select list for item :P6_DOCUMENT appears when I first bring up the form. When I select my organization and receive the error message, I clicked on the Session in the Developer's bar. The value in item/field :P6_DOCUMENT shows %null%.
    This is the path in which my user would like to accomplish her task:
    1. Select an organization
    2. Display the information for that organization from the AGREEMENTS table
    3. Enter the data for the remaining fields in the AGREEMENTS table
    4. Select the document (:P6_DOCUMENT) from the drop-down.
    5. Click Submit
    6. Update the AGREEMENTS table with data entered in #3.
    7. Insert a record into the AGREEMENTS_DOC table with the selection from #4.
    Somehow I need the :P6_DOCUMENT field not to show the %null% during the SEARCH functionality. I think that is causing the problem.
    How do I fix this?

  • Error message "No internal transfer number found"

    Hi everyone,
    I'm trying to setup the self-billing- (ERS)-functionality for scheduling agreements.  The problem I'm currently facing is that I created a test-iDoc which while being processed causes an error.
    The test-iDoc is sent out with the basic type GSVERF03 (I just tried the same using type GSVERF01). On my customer's side the reception is configured to use the message type SBWAP.
    I also did the customizing-settings from within the ERS-monitor for the partner function (TCodes OVD5 & OVD7.... with reference number "E" & Delivery Note Number to Determine Sales Document), but in the end I still receive the error-message:"No internal transfer number found" even though it's available in the iDoc.
    Does anybody have any ideas on this?!?
    Any help greatly appreciated!
    Thx & regards,
    Bobby

    Hi Boban,
    I had same issue I solved   creating  number range in SNRO for object TRMNO_INT,
    Regards

  • Error Message (ORA-01722: invalid number) when add amount into Number field

    I am using VB.net, trying to insert data into a field called amt with Data Type 'Number'.
    my vb.net code is as follows
    Dim oradb As String = DatabaseConnectionString
    Dim AmountValue As Decimal = 123.45
    'get the connection
    Dim conn As New OracleConnection(oradb)
    'open the database connection
    conn.Open()
    'create oracle command
    Dim cmd As New OracleCommand("INSERT INTO TBL1 (AMT) VALUES (:AMT)", conn)
    cmd.CommandType = CommandType.Text
    cmd.Parameters.Add(":AMT", OracleDbType.Decimal, AmountValue, ParameterDirection.Input)
    'Execute
    cmd.ExecuteNonQuery()
    I got error message "ORA-01722: invalid number". Please help

    Did you also change the below line before inserting Integer 123:
    cmd.Parameters.Add(":AMT", OracleDbType.Decimal, AmountValue, ParameterDirection.Input)
    to
    cmd.Parameters.Add(":AMT", OracleDbType.Integer, AmountValue, ParameterDirection.Input)

  • Error in allocating Despatch serial number

    Hi friends ,
    I am trying to save a commercial invoice and the setting allows to print the exicse invoice immediately. But on pressing the save button in VF01, update gets terminated.
    error : Error in allocating Despatch serial number Interval not found Number object J_1IINTPR2
    Message no. 8I 336
    Can anyone advise?
    Thks/Vinod
    messenger id
    [email protected]

    Hi Vinod,
    Please check whether the number range is maintained for the object or the number range might have exhausted
    Hope this helps.
    Sridhar

  • XML Parsing Error: no element found Line Number 1, Column 1:

    Hi All,
    I have deployed EAR on my standalone server using JDEV 11.1.1.6.0. I am able to get the WSRP portlet producer page on
    http://<server>:7001/contextRoot. But when i try to click on any of the WSDL URL it gives me "XML Parsing Error: no element found Line Number 1, Column 1:"
    and from IE it gives me: XML document must have a top level element. Error processing resource
    there can be a issue with the WSRPContainer.jar file. So i have remove it from my deployment profile, EAR and lib/classpath files.
    Can you please suggest a workaround.
    Regards,
    ND
    Edited by: ND on Dec 4, 2012 9:57 PM

    Hi All,
    this error normally comes when the WLS domain is not not properly created. if you get some exception for ./provesecurity.sh file while creating the domain, then the XML error comes.
    I did not went into the depth but figured out a workaround: restart the VM/hosted box and then create the domain, remember to use diff port name while creating it from the domain creation script.
    Regards,
    ND

  • Error occurred while deciding partition number,when activating DSO data.

    HI all,
    I have 2 requests in my DSO,when i activated the data for the 1 request manually it worked fine.But when activating the 2 nd request.It failed giving me the following error.
    Error occurred while deciding partition number,
    PSA update failed
    Process 000002 returned with errors
    Process BCTL_D4A4RYBAVI2HZ9FAMIP9TNMAI could not be terminated. Terminate manually
    Data pkgs 000001; Added records 1-; Changed records 0; Deleted records 0
    Log for activation request ODSR_D4A4RYBAVI1QAN3JAZ9NR880Q data package 000001...000001
    Errors occured when carrying out activation
    Analyze errors and activate again, if necessary
    Activation of M records from DataStore object 0FIGL_O02 terminated
    Report RSODSACT1 ended with errors
    Job cancelled after system exception ERROR_MESSAGE
    Please advice on how to resolve this issue.thanks in advance

    Hi Shambhu,
    thanks for your reply.
    I tried activating again.but it failed.Problem is it has about 10 mil records and this load is very important to be done within next 12 hours.
    I had deleted a PSA request but when i looked into the table RSTSODSPART,i have a PSA request not checked for Deletion flag.I am not sure why this happened.Does this have anything to do?But i also have another question,if i load from PSA was successful,i dont see a point as why the second load would error out.In that case is there anyway to delete one particular entry in that table.
    Please advice

  • There was an error processing a page. a number is out of range.

    When I open a PDF generated from a classic ASP application, some particular documents fail when accessing a page: there was an error processing a page. a number is out of range.
    This only happens in Adobe Reader 10 and 11.
    The ASP page has a code similar to this:
    Response.AddHeader "Content-disposition", "attachment; filename = doc.pdf"
    Response.ContentType = "application / pdf"
    Response.Write Session ("PDF")
    Try adding different settings in the properties AddHeader / ContentType / CharSet etc, but always the same.
    In the screenshot you can see the mistake in page 3
    Any idea?
    thank you very much

    Sounds like the pdf is corrupt. Try a forced quit. (command option escape)

  • Error while detrmining Internal Document Number for Excise Invoice.

    Hello mate, I am trying to create excise invoice for for factory sale. while saving the document I am getting an error" Error
    while detrmining Internal Document Number for Excise Invoice. Message: Maintain Number Range for J_1IINTNUM". I have already maintained number range for mentioned object "J_1INTNUM" in TCODE SNUM , still getting error. Please solve my querry . Is it related to transport or number range activation or something else? I have maintained number range with serial no. "01"

    Hello ,
    Ensure that number ranges are properly maintained in the respective client that should be the year specific.Some times even u maintained the system should not consider that number ranges  due to table updation problem ,because i had faced the same in the earlier and received the reply from the sap stating that this error was occured rarely after the years,so please ignore that ,for your problem u first come out of the screen and then re log in and then create the excise invoice ,then check the number ranges .
    Please revert for any
    Kalyan

  • Error in allocating Despatch serial number Interval not found Number object

    Hi All,
    While saving the Excise Invoice(created w.r.to Invoice) in J1IIN system is throwing the error:
    "Error in allocating Despatch serial number Interval not found Number object J_1IINTPR2
    Message no. 8I336"
    The Excise Group(say 99) was created.
    But the same is not reflecting in the drop down list of SNUM for maintaining the No.Range in the Object  J_1IINTPR2.
    Do the needful to resolve this issue.
    Needless to say helpful answers will be rewarded.
    Regards,
    Raj Kumar Reddy.

    Dear Raj,
    Go to Excise group details here you check these settings
    IMG>Logistics general>Tax on Goods movements>India>Basic settings-->Maintain Excise groups
    Have you check all these check boxes
    1.Excise Inv during billing
    2.Create and Post Invsingle step                    
    3,Depot Excise invoice
    4.EI capture
    5.Diuty Different at GR
    6.EI create/RG23D selection
    7.Update RG1 at MIGO
    I hope this will help you,
    Regards,
    Murali.

  • Error in allocating RG23D document number Interval not found Number object

    Dear
    Expert
    Error in allocating RG23D document number Interval not found Number object J_1IRG23D
    I tried the solution given in the forum but its not working,
    Pls help me out.
    Thanks and Regards
    Deepankar

    Hi,
    As a know that this is a problem of number range and I mentioned the same(SNUM> given the object and maintain the number range of this fiscal year but it didnt work also searched in the forum but didnt got any other solution so posted the issue.
    hope now its clear.
    Thanks and regards
    Deepankar

  • I cannot download updates to Photoshop Elements 9.  I get an error message that my serial number is not recognized or eligible.  Can you help with this?

    I cannot download updates to Photoshop Elements 9.  I get an error message that my serial number is not recognized or eligible.  Can you help with this?

    Hi,
    Which operating system are you running on?
    What updates are you trying to download?
    The last update was 9.0.3 - check by loading the editor and going to Help -> About Photoshop Elements
    The last supported Camera raw is ACR 6.5 - check by loading the editor and going to Help -> About Plug-ins -> Camera Raw
    Do you have a reason to update?
    Brian

  • PI 7.31 (single stack) posting RFC gives this error: RFC_ERROR_SYSTEM_FAILURE: Processing of change number CO-01234 cancelled (raised by system ECCHostXYZ)

    I'm trying to determine if I am dealing with an RFC connection issue or just an error resulting from the RFC itself.
    The error says "Processing of change number...cancelled (raised by...ECCHostXYZ)".
    I thought this was a problem with my RFC config because it is labeled as "RFC_ERROR_SYSTEM_FAILURE".
    However, when I google that specific message, it appears to be an error specific to change order creation.
    Here’s my google search: http://goo.gl/ZhKsm3
    Here is the error again:
    RFC_ERROR_SYSTEM_FAILURE: Processing of change number CO-01234 cancelled (raised by system ED1|ecc-host-xyz)
    When I check ST22, I see no RFC errors.

    Hi Jody,
    No st22 exception is needed to be throwed in order to raise a controlled exception in the RFC.
    You would need to check the RFC in the ECC system with the data that you are sending from PI, if the data is the same, you would need to check PI user RFC roles with the ECC roles user that you used to check the data integrity in the ECC test.
    To avoid this error you can do a Z RFC to wrap the standard RFC and to control the exceptions errors with a BAPIRET2 strucutre to return to PI.
    Hope this helps.
    Regards.

  • GR/GI slip number

    Dear All,
             How I can configure GR/GI number for account assigned (to cost centre) goods receipts.
    thanks and regards
    Neeru

    Hi Steve,
               I have activated the GR/GI slip number functionality in MIGO. It is working fine for the material where quantity and value update is there like material type ROH.
    I have created a PO for material type NLAG. it is account assigned to a cost centre.(Mech Maintenance ).
    When I am doing GR for this PO, the system is not giving the GR number.
    please advice
    regards

Maybe you are looking for

  • HT4623 Can i install iOS 5 in an ipod touch 3G?

    Please help me, App store's app's tell me that i got a very old version 4.2.1, my itunes has that version and i cant repare idk why

  • Transparency with *png in MHP with DVBAlphaComposite-what's the problem?

    Hello! I know this topic exists already, but it could not help me with my problem: I want an HIcon with an transparent picture in it but I am not able to get any transparency..To me that code seems to be right, but when testing it with the IRT RI, th

  • Itunes, duplicates, and symlinks?

    Hello, I have a rather large iTunes collection and am dealing with more of an annoyance than anything else. I was wondering if there was a fix I wasn't aware of. Let me set the scenario: I have every Album by "Band A", including their greatest hits,

  • Lost topic  in Projects pane

    Hi Can anyone help with this problem? A topic I created a few days ago does not show up in the Project pane. It can be opened from the Table of Contents, and can be found in the compiled chm file, and opened from the Index All Topics view, but not fr

  • Canon 5D Mark 11 files and iMovie

    Regular forum readers would be aware of the problems that I have been having with iMovie 08 crashing when editing the .MOV files from my Canon 5D mark 11. I went into my Mac reseller yesterday and ran a series of test movies on 2 of their new Macs. S