FI:While posting MIRO getting Error of Balancing field Segment not filled

Hello SAP Gurus,
While  posting MIRO getting Error of Balancing field Segment in line item 001 not filled
Message No.GLT2201.
Please suggest me solution for it i read lots of related threats but could not solve this error.

SPRO-Financial Accounting (New)-General Ledger Accounting (New)-Business Transactions-Document Splitting-Edit Constants for Nonassigned Processes-Select your constant-Double click and Select Assignment of profit center- Enter your dummy profit center here   otherwise
SPRO-Financial Accounting (New)-General Ledger Accounting (New)-Business Transactions-Document Splitting-Edit Constants for Nonassigned Processes-Select your constant-Double click and Select Assignment of values-Enter here segment.

Similar Messages

  • While Posting 122 getting error M7021 "Deficit of PU GR quantity 2 EA : 1100000000 1000 G102"

    Hi Experts,
    While Posting 122 getting error M7021 "Deficit of PU GR quantity 2 EA : 1100000000 1000 G102".
    Scenerio : Have received 4 peices of this material with Goods receipt using 105 document and want to return 2 pcs back to Vendor using 122 movement type and getting this error.
    Please let me know the problem as when checked with OMCQ it is showing Warning but inspite i am getting error.
    thanks

    Hi Abhishek,
    Please find enclosed the screen print for 122 mvt type and Document used is of 105 mvt type.
    Material Document 5000000097 is used for return delivery.
    Thanks

  • Read Table : Error Stating mandt field is not filled.

    Dear members,
    I am get syntax error when using Read table statement saying mandt field is not filled, however if I remove the KEY field. it is working fine.
    please let me know, where I am doing mistake. thank you.
    Data : spfli_tab like STANDARD TABLE OF spfli with HEADER LINE.
    SELECT *
           FROM spfli
           INTO TABLE spfli_tab
           WHERE carrid = 'LH'.
    READ TABLE spfli_tab
               WITH TABLE KEY carrid = 'LH'
                                           connid = '2402'.
    IF sy-subrc = 0.
    ENDIF.

    Hi...
    As Eric Said there are two ways...
    For your case use WITH KEY...
    SELECT *
    FROM spfli
    INTO TABLE spfli_tab
    WHERE carrid = 'LH'.
    READ TABLE spfli_tab
    WITH KEY carrid = 'LH'
    connid = '2402'.
    IF sy-subrc = 0.
    WRITE : 'DONE'.
    ENDIF.
    If u specify WITH TABLE KEY then u will hv to pass all key fields mentioned in DDIC...
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • While running servlets getting errors 404 or 505 resource not found

    Hi all,
    I'm novice to J2EE.
    I've encountered a problem while accessing the deployed module in weblogic 8.1 server.
    I'm sure that the webapplication module is deployed as i saw my module in administration console & also the status said that it is deployed.
    when i access my web application by specifying the proper server and port no and context root it is showing
    either 505 - resource not found error(http://localhost:7001/Suresh-2/Suresh) or 404 - not found error.( http://localhost:7001/Suresh-2/Suresh)
    Now let me elaborate what i've done till now.
    My webapplication folder structure is : C:\bea\user_projects\domains\mydomain\applications\Suresh\WEB-INF\classes\Sai\ServExamp.class
    My servlet is ServExamp.java
    I created a folder called "Suresh".  In that folder created another folder called "WEB-INF".  In WEB-INF created a folder called "Classes".
    Since my servlet is in package "Sai", the .class file reside in \Suresh\WEB-INF\Classes\Sai\ServExamp.class
    The source code is :
    package Sai;
    import javax.servlet.;*
    import javax.servlet.http.;*
    import java.io.;*
    public class ServExamp extends HttpServlet
    public void doPost(HttpServletRequest req,HttpServletResponse res)throws IOException
    PrintWriter out=res.getWriter();
    java.util.Date today=new java.util.Date();
    out.println("<html>"+"<body>"+
    *"<h1 align=center>HF\'s Chapter1 Servlet </h1>"*
    +"<br>"+today+"</body>"+"</html>");
    Now i'm almost done creating a web application.  Next, I constructed a simple web.xml descriptor that gives a web friendly name for my servlet, and points to the servlet. I constructed  web.xml descriptor file in the WEB-INF folder (C:\bea\user_projects\domains\mydomain\applications\Suresh\WEB-INF\).
    The web.xml file source is :
    *<!DOCTYPE web-app*
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    *"http://java.sun.com/dtd/web-app_2_3.dtd">*
    *<web-app>*
    *<display-name>Hello World Web Application</display-name>*
    *<description>Test Servlet</description>*
    *<servlet>*
    *<servlet-name>ServExamp</servlet-name>*
    *<servlet-class>Sai.ServExamp</servlet-class>*
    *</servlet>*
    *<servlet-mapping>*
    *<servlet-name>ServExamp</servlet-name>*
    *<url-pattern>/Suresh</url-pattern>*
    *</servlet-mapping>*
    *</web-app>*
    Now I have told Weblogic that the URI /Suresh corresponds to my servlet "Sai.ServExamp".
    My Web Application is ready to be deployed at this point. I logged onto Weblogic's admin console,
    *1) clicked on deployments, then navigated to "Web Application Modules" .*
    *2) Clicked "Deploy new Web Application Module"*
    *3) Navigated to the location of your web application folder (Suresh). There was a radio button next to it indicating that I can select that folder as a valid web application.*
    *4) I Clicked that radio button and clicked "Target Module".*
    *5) It informed that my web application "Suresh" will be deployed to myServer.It asked a name for my web application deployment. By default it was "Suresh"*
    I clicked Deploy.
    *6) After deployment, my web application "Suresh" appeared in the "Web Application Modules" tree on the left.*
    I Clicked on "Suresh"( my web application) then clicked the testing tab, then clicked the link shown there(http://localhost:7001/Suresh-2).
    It was not showing  my servlet (showed a 403 error)
    Error - 403
    This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    I think so it came b'coz I don't have an index.html or index.jsp page.
    *7)Instead,I added my servlet on to the URL it provided.*
    http://localhost:7001/Suresh-2/Suresh
    It is showing these error code: Http: 505 resource not allowed
    The page cannot be displayed
    The page you are looking for cannot be displayed because the address is incorrect.
    Please try the following:
    If you typed the page address in the Address bar, check that it is entered correctly.
    Open the localhost:7001 home page and then look for links to the information you want.
    Click  Search to look for information on the Internet.
    when i just type : http://localhost:7001/   -> Error 404 not found error
    it's showing
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    *10.4.5 404 Not Found*
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I want to run my web application & any help would be appreciated.
    Thanks in advance.
    with regards,
    S.SayeeNarayanan.
    Note: I even deployed my war file, which i got by execution of (jar cv0f webapp.war . ) command from the root directory of my web application i.e. Suresh
    Then executed my webapplication it is showing
    error-505 resource not allowed.
    --------------------------------------------------------------------------------------------

    nammathamizhan wrote:
    Hi all,
    I'm novice to J2EE.
    You're also a novice to this forum.
    First, turn off the bold font.
    Second, post your question once and only once to a single forum. You only waited an hour before reposting your question. That's not the way this works. Asking your question multiple times will not increase the likelihood that you''ll get an answer. As a matter of fact, you're guaranteed nothing at all. Give it your best effort and hope for success. This isn't a paid consultancy - we're volunteers.
    I've encountered a problem while accessing the deployed module in weblogic 8.1 server.
    I'm sure that the webapplication module is deployed as i saw my module in administration console & also the status said that it is deployed.
    when i access my web application by specifying the proper server and port no and context root it is showing
    either 505 - resource not found error(http://localhost:7001/Suresh-2/Suresh) or 404 - not found error.( http://localhost:7001/Suresh-2/Suresh)
    If you're correct, and it's deployed, that would suggest that the URL you gave is incorrect.
    >
    Now let me elaborate what i've done till now.Good info - almost too much.
    %

  • While doing PGI get error account determination for entry

    while doing PGI get error account determination for entry    not possible message no M8147

    Hello,
    Seems like you are missing entry in Trx OBYC - GBB/VAX or GBB/VAY. The long text of the error message would tell you where to maintain the entries. If that is VAX or VAY you would need to maintain the 'Cost of Goods Sold a/c there according to the valuation class.
    Kind Regards // Shaubhik

  • Profit Center Balancing error while posting MIRO

    While I am passing a MIRO for a Service PO which has a WBS element as a cost object, facing a Doc Split Error u201C Balancing field profit center in the line item 001 not filled"
    Service Entry was correctly posted and the Accounting Entry for it is :
    1)     Exp A/c            Dr     100/-               Profit Ctr 123
    2)     To GRIR Clearing A/c      Cr      100/-               Profit Ctr 123
    You may note that the Vendor has a withholding tax code activated for invoice booking in the master and TDS is applicable in this case. VAT deduction is also applicable in this. Profit Center 786 was defaulted for the TDS Payable A/c using the T Code FAGL3KEH.
    While simulating the MIRO after the above service entry sheet , I am getting the below accounting entry:
    1)      Vendor           Cr     86/-          Profit Ctr  Blank
    2)     GRIR Clearing A/c        Dr     100/-          Profit Ctr  123
    3)     VAT Input Credit      Dr     6/-          Profit Ctr  Blank
    4)      TDS Payable A/c     Cr     20/-          Profit Ctr  786
    But the error is since the vendor line item is not getting filled with the profit center and hence the MIRO is not getting posted.
    I know that this is definitely a splitting rule error but I am not sure  in which split rule I should change the configuration.
    Can any one please guide me  since the requirement is very urgentt and critical.
    Thanks a lot in advance.
    Gemini

    Hi Tarek
    I have checked the following in my system :
    1) Document Type RE which is being used for MIRO and the classficiation
    the same in of this document type is : Business Transaction 0300 (Vendor Invoice) and Variant
    is 0001 (Standard)
    2) Document Split Method used in our system is 0000000012 and not a Z.......
    3) Document Splitting Rules for the above combination of Vendor Invoice (0300) and Transaction Variant 0001
    Profit Center is not being filled in the line item 001, which is the vendor one.
    I have checked the base item category of 03000 (Vendor) and I found the following in it :
    01000     Balance Sheet Account
    01100     Company Code Clearing
    01300     Cash Discount Clearing
    05100     Taxes on Sales/Purchases
    05200     Withholding Tax
    06000     Material
    07000     Fixed Assets
    20000     Expense
    30000     Revenue
    But you may note that none of the above items are being checked for Automatically Split box.
    Can you please advise further on this issue. Also can you provide your contact number so that I can call you since the issue is very critical in the production system.
    Regards
    Gemini

  • Error while posting MIRO

    Hi Experts
    I got a error like this while posting MIRO
    "No amount authorization for customers/vendors in company code 401"
    I tried to look out in T043 Table,since i cant able to go further
    Let me know the reason for this error and the settings to do
    Regards
    Amuthan M

    Hi,
    While creating tolerance group you are specified the authorization group/ Just delete the name of the group you have created and keep it blank OR assign the user to that group and save.
    Note:
    If you create tolerance groups then the group must be assigned to the users in t.code:OB57 who are posting the transaction. Defining and assigning the tolerance groups to employees is not going to solve, you have to enter the amount ranges of tolerance for G/L document, Customer and Vendor posting.
    In t.code:OBA4 create an entry for your company code. (Group creation is not compulsory). If your requirement permits better keep the group column empty. when no group is created its for all users.Double click on company code and enter upper limits and permitted payment differences and save.In t.code:OBA3 enter the ranges for payment differences and any other columns as per your requirement..
    Regards,
    Biju K

  • While posting miro

    while posting miro iam getting one error
    ie: taxcode v0  country in is not defined in tax procesure lcltax
    but i defined that tax code in my tax procesure and i assigned that to country(In)

    HI SAI VANI
    U have to assign the Tax code to ur co cd. The T.Code for that is OBCl. Just check whether u have assigned that TAxcode to ur CO Cd or not.
    Assign me points if it helps u.
    Regards
    Rajaram

  • Balancing field "Segment" in line item 001 not filled while posting through

    HI All,
    I am experiencing the below error while processing FB70 transaction in Foreign currency with Tax codes (earlier this problem was not there, this is happening recently). The error description as given below.
    "Balancing field "Segment" in line item 001 not filled
    Message no. GLT2201
    Diagnosis
    The field Segment marked as balancing is not filled with any value in line item 001, even after document splitting.
    System Response
    The document cannot be posted.
    Procedure
    First check your entries.
    Additional causes could be:
    No value can be derived for this field from the current document data.
    You have entered a document type that is not designed for this business purpose."
    I have verified all the relevant settings like Classify G/L accounts for document Splitting and Document types etc and all settings are seems to be ok.
    But in the below two instances, Iu2019m not getting any error:
    If posting is done in company code currency with same tax codes.
    If posting is done in  foreign currency without tax codes
    Your early respons is highly appreciated.  Thanks in advance.
    Thanx & Regards
    Ramesh

    Hello
    Have you chosen Segment as Mandatory for the Scenarios during Document splitting. If not then for the G/L account you are facing problems with goto the field status and make segment field optional.
    Thanks and Regards

  • Document splitting issue while posting MIRO transaction

    Hello All
    I have a piculiar  related to document splitting while posting MIRO entry and this issue started after defaulting the profit center
    to the tax gl.
    The scenario is like this
    While posting a vendor invoice document where there is a difference in the invoice value and stock is allready consumedn
    hence system will try to post the difference to the material difference account.
    The following is the asccounting entries
    01 vendor a/c  cr   1000
    02 gr/ir a/c  dr         800       pc from po document
    03 tax g/l                 180       default pc
    04 inventory diff       20  
    the error message
    system is not able to determine the profit center at  line item 04 and message is
    Balancing field "Profit Center" in line item 004 not filled
    The document splitting settings are all standards related to vendor invoice ..................
    One important point to be noted here is that this issue is come after defaulting the profit center at tax gl.
    But we cannot remove those default pc also.
    Can be their any solution on this
    Kindly suggest
    Thanks

    Hi
    In addition to my previous mail i want to add that
    i tried to add even expense item category to splitting rule of business transaction and transaction variant.
    Even then it doers not work.
    other then is as per standard document splitting rule the expense item category is not included in invoice verication buisness transaction.
    Thanks
    alok

  • Dealer Excise Invoice-Issue while posting MIRO

    Dear All,
    Today i was doing Domestic procurement with Dealer for Gas Cylinder. In PO we entered total value which includes Excise amount also (1000+103)& VAT @ 14% (154,42).
    While doing GR i selected as Only captured excise inv, checked MRP indicator.
    Changed the bse value to 1000, entered BED as 100, E Cess as 2 & SEcess as 1.
    The accounting entries were correct, Inventory is posting with Rs 1000
    Posted excise invoice in J1IEX, the values were coming from GR, its correct and the acc entries were also OK with 103 Cenvat clearing acc Cr & Excise acc Dr.
    While posting MIRO, I am facing problems...
    In line item i am getting as 1103 Base value...
    VAT is calculating on (1103+103) @ 14% 168.84,
    so total value is 1271.84
    When i simulate, its showing
    Vendor 1271.84 Cr
    GR/IR clg acc 1000 Dr
    Material 103 Dr
    VAT 168,84 Dr
    There is no cenvat clearing account here
    Please help me how to resolve this.
    Regds,
    CB
    When i simulate

    Hi,
    have you mainatin 100% setoof condition check it it should be there
    check MIRo posting date and excise invoice  posting date
    check condition record validity in FV13
    Regards
    Kailas Ugale
    Edited by: kailasugale on Feb 10, 2012 12:01 PM

  • While installing itunes i am getting error "this installation package could not be opened.verify that the package exists and that you can access it,or contact the appliacation vendor to verify that this is a valid windows installer package"

    While installing itunes i am getting error "this installation package could not be opened.verify that the package exists and that you can access it,or contact the appliacation vendor to verify that this is a valid windows installer package"

    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • While creating RFx getting error

    hi
    we are using SRM 7 SP13 classic scenario.while creating RFx getting error.
    Line 0001: Item type 'Service' not allowed for this Item.
    i created SC with free text and selected type -service .when purchaser is trying to create RFx getting error like
    Line 0001: Item type 'Service' not allowed for this Item
    please suggest if anyone aware about issue.
    Regards
    Vijay Patil

    Hi Vijay ,
    SRM does not support hierarchy in service for operational documents like PO, contract, confirmation and invoice in SRM 7. It does support hierarchy in service only for RFx doucments. You need to activate the hierarchy template for SRM for that.
    This error comes from the validation regarding item process type. You could trace the error by setting an external breakpoint at class /sappssrm/cl_ih_cust_prov, method: get_allowed_ipt.
    Refer Below notes and you would be able to find a solution :
    OSS note Note 1267549 - SRM7.0: Creation of new transaction types for RFx and Quote.
    Note 1428404 - Hierarchy template for a process type historic data maintain
    Note 1333782 - Unable to add Shopping Cart items to Rfx
    Note 1279198 - Advanced hierarchy handling in PPS 7.0 SP2 for PO,SC,CTR,RFX
    Note 1271164 - Hierarchy UI changes for SC (SP02)
    Let me know your comments

  • While configuring mirroing getting error : 1431

    Hi Experts,
    while coniguring mirroring getting error 1431.
    pls  share your ideas.

    Hi vijay,
    According to your description and error message, usually, the error 1431 happen if the mirroring breaks. The principal server is not configured for mirroring any more 
    , but the mirror server still thinks that he is the mirror partner. The state of the Mirror server is 
    “Disconnected”. I recommend you run the following statement at
    the Mirror server.
    ALTER DATABASE “DBNAME” SET PARTNER OFF
    Then remove the mirroring partnership from the mirror server, run the mirroring wizard again on the principal server.
    If the error occurs when Setting up database mirroring with certificates, you can review the following blog.
    http://blogs.msdn.com/b/sqlblog/archive/2011/08/24/setting-up-database-mirroring-with-certificates.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Can't post response, get error

    I Keep getting an Error stating that "your content could not be saved due to an error"  and then to contact my system administrator? Says I might have been logged out, but I am definitely. Showing as logged in and it was a copy paste answer from earlier When I got the error An saved my response.
    i have tried both a windows machine running ie, and my ipad fully updated. Still same error.
    Any ideas why this is?
    Thanks
    jason

    Hi, After I downloaded the Safari 7.1 update, I cannot post a new question here in Apple Discussions, so I'm having to tag into a previous conversation, as that's the only way to get my question in here. Every time I've tried to post, I get the message: "Your content could not be saved due to an error. You might have been logged out. If this problem persists, please contact your system administrator." I have been logged in each time. I have no idea what this error message means. Who is my system administrator? I cannot go to Apple Support directly because I have an iMac Early 2009 and my Apple Care coverage expired long ago. I checked the subject line for length, but it was on the shorter side. Can you help? Thank you very much in advance for your help. My iMac desktop is running OS X Yosemite 10.10

Maybe you are looking for

  • Aio remote and hp7525

    iPhone and iPad apps can't find printer on wifi LAN. Can print from other computers on the network via wifi connection. iPad and iPhone can are on the network. Have done all the HP troubleshooting steps.

  • Result set is too large; data retrieval restricted by configuration

    Hi, While executing query for a given period, 'Result set is too large; data retrieval restricted by configuration' message is getting displayed. I had searched in SDN and I had referred the following link: http://www.sdn.sap.com/irj/scn/index?rid=/l

  • Comparing data size in one table to column widths in another table

    I have data in a table that has a large number of columns, many of them nvarchar of varying widths.  Im trying to take that data and insert it into another table but Im getting the warning message about string or binary data being truncated.  I suspe

  • Problem in software update Nokia 701

    I have updated my 701's software as new update released on 30 march 2012, after updating all apps are running fine except google maps. I have reinstalled gmaps and restarted device several times. Prblem is still. Could I go back to previous software?

  • Changing the micro SIM while travelling

    I'm going to Sweden for 3 months with my Canadian unlocked iPhone4 and I have three simple questions for you experts: 1) If I take out my current Canadian micro SIM, I won't be charged for data, roaming, incoming calls, etc, right? That is, if my SIM