A Problem with "Unknown controlller �MD21�

Hi ! Goog morning
Please,
I have been looking for some solution at sunsolve.com, for the following problem which took place after the installation of solaris 10 in a SFV440.
Unknown controller �MD21�- /etc/format.dat (15)
Unknown controller �MD21�- /etc/format.dat (20)
Unknown controller �MD21�- /etc/format.dat (167)
Sunsolve states, the following work around:
Work Around: Manually remove MD21 entries from format.dat following upgrade
The description is:
Description: The MD21 EOF has been completed. A class action script is required to ensure that the correct format.dat entries are removed on an upgrade to S10 or format will spew annoying messages about an unsupported controller type.
I understand that at first i need to remove MD2 entries in /etc/format.dat ( Can I edit this file?)
After i �m going to run a class action script, (Where can i get these script?)
Thanks

Is this an e-book? Does it allow for copying? It is possible that the pdf file is a scan of a book?

Similar Messages

  • Problem with Unknown account assignment with limit order...reply soon...

    Hello All,
    i am facing problem in <b>confirming the limit order with unknown account</b> <b>assinment</b>.We are using Extended classic scenario with SRM version 5.00 and ECC 6.00. When creating shopping cart with unknown account assignments,  shopping carts is getting created fine but when processing goods receipt the system only prompts for distribution by cost center and we do not have the option to selected processing against other account assignment e.g. internal order or network. the Cost center is coming as gray.What i am expecting that as in known account assignment it asks for a drop down and user can select cost center or order the same should happened with unknown account assignment. we have not implemented any badi for the same.
    please help me out. <b><u>Is this a standard behavior of shop with limit order for unknown account assignment where it prompts for cost center only or do i need to implement any badi.</u></b>

    Hi
    <b>Related links/ SAP OSS Notes to check out -></b>
    Note 861889 - Limitations on limit and service PO's in case of ECS
    Note 1046593 - Limit PO - Unable to delete and create new item
    Note 966323 - Service Item: Not able to create PO in ERP backend
    Note 969077 - LIMIT:SC with Account Assignment Unknown and IR_IND checked
    Note 1000184 - Account assignment error when document transfer to back end
    Note 1052892 - Account Assignment not visible for Limit Shopping Cart
    Note 933618 - Multiple account assignments for limit item are lost
    Re: Limit PO(Item category D instead of B)
    SE 518 No account assignment exists for service li ne 0000000000
    Creating SC with Dummy Account Assignment
    Re: Account assignment on SRM
    Re: Problem on account assignment
    Re: Account details not coming while creating a Shopping Cart with Limit Item
    LIMIT SC
    <u>Other related details -></u>
    Use Screen variants (Transaction - SHD0) to change item overview and search result screens.
    BADI - There is one BADI to hide/show some SC item creation links, there is one BADI to control screen details of PO, CTR... but not SC (and not external screens).
    So, as usual, identify the template and change the HTML code in SE80.
    To implement a more complex logic, like the default check box, change the ABAP code (usually in the PBO), if required.
    Do let me know.
    Regards
    - Atul

  • Tunneling and problem with unknown host exception

    hello! i've got a problem with https. i use jdk 1.5.0, jboss-4.0.4.ga-patch1, soap.
    and i'm going crasy.. i've testet my client code at our network and it works fine. but if i want to get jobs from the server of our customer, my client throw an "unknown host exception: firm".
    i wonder why it hasn't the full host. the url may look like this: https://firm.sub.com:443/ and while the client connects to the server, i depugged it and the host is correct: firm.sub.
    but after the connection, when the client want to get something from the server (when it wants to communicate with the server over soap) it crashs.
    my client code looks like this:
    private ClientInterfaceEndpoint getClientInterface() throws ServiceException {
    QName serviceQName = new QName(DOCSERVER_NAMESPACE, CLIENT_INTERFACE_SERVICENAME);
    URL wsdlUrl = getClientInterfaceWsdlUrl();
    log.info("*******WSDLURL host: " + wsdlUrl.getHost()); // out: firm.sub
    log.info("*******WSDLURL port: " + wsdlUrl.getPort()); // out: 443
    URL mapping = getClass().getClassLoader().getResource("META-INF/DocumentServer_Mapping.xml");
    log.info("*******MappingURL path: " + mapping.getPath());
    if (wsdlUrl.toString().toLowerCase().contains("https")) {
    if (null == getConfig().getTruststore() || getConfig().getTruststore().equalsIgnoreCase("")) {
    throw new RuntimeException("No or incorrect TruststorePath in the docclient-config");
    File tmp = new File(getConfig().getTruststore());
    if (!tmp.isFile() || !tmp.canRead()) {
    throw new RuntimeException("The truststore at the 'TruststorePath' isn't a file or can't be read.");
    System.setProperty(SYS_PROPERTY_KEY_TRUST, getConfig().getTruststore());
    System.setProperty(SYS_PROPERTY_KEY_TRUST_PW, config.getTruststorePass());
    ServiceFactoryImpl factory = null;
    factory = (ServiceFactoryImpl) ServiceFactory.newInstance();
    Service clientInterfaceService = null;
    try {// create the service for the ClientInterface
    clientInterfaceService = factory.createService(wsdlUrl, serviceQName, mapping, new URL(config.getServerURL())); //, new URL(config.getServerURL())
    log.info("*******ClientInterFaceService WSDL URL Host: " + clientInterfaceService.getWSDLDocumentLocation().getHost()); // out:firm.sub
    log.info("*******ClientInterFaceService WSDL URL Port: " + clientInterfaceService.getWSDLDocumentLocation().getPort()); // out: 443
    } catch (ServiceException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (MalformedURLException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (Exception e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    }// getting the ClientInterfaceEndpoint
    ClientInterfaceEndpoint clientInterface = (ClientInterfaceEndpoint) clientInterfaceService.getPort(ClientInterfaceEndpoint.class);
    return clientInterface;
    protected URL getClientInterfaceWsdlUrl() {
    URL url = null;
    String urlString = getConfig().getServerURL() + CLIENT_INTERFACE_URI + "?wsdl";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty(SYS_PROPERTY_KEY_PKGS);
    if (handlers == null) {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS);
    else {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS.concat("|").concat(handlers));
    try {
    url = new URL(urlString);
    log.info("*******URL host: " + url.getHost());
    log.info("*******URL port: " + url.getPort());
    log.info("*******URL path: " + url.getPath());
    } catch (MalformedURLException e) {
    log.fatal("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString);
    throw new RuntimeException("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString, e);
    System.setProperties(properties);
    return url;
    }if it's usefull: the customer use a apache server (not tomcat) where a the server is and the client at another system the jboss.
    The customer told me: if i want to connect the client via http i have to tunnel.. maybe i have to tunnel using https too?
    have i to generate the endpoint classes a second time, extra for https?
    or doesn't soap like host like "firm.sub"?
    can anyone help me please?!
    sorry, my english isn't very well...

    sorry, it's not the same error. The output is: Unable to connect to any host due to exception: java.net.socket.exception: java.net.socket.exception: Unregcognized windows socket error: 10106: create.

  • Still problems with "unknown server error"

    I followed the solutions in document (linked posted by Ken G Rice on 23/07/13) but am still getting "unknown server error" when attempting to sign in to Creative Cloud from my desktop. I'm using Mac OS 10.8.4. Would that cause a problem?

    I spoke with Gold Support. One assumption after the conversation is that ConCast(Comcast) is throttling me. The upload times out. It does end up correct on my iPad in Adobe Content Viewer and I have since sent this issue to the App store and all is well. Even with these update issues happening the whole time.
    I cut larger stories in to smaller chuncks for tests. They worked in pieces but then a certain section would not after it worked earlier. I've had smaller stories work fine for a couple of updates then all of a sudden would not. Then they would work gain on the 3rd retry.
    Add any video of any size and I can count on the error message.
    They content is making it to your servers but I'm getting error messages but when I get the error message it is usually right at the spot you see above in my attached image.
    I need to talk with Comcast and see what they have to say and take it from that point. I need to get this figured out. I burned too much time dealing with it.
    Thanks,
    Ron
    Fly & Light Tackle Angler

  • Iphone6 problem with unknown caller id

    I am having the same problem.Have spent numerous hours between AT & T as well as Apple trying to have the problem fixed.
    I am a caregiver for my parents. Their phone number as well as their doctors are coming up as unknown. Also having big issues with
    connecting to my car. Disconnects, won't reconnect, then have to shut off the Bluetooth just to receive a call from the phone.

    I have an ATT phone and this was happening to both myself and my husband. What we did was go to settings, cellular, Enable LTE, and change the check mark from Voice & Date to just Data. apparently VOLTE which is a fairly new service for carriers is not working in the manner that it is supposed to with these phones. Until they get it right, I'm leaving the check mark on data only. We tested this and saw the numbers go from unknown to what number what actually coming in.

  • Y40-80 problem with unknown driver windows 8.1

    Updated with latest bios available yesterday does not fix problem. Has anyone solve this?

    Dear assuat,
    Try to install the below driver it might help to solve your issue.
    http://support.lenovo.com/us/en/downloads/ds032367
    Hope this helps. Do post back if the issue persists.

  • Problem with (unknown) passcode

    My iPad Mini has just started to request a passcode on restart. I think my grandaughter may have inadvertantly set one up, so can anyone tell me how to reset it?

    You can't reset it, you can only remove it by restoring your iPad as discussed here: http://support.apple.com/kb/HT1212.  To avoid having to restore it, have her tell you the passcode.  Then you can go to Settings>General Passcode Lock, enter the passcode and turn it off.

  • Problem with PnP devices, Unknown device, error code:28

    Hello, my USB Mass Storage Device Not Recognized( Flash drive- HP v156w, 16 GB)
     Full story : I opened flash disk,  started  to loading and opening files very slow, suddenly all writing, names of the files become unreadable. I took off the flash disk and try again. I got the message- disk have to be formated to be used
    again. After a lot of try I got this message:
     Unknown device doesn't have a driver ; and Problem with PnP devices when i run trouble shoot in devices and printers on my Sony VAIO laptop( Windows 8, 64 bit), and error code:28 for unknown device doesn't have a driver.
    Do other usb devices work ok in the same usb port? - yes
    Has someone else/or you used it on another pc?- yes
    Does it work ok on a different pc?  - the same problem
    Did you pull it out with using 'Safely Remove Hardware'? -  yes, a lot of time after its become invisible, unknoun
    Was it previously working ok with your W8 laptop? - never tried befor
    Disk Management can't see the drive.
    device manager:
    usb device with yellow sine and instead name strange sines
    divice tipe - other devices
    manufacturer - unknown
    location- on USB Mass Storage Device
    status: The drivers for this device are not installed. (Code 28)
    To find a driver for this device, click Update Driver.
    I have done that -
      "open device manager make sure show hidden devices is ticked and right click on all the USB hidden devices and unistall them. once done reboot and put in the flash drive again and see if windows finds it."
    situation the same(((( Disk Management can't see the drive.
    please if any one know the fix please help
    Its very important info for me on the flash disk.

    I'd ask them over here.
    http://answers.microsoft.com/en-us/windows/forum/windows_8?tab=Threads
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Unknown device - ipod nano fine - problem with windows xp and usb root hub

    Greetings all. I've seen this question come up over and over again and have been working on it following previous posts and posts on microsoft and hp sites for a couple of days now.
    First off - the ipod nano is fine. Works on my son's computer well.
    When I plug it into my 6 months new HP Pavilion laptop it says: 'found new hardware' and goes through the process of installing it, says it's been installed, but then shows 'unknown device'. In Device Manager it tells me there are no drivers installed, but when I try to follow the other instructions on this forum to update the drive to USB mass storage device (usbstor.inf), it tells me the best driver is installed and won't do it.
    Many seem to have this problem with devices other than the iPod on Windows service pack 2 so I went to the Microsoft forums and they seem just as puzzled. I've updated all my Windows & HP software to the latest possible versions. The problem is definitely in the USB. Once, when I uninstalled the USB device and then rebooted the computer with my iPod still plugged into the port, it found my iPod, correctly identified it, and for a blissful moment I thought everything was fine! Then it reinstalled the USB drivers and made a comment to the effect that I should move the iPod to a USB 2.0 port for more effective operation and the iPod disappeared again.
    I have 3 USB ports on my laptop, all are USB 2.0 and all 3 have the same problem.
    I've tried all the stuff people have already said on here...does anyone have any NEW ideas? I'm hesitant to take it in for service because it seems to be a software problem that should be fixable.
    Thanks in advance for your help and sorry about the long post.

    This isn't a solution, but it's something I just tried and it may provide someone additional clues about's going on. I too think this is some sort of USB problem.
    I have 6 USB ports. Two of them are USB 2.0. Since I applied the 03-23 update my computer hasn't recognized my nano at all. I would connect my nano and I couldn't get it to show up in My Computer, in iTunes, or on the far right side of the Start taskbar.
    I just tried plugging my nano into the first USB port of my USB 2.0 pair and left the second 2.0 port empty. I then rebooted with the nano attached. Viola - I get a "Found New Hardware Apple iPod USB Device" message. My nano is now flashing "Do Not Disconnect." A small removeable storage icon with green arrow now shows on the far right side of the Start taskbar. If I click on it (like you're going to eject it) the note displayed says "Safely remove USB Mass Storage Device - Drive (F:)".
    If I go into My Computer, "Removeable Disk (F:)" now shows there. However, if I try to follow Trevor's instructions in another post to "go into My Computer with iPod connected, right click it, wait till the right click menu comes up (could take a few minutes); click Format, . . ." I'm stuck. I do the right click, watch the hour glass and wait for the Format menu to come up but it never does. Eventually the hour glass just goes away. No message, no Format menu. The waiting hour glass just goes away.
    My computer isn't as new as yours, but like you I am completely current on maintenance.
    I'm going to keep trying . . . If anyone has any ideas, please let me know.
    Dell Dimension 8100 Pentium 4   Windows XP   Service Pack 2 Phoenix ROM Bios PLUS Version 1.10 A09

  • Hello, I have a problem with iPhone 5c softhware update ( The iPhone "iPhone" could not be restored. An unknown error occurred (27))

    Hello, I have a problem with iPhone 5c softhware update ( The iPhone "iPhone" could not be restored. An unknown error occurred (27))

    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    The" may need service' meand there is a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Problems with transaction MD21

    Hi experts, i have a problem with this transaction because every time i open it when i try to add the material text in the Modify layout button, when i hit ok no text appearts in the field, whant can i do?, thank you in advance.
    kind regards

    Hi
    1) Create a Screen Variant in SHD0 with Additional Material Data ticked for MD21 transaction and assign to specific users.
    2) After Entering MD21 in the Display Planning file entries screen click on  Change lay out and save as default after selecting Material Description column
    From nxt time onwards the user will get the Material Description in the Layout for the Selection criteria
    Regards
    Brahmaji

  • I have problem with my iphone 3gs , ISO 5.0.1 , i tried to update it to new 5.1.1 and not getting and showing below massage  the iphone could not be updated. an unknown error occurred 11

    I have problem with my iphone 3gs ( ISO 5.0.1) , it is stuck on apple LOGO and just restaring from time to time after long time will open then i am able to see all app  so i tried to update it to new 5.1.1 but not getting update and showing below messege  the iphone could not be updated. an unknown error occurred 11
    thanks

    if itunes can no longer pickup your ipod, and you cant even do anything to your ipod, your best option is to either call apple care, or just take it to the nearest apple shop. i had a similar problem, mines currently at apple care repairs and they might just end up giving me a replacement.

  • How can I synch my iTunes?  If often says unknown error or problem with application?

    I have problems synching my iPhones 4s with my MAcbook pro (10.8.2) and iTunes (11.0.1).  I can connect my iphone 4s(6.0.1) directly to my macbook pro or via the same network.  I can start the synch via itunes or my phone.  20% of the time it works.  If often says unknown error or problem with application. The software is up to date. What can I try?  Thank you

    The iphone/ipod is NOT a storage/backup device.  Not maintaining a backup copy is a big mistake.
    You can transfer itunes purchases from your iphone/ipod to your computer:
    Authorize your computer for all accounts and then click  File>Transfer Purchases

  • Is anyone having problems with the iOS 6 update? Random, unknown people are involved in my text messages!

    Is anyone having a problem with iOS 6 update? Random, unknown people are involved in my text messages!

    I noticed that after I linked Facebook to my iphone, I had tons of new entries in my Contacts. I found a way to turn that feature off. Perhaps that's your problem with randoms joining in on your convos.
    Yep, follow the instructions listed by the guy above me. I also did this: Settings ---> Facebook ---> Contacts: Off (allow these apps to use ur account). That cleared out all my Facebook friend phone numbers from my Contact list on my phone. Hope this helps. Updating an os should not require oodles of work on our end.

  • HT1420 Please help.... cannot get into the ITUNES account. It says unknown error has occured. Is there a problem with ITunes?

    Please help.... cannot get into the ITUNES account. It says unknown error has occured. Is there a problem with ITunes?

    Same thing happened with my iPhone 4S - no one is any help.  Thanks Apple for such a crappy update!  I've called Apple, they say the SIM card needs replacing, I go to my service provider they tell me nothing wrong with the SIM card - provider tells me I now need a new phone.  Sheesh!  If someone has a solution to this it would be greatly appreciated.

Maybe you are looking for

  • Income Tax not Calculated for one employee.

    Hi experts, we have updated our patch lvl upto 86. Budget Changes Note is applied already. Now the Problem is with one employee. Out of 1000 employees for one employee /436, /446 and /450 generated correctly with correct figure. But /460 is not gener

  • Writing to file more problems

    I'm back... heh well now that i fixed my If statement im trying to actually write to the file, but it doesnt seem to be working... heres what i got. public static void main (String args[])throws Exception{ Scanner in = new Scanner(new FileReader("H:/

  • Partner Number for Partner function in Vendor master definition

    Dear Gurus, I need to define a new vendor through Tcode: Xk01 / Mk01, but while defining particular screen know an partner functions, in this its asking partner number in lookup where no data ia avalibale to select and subsequently not able to save t

  • Have a 4th Generation photo ipod stuck on connect to power source in restore

    I just replaced the 20 GB HD with an 80 GB HD...As I was going through the restore process, I'm stuck at the connect to power source part. I don't have the apple usb wall charger, but I do have a usb wall charger. Do I need to use the one that came w

  • Acitivate authorization profile

    I have no authorization to do SU02, Is there a BAPI or FM that can be used to activate authorization profile? Edited by: Heyman52 on Jul 8, 2010 4:07 AM