"ClassCastException" for items in List after serialization

consider this code:
public class MyClass implements Serializable {
  public double price = -1;
  public double volume = -1;
List list = new ArrayList<MyClass>();
while(!endOfData) {
  MyClass mc = new MyClass();
  mc.price = x;
  mc.volume = y;
  list.add(mc);
ObjectOutputStream oos = new ObjectOutputStream(out);
oos.writeObject(list);----
and then the receiver-side:
ObjectInputStream ois = new ObjectInputStream(in);
List list = (List) ois.readObject();
MyClass mc = (MyClass) list.get(2);
..... error ... error ...
Exception in thread "Thread-1" java.lang.ClassCastException: MyClass
note: using a Double instead of MyClass works ok.
also please notice:
ObjectInputStream ois = new ObjectInputStream(in);
List list = (List) ois.readObject();
Object mc = (Object) list.get(4);
System.out.println("this is what i am --> " + mc.getClass().getCanonicalName());
output: "this is what i am --> MyClass"
thanks.
Message was edited by:
suppon

the MyClass objects are not
initially loaded in the receiver's JVM.Make a custom class as:
public class CustomObjectInputStream extends ObjectInputStream {
    private ClassLoader classLoader;
    /** Creates a new instance of CustomObjectInputStream */
    public CustomObjectInputStream(InputStream in, ClassLoader classLoader) throws IOException {
        super(in);
        this.classLoader = classLoader;
    protected Class<?> resolveClass(ObjectStreamClass desc) throws ClassNotFoundException {
        return Class.forName(desc.getName(), false, classLoader);
}and use an instance of this class instead of the standard object inputstream to deserialize your object. You should pass the url class loader as an argument to the constructor of the custom object input stream. The reason is that the standard object inputstream only recognises classes that are "statically defined in the JAVA class path". (I quote the last text because I am not sure if I am using the right terminology, but I hope you understand what I mean.)
why do i get
"ClassCastExceptions" ??
and not
"ClassNotFoundException"
??This must be because somehow you have a "static" class definition for MyClass anyway, otherwise you wouldn't be able to write the following code and have it compile:
MyClass item = (MyClass) class1.cast(list.get(7));Apparently your "static" MyClass definition does not correspond with the MyClass definition in your .jar file.
You can only access a deserialized object of which the class definition is in a .jar file through reflection, unless you can cast it to an interface with a "static" definition.

Similar Messages

  • How to drag and drop item from list to another item in list and change their positions

    I have a list field with multiple items. I want to select one item from list and drag and drop to another item in the list
     after drop item on another item the position of items should be change. (Example:- if I select 1st item from list and drag and drop this item to 4th item in list after drop that item position of both item should be changed 1st item on 4th position and 4th item on 1st position)
    I don't know how to do this.Please help me to find the solution.

    Hello Zoltan,
    I do not believe that kind of option is built into the listboxes, but I was able to have similiar functionalities using property nodes. I have included an example program that I put together.
    The big difference is that instead of dragging, you double click on the item you want to transfer. To highlight items as you go down the list, all you need to do is set the value to that list number.
    Hope this helps you out!
    Attachments:
    Temp.vi ‏33 KB

  • Glassfish v3 ClassCastException for same class, at a List.get() command.

    Hello everyone,
    I am in the process of developing a small web application with JSF 2.0 and JPA, both of which I am not entirely familiar with. But thanks to Google and a lot of very dedicated experts, the Java and JSF forums have helped me with creating a basic form for entering and storing data. I am using Netbeans 6.8 which has glassfish V3 for the app server. However I have a problem where the auto-deploy in glass fish ends up giving me a ClassCastException for the same class, which after a bit of research on the net, seems to be a classloader problem.
    A related link http://72.5.124.102/thread.jspa?messageID=10119180 probably confirms the cause as a hot-deploy issue.
    My JSF page is created dynamically in the constructor of the managed bean, and it is here that I get the exception occasionally. A restart of the server solves the issue. Nevertheless, I would like to know if there is any other way to solve the classloader problem other than using a build.xml file as suggested in the forum link given above.
    I am posting a part of my code as well, so that if you think there a classloader problem in my code, you can let me know, so I can fix it.
    @ManagedBean(name = "CustomFields")
    @RequestScoped
    public class CustomFields {
        private String tableName;
        private List<UiSetup> dispFieldsList = new ArrayList();
        private HtmlPanelGrid customPanelSec = new HtmlPanelGrid();
        public HtmlPanelGrid getCustomPanelSec() {
            return customPanelSec;
        public void setCustomPanelSec(HtmlPanelGrid customPanelSec) {
            this.customPanelSec = customPanelSec;
        public String getTableName() {
            return tableName;
        public void setTableName(String tableName) {
            this.tableName = tableName;
        public CustomFields() {
            System.out.println("Invoked customFields backing bean");
            String callerBean = "";
            FacesContext context = FacesContext.getCurrentInstance();
            Application application = context.getApplication();
            tableName = context.getExternalContext().getRequestParameterMap().get("callerPage");
            callerBean = context.getExternalContext().getRequestParameterMap().get("backingBean");
            // This is a JPA contoller class for an entity that defines the custom fields that have to be enabled for this page.
            UiSetupJpaController fldsToShow = new UiSetupJpaController();
            dispFieldsList.clear();
            System.out.println("Did this1");
            // This function getDisplayFields gets the fields that have to be shown on the page.
            this.dispFieldsList = fldsToShow.getDisplayFields(tableName);
            System.out.println("Did this2");
            int totFields = this.dispFieldsList.size();
            System.out.println("Did this3");
            UiSetup us = this.dispFieldsList.get(totFields - 1);// This is where the error is thrown always.
            System.out.println("Did this4");
            customPanelSec.getChildren().clear();
            for (int i = 0; i < totFields; i++) {
                try {
                    HtmlPanelGrid fldLblGroup = new HtmlPanelGrid();
                    HtmlOutputLabel customLabel = (HtmlOutputLabel) application.createComponent(HtmlOutputLabel.COMPONENT_TYPE);
                    String labelName = dispFieldsList.get(i).getDisplayName();
                    customLabel.setValue(labelName);
                    String fieldName = dispFieldsList.get(i).getFieldName();
                    HtmlPanelGroup customField = (HtmlPanelGroup) application.createComponent(HtmlPanelGroup.COMPONENT_TYPE);
                    HtmlInputText customText = new HtmlInputText();
                    String valExp = "#{" + callerBean + "." + fieldName + "}";
                    customText.setId(fieldName);
                    customText.setValueExpression("value", createValueExpr(valExp, BigDecimal.class, context));
                    customField.getChildren().clear();
                    customField.getChildren().add(customText);
                    customPanelSec.getChildren().add(customLabel);
                    customPanelSec.getChildren().add(customField);
                }catch (Exception e) {
                    System.out.println(e.getMessage());
        private ValueExpression createValueExpr(String valexp, Class cls, FacesContext fcs) {
            return fcs.getApplication().getExpressionFactory().createValueExpression(fcs.getELContext(), valexp, cls);
    }The error message is as follows
    com.sun.faces.mgbean.ManagedBeanCreationException: Cant instantiate class: karma.com.managedbeans.master.CustomFields.
    at com.sun.faces.mgbean.BeanBuilder.newBeanInstance(BeanBuilder.java:193)
    at com.sun.faces.mgbean.BeanBuilder.build(BeanBuilder.java:102)
    at com.sun.faces.mgbean.BeanManager.createAndPush(BeanManager.java:405)
    at com.sun.faces.mgbean.BeanManager.create(BeanManager.java:267)
    Caused by: java.lang.ClassCastException: karma.com.model.ui.UiSetup cannot be cast to karma.com.model.ui.UiSetup
    at karma.com.managedbeans.master.CustomFields.<init>(CustomFields.java:397)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at com.sun.faces.mgbean.BeanBuilder.newBeanInstance(BeanBuilder.java:188)
    ... 82 moreRegards,
    Swati

    Thanks very much for your reply. I have implemented your suggestion of using a PostConstruct method with the @ManagedProperty to inject the values into the tableName and the callerBean properties. The good news is that the page is rendered correctly and I haven't encountered the exception the few times that I invoked the page.
    However, I can't be sure the issue is resolved, since, like I mentioned, the error is seemingly erratic and I don't quite know if it is not seen because of a genuine fix or because, well, its currently not in a mood to show up.
    There is just one more thing I would like to mention. I have said that the code fails at the List.get() line. However, its not happening because the list is empty. In fact the earlier lines are giving expected outputs and totFields value is set all right. Maybe this has nothing to do with the error, but I thought I will mention it all the same, in case it triggers another idea altogether.
    Thanks very much
    Regards
    Swati

  • HT201210 Synching iPhone after factory restore and restore from backup; synching appears stuck on Step 5 of 5, "waiting for items to copy."  That message displays for hours with no apparent progress.

    Synching iPhone after factory restore and restore from backup; synching appears stuck on Step 5 of 5, "waiting for items to copy."  That message displays for hours with no apparent progress.

    I never had this problem, but just noticed it happening.. Please note it's a BUG. I went out and bought a 128GB  iPhone just to hold all my songs. It wouldn't work. This never happened with the iPhone 3/3s/4/5/5s but started happening with the iPhone 6. After 40 hours of working through all possible solutions on the web and with Apple cares support (supposedly senior level) They finally suggested what the problem was. I had "Convert higher bit songs to 128  aac" Checked. This does not work One more thing when I unchecked that, the sync took like 3.5 hours instead of the 9-12 hours is usually took even on the smaller iphones. I have 98.7GB of music. Before I was just syncing a list of specific songs.
    The syncing seems to be random when it has the problem though.

  • Why am I still getting this message after logging in - This computer is no longer authorized for apps that are installed on the iPhone "Myron Liptzin's iPhone". Would you like to authorize this computer for items purchased from the iTunes Store?

    why am I still getting this message after logging in?  "This computer is no longer authorized for apps that are installed on the iPhone “*************s iPhone”. Would you like to authorize this computer for items purchased from the iTunes Store?"  - after I have logged in and get the message that the computer is already authorized!!!?? - and then the above message pops up again?

    Click here and follow the instructions.
    (71175)

  • After adding list view into the web part page, the items and list control ribbon is not activated.

    I created new webpart page and added one list view web part into the page.
    However I can see the ITEMS and LIST tabs on ribbon area, but all the buttons are deactivated.
    Do I have to activate any feature for this or any settings are needed for the webpart?
    I already have full permission for this site.
    For your easy understand I added the screenshot.

    Thanks for you advice.
    However I am currently using the context menu and edit link in the view.
    My Client keep complaining about the ribbon is not activated even thought it works fine in the SharePoint 2010.

  • Create Multiple tasks for Single Item in List using state machine workflow in sharepoint

    Hi,
    I want to create multiple create tasks for Single Item in List based on Assigned to column using state machine Workflow through visual studio
    Here Assigned to column allows multiple users. so i have to create task for every user based on column .
    I'm trying for this but i didn't got any solution
    Please provide solution for this.

    Hi,
    According to your post, my understanding is that you wanted to allow multiple users to approve.
    There are some articles about creating parallel tasks in state machine workflow, you can have a look at them.
    http://www.codeproject.com/Articles/477849/Create-Parallel-Task-in-State-Machine-Workflow-in
    http://msdn.microsoft.com/en-us/library/office/hh128697(v=office.14).aspx
    http://social.technet.microsoft.com/Forums/office/en-US/b16ee858-4360-479a-a686-4ee35b7be9db/sharepoint-2010-workflow-creating-multiple-tasks?forum=sharepointdevelopmentprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • HT1386 hi, when i am syn my books from my mac to ipad even after one full day sync itunes show wait for items to copy and the books in ipad are still not fully loaded. how do i fix this, i have a large collection of books

    hi, when i am sync my books from my mac to ipad even after 24 hours sync, itunes show "wait for items to copy" and the books in ipad are still not fully loaded.
    how do i fix this, i have a large collection of books around 12000 books

    Nobody knows? Not even administrators?
    Please it would be really nice to have help on that to take all the benefit of the remote app.
    Thank you very much in advance.

  • You are running an operating system that After Effects no longer supports. Refer to the system requirements for a full list of supported platforms.

    Help when i try to download the after effects trial this is what it comes up with
    You are running an operating system that After Effects no longer supports. Refer to the system requirements for a full list of supported platforms.

    See the system requirements for each version of After Effects:
    System requirements | After Effects

  • Cannot download trial version. This always appear "You are running an operating system that After Effects no longer supports. Refer to the system requirements below for a full list of supported platforms." PLEASE HELP.

    Cannot download trial version. This always appears "You are running an operating system that After Effects no longer supports. Refer to the system requirements below for a full list of supported platforms." PLEASE HELP.

    Hello,
    in this case please have a look here where you can compare it with your equipment : System requirements | After Effects.
    Good luck!
    Hans-Günter

  • Podcasts for iPad4: the list of titles is shown with 'monday' or 'tuesday' instead of the date after installing podcasts 2.1. How can I switch to the date?.

    Podcasts for iPad4: the list of titles is shown with 'monday' or 'tuesday' instead of the date after installing podcasts 2.1. How can I switch to the date?.

    You can't switch that display format.

  • Sync of iPad (1) to iTunes after iOS5 upgrade, getting "waiting for items to copy" message that hangs sync, lasts forever

    I've seen this same problem in other posts, but the solutions seems suspect to me. People are seeing this on both Mac and Windows syncs. The "data" that is being sync'd seems to change for each person, and in fact is different each time I try. Sometimes it is "data" that is being sync'd, sometimes it is "Genius Data", sometimes something else. The common problem across platforms is that somewhere in the iPad sync process it gets "stuck" with the message "Waiting for items to copy". In my case, I ran this overnight -- for over 12 hours -- and the problem did not resolve.
    Here is my situation: iPad1, just upgraded to iOS5. MacBook Pro just upgraded to 10.7.2. itunes 10.5. When I connect the iPad, iTunes does a synchronization automatically and seems to succeed up to the last step, in my case 8 of 8. Then, it "hangs" during synchronization. Sometimes it says it is Syncing Genius Data, sometimes it says something different. But, it always says "Waiting for items to copy" and then sits forever.
    To terminate this I just eject the iPad and things seem to be working okay, but it is troublesome that the sync does not complete normally.

    Hi TD,
    You solved my problem awhile ago and I didn't post a thank here.  So thank you!  I was having a problem with a PDF that kept rechecking itself.  It was not the User guide.  Anyway, I posted your solution on another discussion board and it has solved the issue for several people. Here's the link. My post is on the last page.  https://discussions.apple.com/thread/3391000

  • Retrieve Items that are declared as "records" for a particular list

    Hi,
    Is there a way to list of items that are declared as records in a specific list / lib pragmatically ?
    Regards
    Durga

    Try below script:
    $SPAssignment = Start-SPAssignment
    $web = Get-SPWeb <a href="http://your-site">http://your-site</a> -AssignmentCollection $spAssignment
    $list = $web.lists["your-list"].items
    foreach ($item in $list)
    $IsRecord = [Microsoft.Office.RecordsManagement.RecordsRepository.Records]::IsRecord($Item)
    if ($IsRecord -eq $true){
    Write-Host "Record : $($item.Title)"
    Stop-SPAssignment $SPAssignment
    Regards
    Prasad Tandel

  • I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck and will post the output. Please can someone help me with what it all means.Thanks in advance

    I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck. Please can someone help me with what it all means.
    Thanks in advance.
    EtreCheck version: 1.9.15 (52)
    Report generated 19 September 2014 08:07:14 GMT+8
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:4:29
    Disk Information: ?
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (147 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.4 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.4 - SDK 10.4) Support
      [loaded] com.sophos.kext.sav (9.1.55 - SDK 10.7) Support
      [loaded] com.sophos.nke.swi (9.1.50 - SDK 10.8) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.sophos.autoupdate.plist Support
      [running] com.sophos.configuration.plist Support
      [running] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [running] com.sophos.scan.plist Support
      [running] com.sophos.sxld.plist Support
      [running] com.sophos.webd.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    Launch Agents: ?
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [running] com.sophos.uiserver.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.music.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Support
    User Login Items: ?
      iTunesHelper
      TomTomHOMERunner
      AdobeResourceSynchronizer
      Dropbox
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivX Web Player: Version: 3.2.1.977 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      EPPEX Plugin: Version: 10.0 Support
      Default Browser: Version: 537 - SDK 10.9
      OVSHelper: Version: 1.1 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions: ?
      Ultimate
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Perian  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 297.29 GB Disk used: 160.38 GB
      Destinations:
      Data [Network] (Last used)
      Total size: 2 TB
      Total number of backups: 99
      Oldest backup: 2012-04-20 17:05:32 +0000
      Last backup: 2014-09-18 23:49:25 +0000
      Size of backup disk: Excellent
      Backup size 2 TB > (Disk size 297.29 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          6% InterCheck
          5% iCalExternalSync
          3% WindowServer
          2% CalendarAgent
          2% SystemUIServer
    Top Processes by Memory: ?
      152 MB SophosScanD
      147 MB InterCheck
      106 MB SophosAntiVirus
      66 MB Dropbox
      57 MB com.apple.iTunesLibraryService
    Virtual Memory Information: ?
      161 MB Free RAM
      1.55 GB Active RAM
      1.41 GB Inactive RAM
      902 MB Wired RAM
      611 MB Page-ins
      0 B Page-outs

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

  • Script that moves items to trash after importing to iTunes

    Hi,
    I have zero experience in this, all I have done is just from having googled stuff, so please be patient if I'm asking stupid questions. I have tried searching the forum first but I can't find the answer to this question.
    I download music from various (LEGAL) websites and I don't want to have to manually move it into iTunes. My aim is that every time an .mp3 file is downloaded into my downloads folder, it is automatically moved into my iTunes music library and added to a 'downloaded' playlist, then deleted from my downloads folder.
    This has taken me ages because after I got it working I did an iTunes update which ruined it all. I tried to edit the offending actions but ended up just downgrading iTunes to the previous version via Time Machine.
    I am using OS X version 10.6.7 and iTunes 10.2.1
    The point I am at now is that it is all working, except that the files are not moved to the trash at the end, so every time it runs it adds the new file plus all the previous files again. Please can someone help me modify my script or my automator application so that this will happen.
    Also, is it possible to have the automator application only run when music files are downloaded? Because at the moment it runs every time I download anything at all.
    Here is what I have done:
    I have set up a folder action so that this script is attached to my downloads folder:
    on adding folder items to this_folder after receiving added_items
              tell me
                        do shell script "open -a /Users/Louisa/Documents/Workflows/justdownloadstoplaylist.app"
              end tell
    end adding folder items to
    Then I have saved this Automator workflow as the application justdownloadstoplaylist.app
    *Get specified Finder items*
    Louisa>Downloads
    *Get Folder Contents*
    (Repeat for each subfolder found)
    *Import Files into Itunes*
    (Existing playlist - "downloaded")
    *Move Finder items to Trash*
    Thank you for your help.

    Sorry, there was an error with my workflow in that saving to the variable should have come after filtering the items:
    Folder Action receives files and folders added to Downloads
    Get Folder Contents { Repeat for each subfolder found } -- in case a folder was added
    Filter Finder Items { File extension is mp3 } -- just get mp3 files
    Set Value of Variable { Variable: Original Items } -- save the filtered mp3 files for later
    Import Files into iTunes { Existing playlist Downloaded }
    Get Value of Variable { Variable: Original Items } (Ignore Input) -- get back the mp3 files
    Move Finder Items to Trash
    If you are using your application in a situation where it is already getting items passed to it (e.g. dropping items onto the application, or using a Service or Folder Action), adding an action at the beginning that gets the same items will result in doubling up the items in your input list.  If you are getting confused about what is getting passed to your application, you can use a Choose from List action at the beginning of your workflow to show the items.
    If you just saved your workflow as an application, dropping items onto it will pass them to your workflow, otherwise you will need to add statements to your folder action script to tell the workflow to open items passed to the folder action.  As I mentioned in my earlier post, you won't need to use your folder action script or do anything else to get items passed to your workflow if it is created using the Folder Action template. 

Maybe you are looking for

  • Attempted reboot - tech heavy menu screen. Need advice on how to proceed.

    I typed Carl-alt-del and before the blue screen came up I typed F10. A tech-heavy menu appeared and I think I am on the right track, but am unsure of what to do now. .

  • SDPICK - picking request

    We have a Warehouse managed stock and wan't to update a delivery with actual picked quantities. Thats OK but wa wan't to manually create and confirm Transfere orders. If I try to either use this IDoc or call WS_DELIVERY_UPDATE directly a Picking Requ

  • Inbound Dialpeer fixed number of digits

    Hi, I want to block some calls which are less than any number of digits to the VoIP gateway. In incoming called-number command, when we use "." it would cause any number of digits comes in and I want to restric for example 7 digits calls drops at the

  • Preview/pages to pdf

    From document file-pulls up Resume file in preview; "save as" pdf-does NOT come up in PDF.What did I do incorrectly? Thanks to those who can help

  • How do I turn on private browsing in safari?

    How do I turn on private browsing in safari?