Getting an Error after BD14

Hello ,
We are using MM SUS scenario, I did necessary configuration.
After BD14 (Send Vendor from R/3  to SUS) , I am getting an following error message in WE02 in outbound IDOC (CREMAS05).
Please suggest some solution ,thank in advance.
Class type ALV , receiving system XXXX200 : no list maintained
Message no. B1023
Diagnosis
The ALE distribution model specifies that, for the logical receiving system XXXX200, data is selected via classification lists. There is no list maintained for class type ALV for this receiving system.
Procedure
Maintain lists for this receiving system in the IMG or deactivate the receiver determination in the receiver lists.
XXXX200 is SRM SUS system
Sunil

Hi Sunil,
Kindly use t-code XK02 : Choose the vendor you wish to send to SUS from MM. Go to the Environments tab in the menu---choose Clasification and here mention the Message class you had created earlier. This message class contains your reduced message type ZCREMAS_SUSMM. Now save this data and send this vendor via BD14.
Let me know in case of any queries
Regards,
Nikhil

Similar Messages

  • I'm getting this error after I edit photos 'nothing was imported. What is causing this?

    I'm getting this error after I edit photos 'nothing was imported. the files or folder selected to import did not contain any supported file types, or files are already in this catalog.I have elements 13 using hp windows 8 laptop and never had this happen before.

    Hello staceonbass,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Check for .dll files
    Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    Uninstall iTunes and all of its related components.
    Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
    Re-download and reinstall iTunes 11.1.4.
    Best of luck,
    Mario

  • Im getting this error after trying to laounch SQL*Plus

    Hallo, guys!
    Help me on this one. I'm new to Oracle on Windows 2000 Professional
    Im getting this error after trying to laounch SQL*Plus
    Error 6 Initializing SQL*Plus
    Message file spl<lang>.msb not found
    SP2-0750:You may need to set ORACLE_HOME to your Oracle Software directory
    Urgent please respond
    Thanks
    sridhar

    Verify the contents of the following subkey in your Windows2000 registry:
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_YOUR_HOME_NAME
    Your Windows 2000 registry must contain several minimum parameters, defined as registry entries inside the above subkey (See http://download-east.oracle.com/docs/cd/B19306_01/win.102/b14304/registry.htm#i1006544). One of them is ORACLE_HOME, which could have been accidentally removed or changed. ORACLE_HOME must contain the home OS path to the SQL*Plus executable in your machine (For example, C:\Oracle\OraDB10g). I tried changing the name of the ORACLE_HOME registry entry in my machine and received the same exact messages you did when launching SQL*Plus.
    In your OS, verify also Control Panel > System Properties > Advanced > Environment Variables > System Variables > Path, and make sure the above ORACLE_HOME's path is included in the Path variable (preferably in the starting position)
    Regards,
    Luis Morales
    ConsiteNicaragua.com

  • When I create a new email and start typing, I get an error after two characters

    This has been bothering me for months.
    When I create a new email and start typing, I get an error after two characters (see below). I thought maybe it was a particular person's contact, or it was because I typed too fast, but it is not. Doesn't matter what email address I use, or how long I wait, the first address errors and I have to erase it and start over. Sometimes I have to try several times.
    Very annoying. I am using the latest build of Safari on a Mac.
    Any help would be greatly appreciated.
    Bryan
    <Image Edited for Personal Information>

    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See also [[Basic Troubleshooting|#Make_a_new_profile|Basic Troubleshooting: Make a new profile]]

  • Why do i get an error after resetting Time Capsule?

    Hi *,
    I recently reset (and also factory reset) my Time Capsule. It showed up in AirPort Utility.
    Then after 10 mins (or less), when i open up the AirPort utility again, i get this error:
    "Time Capsule was previously part of your network. Check that it is still in range of your network and is plugged into a power outlet. Click forget to remove this base station from this network."
    The light on the TC is green and steady and it is absolutely in the range of my netwrok. I also have the LAN cable plugged in. Please let me know what am i doing wrong.
    Regards,
    Arindam.

    Remove at least one of the networks.. so use ethernet.. turn wireless right off.
    If you still have issues.. tell us.

  • I keep getting 'unknown error' after clicking 'install app' when trying to download Mavericks from the App store.

    Trying to install Mavericks from the App store on my 2011 11" Macbook air, (wihch has more than 15GB free space).  After clicking 'Install App', and entering the Apple ID password, I get 'unkonwn error'.

    You can't use Safari to download iPad apps. Only use iTunes/App Store.
     Cheers, Tom

  • Get an error after updating the core properties

    Hello,
    I have just started using Open XML and I am trying to do something really simple to get and set the core properties of a document. I am using the following code
    public static void getProps(String fileName)
    WordprocessingDocument document = null;
    try
    document = WordprocessingDocument.Open(fileName, false);
    var docProps = document.PackageProperties;
    Console.WriteLine("Category " + docProps.Category);
    Console.WriteLine("ContentStatus " + docProps.ContentStatus);
    Console.WriteLine("ContentType " + docProps.ContentType);
    Console.WriteLine("Created " + docProps.Created);
    Console.WriteLine("Creator " + docProps.Creator);
    Console.WriteLine("Description " + docProps.Description);
    Console.WriteLine("Identifier " + docProps.Identifier);
    Console.WriteLine("Keywords " + docProps.Keywords);
    Console.WriteLine("Language " + docProps.Language);
    Console.WriteLine("LastModifiedBy " + docProps.LastModifiedBy);
    Console.WriteLine("LastPrinted " + docProps.LastPrinted);
    Console.WriteLine("Modified " + docProps.Modified);
    Console.WriteLine("Revision " + docProps.Revision);
    Console.WriteLine("Subject " + docProps.Subject);
    Console.WriteLine("Title " + docProps.Title);
    Console.WriteLine("Version " + docProps.Version);
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    finally
    document.Close();
    and
    public static void setProps(String fileName)
    WordprocessingDocument document = null;
    try
    document = WordprocessingDocument.Open(fileName, true);
    var docProps = document.PackageProperties;
    docProps.Category = "test21";
    docProps.ContentStatus = "test21";
    docProps.ContentType = "test21";
    docProps.Created = DateTime.Now;
    docProps.Creator = "test21";
    docProps.Description = "test21";
    docProps.Identifier = "test21";
    docProps.Keywords = "test21";
    docProps.Language = "test21";
    docProps.LastModifiedBy = "test21";
    docProps.LastPrinted = DateTime.Now;
    docProps.Modified = DateTime.Now;
    docProps.Revision = "test21";
    docProps.Subject = "test21";
    docProps.Title = "test21";
    docProps.Version = "test21";
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    finally
    document.Close();
    after I call the setProps if I try to open the word document with word I will get an error that says
    file xxx.docx cannot be opened because there is a problem with the contents
    and then tells me that it has found some unreadable context and if I would like restore the document.
    could someone tell me what I am doing wrong? and why this is happening.
    cheers,
    Ehsan 

    Hi Ehsan,
    Thanks for posting in MSDN forum.
    According to your description, the document couldn't be open after set the package properties for it.
    After the investigation, I found that we couldn't set a string value for the
    Revision package property. Here is the statement:
    The Revision property indicates the number of changed saves or revisions.
    The application is responsible for updating the Revision property value after each revision
    After I change it to a number the code works well for me. For example:
    docProps.Revision = "2";
    Also here is the link for this property for your reference:
    PackageProperties.Revision
    Property
    Regards & Fei
    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.

  • I keep getting an error after downloading the Mavericks upgrade

    I have a 2011 mac mini running Lion 10.7.5  that I want to upgrade to mavericks. I have not had it very long so I hardly have anything on it. I have downloaded and installed all of the updates and verified that the hdd is ok and downloaded the free Mavericks upgrade then when it finishes the  5.30 gb file download I get an error and a cancel or retry option. Did this 3 times. I would appreciate any help or ideas that anyone can suggest. Thanks

    HI, Thanks for asking but although i can use wifi, I made sure that I am using the wired ethernet for the upgrade. It will complete the download but just as soon as it completes the 5.30 gb file that is when I get the error. I think that I have everything covered on the check list as far as preparing it for Mavericks. I have no hardware hooked up to it only usb keyboard and bluetooth mouse. I even unhooked the super drive. After doing some checking I'm not so sure that the upgrade is worth it. I have a program I want to install that says requrements are Mac OSX 10.8 or higher that is why I wanted to do it but the majority or people seem to be having serious issues with Mavericks. I'm starting to think it may not be worth the trouble. Thanks for your reply

  • Still getting 553 error after verifying email addr...

    Even after having verified a new email address using the email sent from BT/Yahoo I still get the 553 Error stating that the email address needs to be verified. I am going around in circles. Anyone else had this problem? I am using Outlook 2010.

    Observer wrote:
    I'm having the same issue -- unsolvable 553 errors.   One part of the system claims my addresses are verified, another part claims they are not verified.
    I have done everything possible listed in BT Yahoo help guide, and more:
    1/  We have 10 addresses on personal doimains which work OK for sending email via mail.btinternet.com from our master account ([email protected]) via Outlook 2003 SP3
    2/  We had a number of additional verified addresses which until recently worked OK via sub accounts ([email protected] and [email protected])
    3/  Some months ago, when BT Yahoo changed the system in some way, the previously-verified addresses in the sub accounts stopped working and started getting 553 errors
    4/ I have tried ABSOLUTELY EVERYTHING I can find suggested in the help system to get these additional addresses to send via mail.btinternet.com, but they still get 553 errors
        The following recipient(s) could not be reached:
               'Xxxxx Xxxxxxx' on 05/11/2010 10:19
                    553 From address not verified - see http://www.btyahoo.com/verify
    5/ I have further fresh new addresses, and verified them, and got the confirmation message. But they still get 553 errors
    6/ The BT Yahoo system claims that these email addresses have been verified OK
       Thanks Xxxxx! Your email address has now been verified.
        You have successfully added an email address to your BT Yahoo! account.
    7/  But the addresses only work for sending via BT Yahoo webmail
    8/ They DO NOT work for sending via Outlook through mail.btinternet.com – they always get a 553 message saying they are not verified
                    553 From address not verified - see http://www.btyahoo.com/verify
    9/ I have tried sending via Outlook 2003 SP3 on two computers, and via Outlook 2007 on a third computer – all get 553 errors
    10/ I have downloaded and used MDBVU32, and there is no stuck Read Receipt
    11/ Several years ago, when BT Yahoo started giving 553 errors, I discovered that BT Yahoo verification has a memory – you can only create a fixed 10 in an account, and if you delete one of the ten and substitute a new address, the substitute will get 553 errors whatever you do to verify it. But you can reinstate the original.  This does not seem to be documented in the help system.
    12/ This means I cannot simply swap in a newly-verified address to the master account, or an existing sub account which has reached 10
    13/ Hence I have created a fresh new sub account, and in that I have created fresh new email addresses (so there is no memory effect), and verified them.
    14/  But whatever I do they STILL get 553 errors, even after http://www.btyahoo.com/verify has told me they have been verified.
    ANY HELP WOULD BE EXTREMELY WELCOME! 
    From: System Administrator
    Sent: 05 November 2010 10:19
    To: Xxxxxx Xxxxxxx
    Subject: Undeliverable: testing email from Xxxxxx 
    Your message did not reach some or all of the intended recipients.
          Subject:             testing email from Xxxxxxx
          Sent:                 05/11/2010 10:19
    The following recipient(s) could not be reached:
          'Xxxxxx Xxxxxxx' on 05/11/2010 10:19
                553 From address not verified - see http://www.btyahoo.com/verify
    Hi.
    You've done pretty much everything, and covered all bases. Indeed my shortcuts (option 0e) which was written before the BT version still contains more and better info that the BT one. Indeed your points 11 and 12 were certainly correct at the time as I had also pointed out.
    However the system has indeed altered recently, actually making it easier to verify and delete items.
    I usually mention for folk to pop to :-
    https://edit.yahoo.com/commchannel/manage
    entering the relevant full BTinternet email address as the Yahoo! ID. You may see entries hidden in the usual email verification area.
    However I do feel that there are some problems with the system, which may actually manifest itself in the results you are seeing.
    I've not personally had any errors myself, and have tried various things over the years too. None of my stuff has failed.
    You may like to drop me an email via my shortcuts option 0e and I'll see if I can help further.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Getting unknown error after upgrading iTunes (-3212)

    Has anyone else gotten this error after last upgrade?  I only get it when trying to connect to the store and it says it check my internet connection and try again.  I have an internet connection and I've tried repairing/reinstalling iTunes.

    I am having the exact same problem. I checked what version of Airpot Utility I am using and it is 6.3.
    I checked for any updates and there was one for Front Row. The update said it would fix problems with ITunes also. But still no luck.
    Can anyone help?
    Thanks

  • Getting connection error after installing Web Dispatcher for JAVA engine

    Hi SAP Guru's,
    I have installed Web Dispatcher instance on solution manager server machine for Production JAVA portal. I am getting below error when I am trying to access Production JAVA portal.
    500 Dispatching Error
    Error: -26
    Version: 7000
    Component: HTTP_ROUTE
    Date/Time: Sat Feb 05 16:18:12 2011 
    Module: http_route.c
    Line: 3139
    Server: ERPSOL_WDP_04
    Error Tag:
    Detail: no valid destination server available for '!ALL' rc=13
    Where as I have define all suitavle parameters in Web Dispatcher instance profile
    SAPSYSTEMNAME = WDP
    SAPGLOBALHOST = ERPSOL
    SAPSYSTEM = 04
    INSTANCE_NAME = W04
    DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTAMD64
    DIR_EXECUTABLE = $(DIR_CT_RUN)
    Accesssability of Message Server
    rdisp/mshost = sapepjlg.pdilnoida.com
    ms/http_port = 8102
    Configuration for medium scenario
    icm/max_conn = 500
    icm/max_sockets = 1024
    icm/req_queue_len = 500
    icm/min_threads = 10
    icm/max_threads = 50
    mpi/total_size_MB = 80
    SAP Web Dispatcher Ports
    icm/server_port_0 = PROT=HTTP,PORT=8105
    Please help on this as I have to deliver this before go live.
    Regards,
    Bijay

    Hi Bijay,
    Please check if services /public/icman, /public/icm_info are active & accessible in SICF(in case of Dual stack system) tx.
    Regards,
    Neeraj

  • Why am I getting this error after installing the Compatibility report

    load: TypeError: Components.classes['@checkpoint.com/XPCOMTrustCheckerMozilla/TrustCheckerMozilla;1'] is undefined
    My google search box quit working so I installed the Compatibility report and now I am getting this error when I start Firefox.How do I fix this?
    Thanks

    This issue is caused by an extension that isn't working properly.
    Start Firefox in Safe Mode to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme:'' Firefox (Tools) > Add-ons > Appearance/Themes).''
    '''-Don't make any changes on the Safe mode start window.'''
    [https://support.mozilla.com/kb/Safe+Mode]
    [https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes]
    '''Disable any extension or add-on relating to Checkpoint or ZoneAlarm software that is currently enabled and installed in Firefox. This should fix it, I personally had same problem with Zone Alarm products. '''

  • I keep getting an error after updating to Mavericks:To open "MLBNexDefAutobahn" you need to install the legacy Java SE 6 runtime.

    I keep getting this error.  I have tried to look for "uninstall nexdef," but can't find it.  Any thoughts?

    This is the java you need from apple
    http://support.apple.com/kb/DL1572

  • Getting an Error after reading a excel file

    hi
    I am reading a excel file using POI
    my code is
    package businessLogic;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import org.apache.poi.hssf.eventusermodel.HSSFEventFactory;
    import org.apache.poi.hssf.eventusermodel.HSSFListener;
    import org.apache.poi.hssf.eventusermodel.HSSFRequest;
    import org.apache.poi.hssf.record.BOFRecord;
    import org.apache.poi.hssf.record.BoundSheetRecord;
    import org.apache.poi.hssf.record.LabelSSTRecord;
    import org.apache.poi.hssf.record.NumberRecord;
    import org.apache.poi.hssf.record.Record;
    import org.apache.poi.hssf.record.RowRecord;
    import org.apache.poi.hssf.record.SSTRecord;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;
    * This example shows how to use the event API for reading a file.
    public class EventExample implements HSSFListener
    private SSTRecord sstrec;
    * This method listens for incoming records and handles them as required.
    * @param record The record that was found while reading.
    public void processRecord(Record record)
         try
    switch (record.getSid())
    // the BOFRecord can represent either the beginning of a sheet or the workbook
    case BOFRecord.sid:
    BOFRecord bof = (BOFRecord) record;
    if (bof.getType() == bof.TYPE_WORKBOOK)
    System.out.println("Encountered workbook");
    // assigned to the class level member
    } else if (bof.getType() == bof.TYPE_WORKSHEET)
    System.out.println("Encountered sheet reference");
    break;
    case BoundSheetRecord.sid:
    BoundSheetRecord bsr = (BoundSheetRecord) record;
    System.out.println("New sheet named: " + bsr.getSheetname());
    break;
    case RowRecord.sid:
    RowRecord rowrec = (RowRecord) record;
    System.out.println("Row found, first column at " + rowrec.getFirstCol() + " last column at " + rowrec.getLastCol());
    break;
    case NumberRecord.sid:
    NumberRecord numrec = (NumberRecord) record;
    System.out.println("Cell found with value " + numrec.getValue()+ " at row " + numrec.getRow() + " and column " + numrec.getColumn());
    break;
    // SSTRecords store a array of unique strings used in Excel.
    case SSTRecord.sid:
    sstrec = (SSTRecord) record;
    for (int k = 0; k < sstrec.getNumUniqueStrings(); k++)
    System.out.println("String table value " + k + " = " + sstrec.getString(k));
    break;
    case LabelSSTRecord.sid:
    LabelSSTRecord lrec = (LabelSSTRecord) record;
    System.out.println("String cell found with value " + sstrec.getString(lrec.getSSTIndex()));
    break;
         catch(Exception ex)
    * Read an excel file and spit out what we find.
    * @param args Expect one argument that is the file to read.
    * @throws IOException When there is an error processing the file.
    public static void main(String[] args) throws IOException
    // create a new file input stream with the input file specified
    // at the command line
         try
              FileInputStream fin = new FileInputStream("C:/FTERPending/FTER format.xls");
              // create a new org.apache.poi.poifs.filesystem.Filesystem
              POIFSFileSystem poifs = new POIFSFileSystem(fin);
              //      get the Workbook (excel part) stream in a InputStream
              InputStream din = poifs.createDocumentInputStream("Workbook");
              // construct out HSSFRequest object
              HSSFRequest req = new HSSFRequest();
              // lazy listen for ALL records with the listener shown above
              req.addListenerForAllRecords(new EventExample());
              // create our event factory
              HSSFEventFactory factory = new HSSFEventFactory();
              //      process our events based on the document input stream
              factory.processEvents(req, din);
              // once all the events are processed close our file input stream
              fin.close();
              // and our document input stream (don't want to leak these!)
              din.close();
              System.out.println("done.");
         catch(Exception ex)
    It prints correctly the output at the console and after that it throws an exception as
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at org.apache.poi.hssf.record.RecordFactory.createRecord(RecordFactory.java:224)
         at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.genericProcessEvents(HSSFEventFactory.java:183)
         at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.processEvents(HSSFEventFactory.java:101)
         at businessLogic.EventExample.main(EventExample.java:103)
    Caused by: java.lang.ArrayIndexOutOfBoundsException
         at java.lang.System.arraycopy(Native Method)
         at org.apache.poi.hssf.record.UnknownRecord.<init>(UnknownRecord.java:62)
         at org.apache.poi.hssf.record.SubRecord.createSubRecord(SubRecord.java:57)
         at org.apache.poi.hssf.record.ObjRecord.fillFields(ObjRecord.java:99)
         at org.apache.poi.hssf.record.Record.fillFields(Record.java:90)
         at org.apache.poi.hssf.record.Record.<init>(Record.java:55)
         at org.apache.poi.hssf.record.ObjRecord.<init>(ObjRecord.java:61)
         ... 8 more
    I am not getting why this exception is cming
    can anyone help me pls reply

    Does your Excel file has the "AutoFilter" activated?
    If that is the problem, you have here a solution for reading a file with AutoFilter : http://article.gmane.org/gmane.comp.jakarta.poi.user/4690

  • [SOLVED] Getting theme errors after a recent upgrade in gtk3 apps

    I have recently started getting errors like these after a recent upgrade.
    (nautilus:12329): Gtk-WARNING **: Theme parsing error: *-*:*:*: Not using units is deprecated. Assuming 'px'.
    Full error while opening nautilus can be see here. http://sprunge.us/IQOM
    Relevant pacman log: http://sprunge.us/YYgY
    ~/.config/gtk-3.0/settings.ini :  http://sprunge.us/VJMT
    I have tried few themes (Fear, Hope, Aldabra), all seem to give me this error. Also, theme Fear broke (gave white text with white background) after the upgrade.
    Can anyone else reproduce this error?
    If there is any theme that doesn't have problems with updated system, please share.
    Last edited by shadyabhi (2012-04-28 02:41:54)

    shadyabhi wrote:Can anyone else reproduce this error?
    Apparently yes:
    https://bbs.archlinux.org/viewtopic.php?id=140402
    https://bbs.archlinux.org/viewtopic.php?id=140277
    There are a couple other threads as well - some have alleged solutions, or at least some themes that work.

Maybe you are looking for

  • "Unable to set shared config DC." when running setup /RecoverServer

    Hi guys, I'm hoping for a bit of assistance. I have stepped into an environment where there is one production Exchange 2010 server and one Exchange 2013 server. The Exchange 2013 server is in a unrecoverable state however it contains the domain admin

  • Workflow - Force Document Attachment for Journal Entries

    Is there a way to use workflow to force a user to attach a document prior to posting to the GL?  If this posting should be in another forum any guidance would be appreciated as well.

  • Girlfriend took my Samsung... Any 37/39" TV's compatible with DVI / 1080p?

    I used to have my Macmini hooked up to my 32" Samsung via the HDMI-VGA adapter. EX girlfriend took my tv, and im wondering how things have improved in terms of compatibility between MacMini and and newer LCDHD TV's that have actual DVI inputs on them

  • Finder Crashes when connecting to a network device

    Every time I try to connect to a shared device in finder in the sidebar, finder crashes.  I can still connect to them by going to my computer -> network -> shared device but I'd really prefer to be able to just click on the shared device. It did this

  • POS SAP Integration

    Hi we are doing SAP and POS(Non SAP system) interfacing using XI. For master data distribution we are using change pointers . I convert the IDOC structure to target file structure in XI.this file  i am sending to POS server thru XI. Now i need to mod