Error message no.AW001 in t code AIAB

Dear sapguru,
While settling the cwip asset through t code AIAB i'm getting an error" There is no line item message no. AWOO1",
but there are line items open in CWIP asset.
Kindly provide the suitable solution for the mentioned error.
Thanks & regards,
Pramod Chavhan

Dear Pramod1984
At the time when you created the AUC, the settings for the asset class were different. There was no line item indicator
Now you have changed the setting manually on the asset. But still there a no line items created for the postings.
So the only option to create new AUC and to reverse the postings on the old AUC and post it to the new AUC.
Regards
Shankar

Similar Messages

  • When we post Inbound Invoice IDocs, we are getting an error message "Enter a tax jurisdiction code".

    Hi Experts,
    When we post Inbound Invoice IDocs, we are getting an error message "Enter a tax jurisdiction code". As checked, we have configured OBCD and OBCA for the vendor and we are passing the Tax Jurisdiction code in E1EDP04 SAL segment. Can anybody give us some idea to resolve this issue.
    Regards,
    Sameek

    Hi Sameek,
    Please refer the below link. Hope it helps.
    http://scn.sap.com/thread/1435286
    Regards,
    Chandan.

  • I am trying to re-install Creative Suite 5.5 Design Standard on my Widows 7 Professional computer after I had to replace the hard drive. I keep getting error message and I get "Exit Code 15: Media DB Sync failed". I have run C Cleaner with same results. H

    I am trying to re-install Creative Suite 5.5 Design Standard on my Widows 7 Professional computer after I had to replace the hard drive. I keep getting error message and I get "Exit Code 15: Media DB Sync failed". I have run C Cleaner with same results. Have Disabled UAC and Startup items and Services with no success. Please help - frustrated to no end. Can someone help me?

    make sure you're using the adobe cleaner, not crap cleaner, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    copy the installation files to a desktop folder and install from there.

  • Every time i try to download the update for my iPhone through itunes, An error message shows up!  The code is -39

    Every time i try to download the update for my iPhone through itunes, An error message shows up!  The code is -39  Please help! I need to restore my Iphone but it makes me Download the update to IOS 6 first and it doesnt download

    i am having the same problem, my error message is that basically it (connection) has timed out! i have tried all day to get it to go thur

  • Scanning problem. Receive error message: cannot write file. Code 10,242,7. Please help

    I just purchased and installed a Canon MX 922 multi-function printer. I'm having a problem with the scanner in that the output after scanning cannot be displayed and is accompanied with an error message : Cannot write file. Code 10,242,7. This occurs when scanning documents and images. My operating system Windows XP (32).  Can anyone please help me solve this problem? Thank you.  

    Hello. Please try the following adjustment to see if we can resolve this issue: 1.  Open the IJ Scan Utility from your Desktop or the Canon Utilities listing of the Start Menu.2.  Click Settings.3.  On the left, choose the Auto Scan tab.4.  Click the Defaults button on the lower right.5.  Continue this process with each tab on the left.6.  Click OK at the bottom of the Settings menu. Once this has been done, try scanning from the IJ Scan Utility to test the unit. If these troubleshooting steps do not work, feel free to call us at 1-800-OKCANON.

  • When synchig my iphone to my itunes, I get an error message at the end with code 1150.  What is this error code and what does it mean?

    When synching my iphone to my itunes, I get an error message at the end with code 1150.  What is this error code and what does it mean?

    try uninstalling and reinstalling itunes on your computer. here is a link for that http://support.apple.com/kb/HT1925

  • HT201303 I have changed all of my billing info to the correct info. Why am I still getting an error message that says invalid security code?

    I have changed all of my billing info to the correct info. Why am I still getting an error message that says invalid security code?  I have an IPod.

    Welcome to the Apple Community.
    The following article(s) may help you.
    Credit card security code or postcode issues.

  • Error message while compling the following code.can some body help me?

    Hi all,
    I wrote a simple program which connects to oracle 9i which uses thin driver,
    the following code is
    import java.io.*;
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.sql.*;
    import javax.sql.*;
    class JdbcVersion
    public static void main (String args[])
    throws IOException, SQLException
         //Register Oracle's Driver
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         //Build the connection string.
         String connString ="jdbc:oracle:thin:@(description=(address_list=" +
    "(address=(protocol=tcp)(port=1521)(host=home-f831b673e0))" +
    "(address=(protocol=tcp)(port=1521)(host=home-f831b673e0)))" +
    "(connect_data=(sid=PLSExtProc))" +
    "(source_route=yes))";
    Connection conn = DriverManager.getConnection(connString, "<username>", "<password>");
    // Create Oracle DatabaseMetaData object
    DatabaseMetaData meta = conn.getMetaData();
    // gets driver info:
    System.out.println("JDBC driver version is " + meta.getDriverVersion());
    and after compling this code i am getting an error message that
    C:\>java JdbcVersion
    Exception in thread "main" java.sql.SQLException: Io exception: Software caused
    connection abort: recv failed
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at JdbcVersion.main(JdbcVersion.java:24)..
    can any one help me in this regards??

    hi nthali,
    now i wote a simple code as you suggested....and again encontering with new problem
    import oracle.jdbc.*;
    import java.sql.*;
    public class Test {
    public Test() {
    public static void main(String[] args) {
    Test test1 = new Test();
    test1.test();
    public void test(){
    try{
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn = DriverManager.getConnection("jdbc:Oracle:thin:@localhost:PNPKEY:'scott':'tiger'");
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("select * from player");
    while(rs.next()){
    System.out.println(rs.getString("id"));
    // System.out.println(rs.getString("name"));
    catch(Exception e){
    e.printStackTrace();
    this is java code...
    and while running it is giving me an error like this....
    C:\work>java Test
    java.sql.SQLException: invalid arguments in call
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.check_error(DBError.java)
    at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at Test.test(Test.java:14)
    at Test.main(Test.java:9)...
    can you help me??? in this problem...please??

  • VI02 - Error message while assigning G/L code to shipment in Vi02 tcode.

    Hi All,
    When I assign G/L code in VI02(Shipment cost) to a shipment then when I press enter or copy button an error message is generated saying "Chk S Loc-VL02N/Maintain YRVX001/002". What is this error, how can I check this, I mean how to rectify. But same is working in my quality server. Kindly note that the above error is in production server. Kindly help.
    Regards
    Rajesh Vasudeva

    Hi,
    It seems to be some missing customization in Production.
    Your Functional Consultant might have done some customization for this in SPRO and transported it to Quality only.
    Please check for the released request regarding this or discuss with SD Functional.
    Regds,
    Anil

  • Mail form editor: error message regarding "non-secure active code"

    Hi,
    I'm using the editor for mail forms in CRM 2007. I'd like to create a form containing pictures, personalized fields (e.g. salutation) and hard-coded text.
    However, when stepwise adding all of these elements, error message "The content you have entered may contain non-secure active code; so it has been deleted." is displayed in the screen where all elements are shown, so, some kind of WYSIWYG error message. It's not a message of the browser, it's displayed directly in the middle of the content screen and all text, images and fields inserted in the mail before are gone.
    Any idea?
    Regards
    Wolfgang

    Hi,
    In one of my previous project I had similar type of issues when designing the mail form, the HTML code changes were happening. SAP follows specific HTML version and you have to stick to that version when coding. Ideal would be design the HTML code and test it bit by bit to ensure that the same is acceptable.
    Regards,
    Deepak
    P.S. English word for ausführbaren is probably executable
    Edited by: Deepak Ahuja on Feb 10, 2009 1:28 PM

  • Re: Scanning problem. Receive error message: cannot write file. Code 10,242,7. Please help

    hi. my error message is very close to this except it says 10,243,7 cannot read file instead of write file. i tried all the fixes listed here in this forum as well as just about everything else everyone else on here has listed on the net and even called canon and tried all their fixes as well to no avail. any ideas?
    [open window, place pc at edge gently tip and OOPS! crash! ]
    is anyone else getting this error message and if so; how'd you get around it?
    fixes tried:
    uninstalling
    reinstalling
    [several times]
    deleting all folders canon
    ccleaner-both the sweep and registry options with backups of course.
    sfc /scannow
    chkdsk
    thanks,
    pf

    Hi, pf!
    So that the Community can help you better, we will need to know exactly which operating system is running on your computer. That, and any other details you'd like to give will help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks and have a great day!

  • Getting Error Message on the MC84 transaction code MG144

    The field  is defined as a required field; it does not contain an entry ... Message no. MG144 ...
    We are unable to get past the initial screen of the t-c mc84. getting the above error. The product group's material type is PROD. The only reqd entry in the screen is the base unit of measure which I am entering as EA (eaches)
    We have included the views Basic Data1 & MRP1 for this material type.
    I learnt that for mc84 to be successfull, no other views for the material/ prod-group shall contain any required entries. So I figured out some of the entries such as 'profit centre' and made it optional. However, I was not able to make the MRP-type as optional. someone suggested to remove the MRP view to eliminate the error.
    Nothing is working, how to make the mc84 t-code work?

    Dear Raghu,
    Check these links,
    how to create product group?error?
    Product group error
    If this does helps you means please revert back.
    Regards
    Mangalraj.S

  • Error message when trying to access Code in Visual Studio Online project.

    I have been using visual studio online for a while. Last week I connected azure console to my visual studio online account so that I could add an additional person to one of my projects.
    After that, I create a new Git based project. From the outset in the outset, I have been receiving a message in code explorer in the new project:
    The items requested either do not exist on the server at the specified versions, or you do not have permission to access them.Hide details
    TFS.WebApi.Exception: The items requested either do not exist on the server at the specified versions, or you do not have permission to access them. at b.a._getFailedRequestError (https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:3204)
    at https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:2285 at b.a._handleRequestFailure (https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:2931)
    at Object.<anonymous> (https://*******.visualstudio.com/_static/tfs/20150113T200222/_scripts/TFS/min/corejs?v=RGgj5lMwHLD78kGD2wBxR4uHtflIGwSdmCEhWbtUphc1:52:2225) at l (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:16996) at Object.c.fireWith
    (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:17783) at T (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:81036) at XMLHttpRequest.r (https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js:2:86563)
    Accessing the project from Git tools connected fine and I was able to commit successfully, however, I don't know if the code is in the repo, because I cannot browse it on the website. Am still getting the message above.
    I can explore code for any of my other project without issue. All but one of my projects is using git.
    Any ideas?
    Thanks

    Hi Richie42,
    I'd like to know whether you can push the commits to remote git repository, and when this issue occurred. When work with Git team project in Visual Studio Online, you have to clone the Git repository to local, and work with it.
    You can also check if your have permissions to this team project in security page of team web access. Or
    run
    tfssecurity command in VS command line to have a check. Please execute tfssecurity /imx “MS account” /collection:url, for more information about tfssecurity /imx, please refer to:
    http://msdn.microsoft.com/en-us/library/ms400806.aspx
    Another option is clean team foundation cache, delete credentials in credential manager and delete browser cookies. Restart the Visual Studio to have a try. If the issue persists, please elaborate more details about your scenario with the reproduce steps.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • What are the cause and fix for the following error message? NS_ERROR_FILE_ACCESS_DENIED failure code: 0x80520015

    Every time I close my Firefox browser I receive the following error message (see details below).
    FYI:
    -- I am running the current version of Firefox.
    -- I had no problems with this error message until my computer was recently attacked by 2 viruses:
    ` SystemFix
    ` Win7 Antivirus 2012
    Both viruses have since been cleaned from my computer. However, I am still receiving this error message.
    Here are my questions:
    * What are the cause and fix for this problem?
    * Do I need to uninstall and reinstall Firefox?
    * Is it possible that this error message is related to an add-on and that it has nothing to do with the recent virus attacks?
    I look forward to any feedback and support you might be able to provide.
    Thanks,
    Metta
    Error Message
    NS_ERROR_FILE_ACCESS_DENIED
    Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)
    [nsIFileOutputStream.init]
    File: undefined
    Line: 857
    Stack: undefined

    Every time I close my Firefox browser I receive the following error message (see details below).
    FYI:
    -- I am running the current version of Firefox.
    -- I had no problems with this error message until my computer was recently attacked by 2 viruses:
    ` SystemFix
    ` Win7 Antivirus 2012
    Both viruses have since been cleaned from my computer. However, I am still receiving this error message.
    Here are my questions:
    * What are the cause and fix for this problem?
    * Do I need to uninstall and reinstall Firefox?
    * Is it possible that this error message is related to an add-on and that it has nothing to do with the recent virus attacks?
    I look forward to any feedback and support you might be able to provide.
    Thanks,
    Metta
    Error Message
    NS_ERROR_FILE_ACCESS_DENIED
    Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)
    [nsIFileOutputStream.init]
    File: undefined
    Line: 857
    Stack: undefined

  • Error Message in Code Behind Visual Web Part

    I want to show validation message in code behing when i click submit button,below is my code
    <asp:TextBox ID="txtBoxName" runat="server" Width="50%"></asp:TextBox>
    <asp:RequiredFieldValidator ID="rfvCompanyName" ControlToValidate="txtBoxName"
    ValidationGroup="RegistrationGrp" SetFocusOnError="True" runat="server" Text="*" ErrorMessage="Please Enter Name"></asp:RequiredFieldValidator>
    protected void btnSubmit_Click(object sender, EventArgs e)
    i want to show this error message "Please enter name"
    from code behind,how do i do that??

    I am inserting item from the input textbox in the sharepoint list in submit button like below,so i did what u suggested in that click event
    protected void btnSubmit_Click(object sender, EventArgs e)
                   if (!Page.IsValid)
                        rfvCompanyName.ErrorMessage = "test test";
                        return;
                        using (SPWeb web = site.OpenWeb())
                            SPList list = web.Lists["Company Details"];
                            SPListItem item = list.Items.Add();
                            item["Title"] = txtBoxName.Text;
                            item.Update();
    but it's not showing this message,please suggest what i am missing

Maybe you are looking for

  • I'm Sorry, I Have To Vent

    My company purchased Captivate shortly before the buy-out. It sounded like a great product. It looked very promising. However, it did not work with my Sony VIO's built-in sound card. (Well, Macromedia would say it worked, you just couldn't record nar

  • 'Program Files' contains an invalid character when installing iTunes 10.5

    I'm getting an error when I try to install iTunes 10.5: "The folder path 'Program Files' contains an invalid character". Nothing has changed on my machine, I don't see any invalid characters in the path where I'm installing iTunes, and I have now tri

  • How do I install Lion on both SSD and HDD in my new iMac 27"

    When I try to install Lion on my new iMac 27", it offers to install it on either my 256 SSD or on my 1TB HDD. I haven't gone ahead with the installation, in case it can't be installed on the bigger disc (i.e., the 1TB HDD). I'd be very grateful for a

  • Multiple iPhones, sending things to each we don't want!

    iCloud is "getting" my family in ways we didn't realize it could. Situation, 3 iPhones, 1 for me and my wife, and then we have her mother on our account too but she doesnt live with us.We also have an iPad. Wife or I set a reminder, mother also gets

  • Captivate 7 - silent install?

    I'm trying to create a silent install package for Captivate 7.  It doesn't appear that this works with AAMEE.  Has anyone been able to do this?  If it won't be possible with AAMEE, is there a way to do it with cmd line switches?