Different behavior of LOV dependent when copying folder

Dear gurus,

I use Jdeveloper 11.1.2.3.0

method 1 is the new method that I wrote today, the record copy and depend on LOV is also refreshing about changing the parent value LOV LOV dependent same bit is also populated as the Franchise of the brand and the Type of mark, but the problem with this is little InputTextLOV load value is not complete when you copy as ASM SM, RFAM, RSM, TYPE of ACTIVITY, the NAME of the HIERARCHY and BRAND MANAGER who is highlighted in yellow.  as shown in the image below.


https://outlook.office365.com/owa/service.svc/s/GetFileAttachment?id=AAMkADM4NzcwNjk5LWI2MTgtNDY1My05NzZmLWRlNGFiMGFmMjUwMwBGAAAAAACm8DyCMaD%2BQp7yH%2BWFWMVGBwBTXXB8hJYiTLjuY1paep%2BAAAAAAAEJAABTXXB8hJYiTLjuY1paep%2BAAAB9TPUOAAABEgAQAOgMHOGjUJJKmNT1aIvwLXw%3D&X-OWA-CANARY=QObvCeI93Eam98r9h2x6ouAdx8aU_9IY28_fuumJ1-0uhB5QaTdkinlT9oUPC5qZOENwaeKCD0I.

Transient attribute with update = never is commented in the method 1. even tried transitional attribute update = ALWAYS,


       //method-1
              public void copyProposal(javax.faces.event.ActionEvent actionEvent) {
              // Add event code here...
        
               System.out.println("Inside copyProposal Method::::");
                AdfFacesContext adfctx = AdfFacesContext.getCurrentInstance();
                java.util.Map pageFlowScope = adfctx.getPageFlowScope();
                String userName = (String) pageFlowScope.get("user").toString();
                Date date = new Date();
                System.out.println("date::: " +date);
                String date1 = new SimpleDateFormat("dd-MMM-yyyy").format(new Date()).toString();
                System.out.println("date1::: " +date1);
                String date2 = new SimpleDateFormat("mm/dd/yyyy").format(new Date()).toString();
                
                Calendar currenttime = Calendar.getInstance();
                    Date sqldate = new Date((currenttime.getTime()).getTime());
                    System.out.println("current Date_Time::: " +sqldate);
                AppModuleImpl am = this.getAm();
                ViewObject proposalHeaderVO = am.getProposalHeaderView2();    
                //        ViewObjectImpl proposalHeaderVO = this.getProposalHeaderView2();
                Row propHeaderCurrentRow = proposalHeaderVO.getCurrentRow();
                String[] propHeaderAttrs = propHeaderCurrentRow.getAttributeNames();
                //Skip copying the primay key attributes or any attributes which you want to skip
                String[] skipAttrs = new String[] {"BranchProposalNumber", "BranchHoSerial","ProposalId","ProposalDate","CreationDate","ApprovalStatus","Attribute9","Attribute10",
                                                   "ProposalAmt","ApprovalRemarks","ApproverRemarkTemp","BudgetAmt","ConsumedAmt","RemainingAmt","AmountUtilized", "TotalLineAmount",
                                                   "TotalBudgetAmount","TotalRemainingAmount","TotalConsumedAmount"};//,"L1Approver","L2Approver","L3Approver","L1Code","L2Code","L3Code"
                List skipAttrList = Arrays.asList(skipAttrs);
                //creating a new duplicate row
                Row dupRow = proposalHeaderVO.createRow();
      
        dupRow.setAttribute("ProposalDate", sqldate);
        dupRow.setAttribute("ProposalType", propHeaderCurrentRow.getAttribute("ProposalType"));
        dupRow.setAttribute("EffectiveStartDate", propHeaderCurrentRow.getAttribute("EffectiveStartDate"));
        dupRow.setAttribute("EffectiveEndDate", propHeaderCurrentRow.getAttribute("EffectiveEndDate"));
        dupRow.setAttribute("BranchId", propHeaderCurrentRow.getAttribute("BranchId"));
        dupRow.setAttribute("BranchName", propHeaderCurrentRow.getAttribute("BranchName"));
        dupRow.setAttribute("State", propHeaderCurrentRow.getAttribute("State"));
        dupRow.setAttribute("BusinessLine", propHeaderCurrentRow.getAttribute("BusinessLine"));
        dupRow.setAttribute("BrandFranchise", propHeaderCurrentRow.getAttribute("BrandFranchise"));
        dupRow.setAttribute("BrandType", propHeaderCurrentRow.getAttribute("BrandType"));
        dupRow.setAttribute("ApprovalStatus", "Pending");
        dupRow.setAttribute("BrandManager", propHeaderCurrentRow.getAttribute("BrandManager"));
       dupRow.setAttribute("ProposalAction", propHeaderCurrentRow.getAttribute("ProposalAction"));
        dupRow.setAttribute("ActionRemarks", propHeaderCurrentRow.getAttribute("ActionRemarks"));
        dupRow.setAttribute("ActivityTypeId", propHeaderCurrentRow.getAttribute("ActivityTypeId"));
        dupRow.setAttribute("ActivityType", propHeaderCurrentRow.getAttribute("ActivityType"));
        dupRow.setAttribute("Attribute1", propHeaderCurrentRow.getAttribute("Attribute1"));
        dupRow.setAttribute("Attribute2", propHeaderCurrentRow.getAttribute("Attribute2"));
        dupRow.setAttribute("Attribute3", propHeaderCurrentRow.getAttribute("Attribute3"));
        dupRow.setAttribute("Attribute4", propHeaderCurrentRow.getAttribute("Attribute4"));
        dupRow.setAttribute("BusinessLineName", propHeaderCurrentRow.getAttribute("BusinessLineName"));
        dupRow.setAttribute("BudgetAmt", propHeaderCurrentRow.getAttribute("BudgetAmt"));
        dupRow.setAttribute("ConsumedAmt", propHeaderCurrentRow.getAttribute("ConsumedAmt"));
        dupRow.setAttribute("RemainingAmt", propHeaderCurrentRow.getAttribute("RemainingAmt"));
        dupRow.setAttribute("ProposalAmt", propHeaderCurrentRow.getAttribute("ProposalAmt"));
        dupRow.setAttribute("ProposalDescription", propHeaderCurrentRow.getAttribute("ProposalDescription"));
        dupRow.setAttribute("CreatedBy", userName);
//        dupRow.setAttribute("CreationDate",sqldate);
        dupRow.setAttribute("LastUpdatedBy", propHeaderCurrentRow.getAttribute("LastUpdatedBy"));
//        dupRow.setAttribute("LastUpdateDate", sqldate);
        dupRow.setAttribute("AdfCreatedBy", userName);
        dupRow.setAttribute("ApprovalRemarks", propHeaderCurrentRow.getAttribute("ApprovalRemarks"));
        dupRow.setAttribute("Attribute6", propHeaderCurrentRow.getAttribute("Attribute6"));
        dupRow.setAttribute("Attachment", propHeaderCurrentRow.getAttribute("Attachment"));
        dupRow.setAttribute("Attribute7", propHeaderCurrentRow.getAttribute("Attribute7"));
        dupRow.setAttribute("Attribute8", propHeaderCurrentRow.getAttribute("Attribute8"));
        dupRow.setAttribute("Attribute9", propHeaderCurrentRow.getAttribute("Attribute9"));
        dupRow.setAttribute("Attribute10", userName);
        dupRow.setAttribute("Segment1", propHeaderCurrentRow.getAttribute("Segment1"));
        dupRow.setAttribute("Segment2", propHeaderCurrentRow.getAttribute("Segment2"));
        dupRow.setAttribute("Segment3", propHeaderCurrentRow.getAttribute("Segment3"));
        dupRow.setAttribute("Segment4", propHeaderCurrentRow.getAttribute("Segment4"));
        dupRow.setAttribute("Segment5", propHeaderCurrentRow.getAttribute("Segment5"));
        dupRow.setAttribute("Segment6", propHeaderCurrentRow.getAttribute("Segment6"));
        dupRow.setAttribute("L1Approver", propHeaderCurrentRow.getAttribute("L1Approver"));
        dupRow.setAttribute("L2Approver", propHeaderCurrentRow.getAttribute("L2Approver"));
        dupRow.setAttribute("L3Approver", propHeaderCurrentRow.getAttribute("L3Approver"));
        dupRow.setAttribute("L1Code", propHeaderCurrentRow.getAttribute("L1Code"));
        dupRow.setAttribute("L2Code", propHeaderCurrentRow.getAttribute("L2Code"));
        dupRow.setAttribute("L3Code", propHeaderCurrentRow.getAttribute("L3Code"));
        dupRow.setAttribute("ExpenceCategory", propHeaderCurrentRow.getAttribute("ExpenceCategory"));
        dupRow.setAttribute("ExpenceCategoryId", propHeaderCurrentRow.getAttribute("ExpenceCategoryId"));
        dupRow.setAttribute("HierarchyName", propHeaderCurrentRow.getAttribute("HierarchyName"));
        dupRow.setAttribute("FinYear", propHeaderCurrentRow.getAttribute("FinYear"));
        dupRow.setAttribute("Posm", propHeaderCurrentRow.getAttribute("Posm"));
        dupRow.setAttribute("HiqBrandManager", propHeaderCurrentRow.getAttribute("HiqBrandManager"));
        dupRow.setAttribute("Projectcode", propHeaderCurrentRow.getAttribute("Projectcode"));
//        dupRow.setAttribute("PendingAppName", userName);
//        dupRow.setAttribute("InHierarchy", propHeaderCurrentRow.getAttribute("InHierarchy"));
        dupRow.setAttribute("CurrentUser", userName);
        dupRow.setAttribute("CurrencyCode", propHeaderCurrentRow.getAttribute("CurrencyCode"));
        dupRow.setAttribute("ExchangeRate", propHeaderCurrentRow.getAttribute("ExchangeRate"));
//        dupRow.setAttribute("ApStatus", propHeaderCurrentRow.getAttribute("ApStatus"));
//        dupRow.setAttribute("StateCodeName", propHeaderCurrentRow.getAttribute("StateCodeName"));
        dupRow.setAttribute("BudgetLevel", propHeaderCurrentRow.getAttribute("BudgetLevel"));
        dupRow.setAttribute("AdfCreatedName",userName);
        dupRow.setAttribute("StateName", propHeaderCurrentRow.getAttribute("StateName"));
//        dupRow.setAttribute("TotalLineAmount", propHeaderCurrentRow.getAttribute("TotalLineAmount"));
//        dupRow.setAttribute("ExpenceMainCategory", propHeaderCurrentRow.getAttribute("ExpenceMainCategory"));
//        dupRow.setAttribute("TotalBudgetAmount", propHeaderCurrentRow.getAttribute("TotalBudgetAmount"));
//        dupRow.setAttribute("TotalRemainingAmount", propHeaderCurrentRow.getAttribute("TotalRemainingAmount"));
//        dupRow.setAttribute("TotalConsumedAmount", propHeaderCurrentRow.getAttribute("TotalConsumedAmount"));
//        dupRow.setAttribute("BudgetId", propHeaderCurrentRow.getAttribute("BudgetId"));
//        dupRow.setAttribute("ExpenseCategorySwitcher", propHeaderCurrentRow.getAttribute("ExpenseCategorySwitcher"));
//        dupRow.setAttribute("AmountUtilized", propHeaderCurrentRow.getAttribute("AmountUtilized"));
//        dupRow.setAttribute("ApproverRemarkTemp", propHeaderCurrentRow.getAttribute("ApproverRemarkTemp"));
        dupRow.setAttribute("SpotLightAtt", propHeaderCurrentRow.getAttribute("SpotLightAtt"));
       
                //Inserting the duplicate row
                proposalHeaderVO.insertRow(dupRow);
                
                //EXECUTING SETPARAM for SelectActivities..
                String activityType = (String)propHeaderCurrentRow.getAttribute("ActivityType");
                  activityType =   activityType.substring(0,activityType.indexOf("-",0));
                  System.out.println("value in activity Type::: " +activityType);
                setParam(activityType);
               
    }

and here's the method 2

method 2 is to copy all the fields, but change of LOV dependent parent or child LOV don't is not re-rested

public void copyProposal(javax.faces.event.ActionEvent actionEvent) {
// Add event code here...
        System.out.println("Inside copyProposal Method::::");
                AdfFacesContext adfctx = AdfFacesContext.getCurrentInstance();
                java.util.Map pageFlowScope = adfctx.getPageFlowScope();
                String userName = (String) pageFlowScope.get("user").toString();
                Date date = new Date();
                System.out.println("date::: " +date);
                String date1 = new SimpleDateFormat("dd-MMM-yyyy").format(new Date()).toString();
                System.out.println("date1::: " +date1);
                String date2 = new SimpleDateFormat("mm/dd/yyyy").format(new Date()).toString();
                
                Calendar currenttime = Calendar.getInstance();
                    Date sqldate = new Date((currenttime.getTime()).getTime());
                    System.out.println("current Date_Time::: " +sqldate);
                AppModuleImpl am = this.getAm();
                ViewObject proposalHeaderVO = am.getProposalHeaderView2();    
                //        ViewObjectImpl proposalHeaderVO = this.getProposalHeaderView2();
                Row propHeaderCurrentRow = proposalHeaderVO.getCurrentRow();
                String[] propHeaderAttrs = propHeaderCurrentRow.getAttributeNames();
                //Skip copying the primay key attributes or any attributes which you want to skip
                String[] skipAttrs = new String[] {"BranchProposalNumber", "BranchHoSerial","ProposalId","ProposalDate","CreationDate","ApprovalStatus","Attribute9","Attribute10",
                                                   "ProposalAmt","ApprovalRemarks","ApproverRemarkTemp","BudgetAmt","ConsumedAmt","RemainingAmt","AmountUtilized"};  //,"L1Approver","L2Approver","L3Approver","L1Code","L2Code","L3Code"
                List skipAttrList = Arrays.asList(skipAttrs);
                //creating a new duplicate row
                Row dupRow = proposalHeaderVO.createRow();
                //copying all attributes one by one
                for (int i = 0; i < propHeaderAttrs.length; i++) {
                    String propHeaderAttrName = propHeaderAttrs[i];
                
                    if ("ProposalDate".equals(propHeaderAttrName))
                        dupRow.setAttribute(propHeaderAttrName, sqldate);
                    
                    int attrIndex = dupRow.getAttributeIndexOf(propHeaderAttrName);
                    //Checking if the attribute is in the skip attribute list and the attribute is updatable
                    if (!skipAttrList.contains(propHeaderAttrName) &&
                        dupRow.isAttributeUpdateable(attrIndex))
                        //Setting the value for the attributes
                        dupRow.setAttribute(propHeaderAttrName,
                                            propHeaderCurrentRow.getAttribute(propHeaderAttrName));
                    
            
                    System.out.println("nm,"+propHeaderAttrName+" k, j," +" " +propHeaderAttrName+" , ");
                }
                
                dupRow.setAttribute("AdfCreatedBy",userName);
                dupRow.setAttribute("Attribute10",userName);
                dupRow.setAttribute("ApprovalStatus", "Pending");
                dupRow.setAttribute("L1Approver", propHeaderCurrentRow.getAttribute("L1Approver"));
                dupRow.setAttribute("L1Code", propHeaderCurrentRow.getAttribute("L1Code"));
                dupRow.setAttribute("L2Approver", propHeaderCurrentRow.getAttribute("L2Approver"));
                dupRow.setAttribute("L2Code", propHeaderCurrentRow.getAttribute("L2Code"));
                dupRow.setAttribute("L3Approver", propHeaderCurrentRow.getAttribute("L3Approver"));
                dupRow.setAttribute("L3Code", propHeaderCurrentRow.getAttribute("L3Code"));
                
                dupRow.setAttribute("ActivityType", propHeaderCurrentRow.getAttribute("ActivityType"));
                dupRow.setAttribute("HierarchyName", propHeaderCurrentRow.getAttribute("HierarchyName"));
                
                dupRow.setAttribute("HiqBrandManager", propHeaderCurrentRow.getAttribute("HiqBrandManager"));

                //Inserting the duplicate row
                proposalHeaderVO.insertRow(dupRow);
                
                //EXECUTING SETPARAM for SelectActivities..
                String activityType = (String)propHeaderCurrentRow.getAttribute("ActivityType");
                  activityType =   activityType.substring(0,activityType.indexOf("-",0));
                  System.out.println("value in activity Type::: " +activityType);
                setParam(activityType);
               
    }

kindly help me to get the copy feature and feature update dependent lov.

Best regards,

MD Jahangir Pasha

Dear gurus,

Thank you for your support and answers.

Problem solved, I added view accessors name in the attribute skip list. now it does not work as expected.

Kind regards

Tags: Java

Similar Questions

  • Network of ESXi - different behavior when installing adapter

    Hi Experts,

    I came across a strange problem on the network adapters section:

    • I was installing the ESXi 5.5 in a standalone Machine (re-usable)
    • When installing, it showed me the error on non detected network cards and I checked the compatibility of the guide and found that it was not a supported network card.
    • Then I installed 'VMware Workstation 10' on the same machine on the host operating system
    • I have created a virtual machine and tried to install 'ESXi' inside the virtual machine [just for curiosity\
    • He installed perfactly without error / warning (s).

    My concern is 'how and why ESXi comes with two different behaviors between installation Metel naked Machine v/s install inside a virtual machine on the same physical host.

    Thanks for your response in advance and I apologize if I am not able to present the screenplay with clarity.

    -Kuldeep Singh

    Under vmware workstation, the virtualized esxi uses the virtual NIC (probably E1000) driver, which is supported.  The host operating system uses its own realtek driver.

    When you try to run ESXi on bare metal, it doesn't have a realtek driver, if it fails.

    It is a driver problem.

  • Keep the original creation date when copying or moving files (Windows XP/7, Windows Server 2003/2008)

    I know that the default behavior of (any version) Windows when copying or moving files, is that Windows makes everything first creates a new folder, copy the content, and when you move files, deletes the source after successful copy folder. Unlike Mac OS, where mechanisms of copy and move assume that when you copy a folder, the properties of the copied folder should have the same properties as the source folder, so to keep the original date of creation!

    Is it possible to change this behavior in Windows? I know that Robocopy in Windows Server 2008 has an option to keep the dates of creation of record, but I would like to know if you can change Windows 7/Windows Server 2008 behave similarly.

    It is very annoying that when you restore or copy a folder, the new folder has the date of the creation of the current date instead of the date of original creation.  People tend to look for old records that exist is no longer when you copied or moved the files.

    Hey E Kyung,
     
    There is no way to do this in windows. The design of Windows, this is the creation date refers to the file, while the date of the amendment relates to the content. If the creation date is really important to you, you can set after the copy with a utility.

    The easiest is to right-click on the file and drag it to the destination folder. you will be asked to copy or move. If you move, the creation date will not change.

    Yes, Robocopy is available in Windows 7.

    Thank you, and in what concerns:
    Shalini Surana - Microsoft technical support.
    Visit our Microsoft answers feedback Forumand let us know what you think.

  • Popup LOV result differs from Lily LOV

    Hello
    I wanted to spend a popup LOV lists using the same named LOV, but the display changes. I wanted the field to display a name, even if the underlying value is an id number and it works very well with a simple list of LOV. When I change the pop-up list, the name no longer displays in the field, only a number. Whey is the Popup behaves differently from the list? Am I missing something? I even did in Apex 4.0.1 and earlier at the Apex 4.1 and got the same result.

    Pat

    Try to use the ' Popup * key * LOV...» "vs type 'Popup LOV."... ».

  • IOException, captured when copying on PCTCT

    Hi all

    I have an application that transfers via FTP PDF files on a different servers VPN links. Sometimes the PCTCT will be error with the message: an exception occurred during the operation of FTP getfile. The cause of this exception was that: IOException captured when copying.

    The problem occurs about 30 seconds after the transfer where it suddenly stops for transfer, another 30 seconds later, the error is thrown. If the file is small enough to move in about 30 seconds, there is no error.

    Active/passive does not seem to make a difference. There is no error on the remote, nothing unusual in the IIS configuration.

    CFMX7 7.0.2.142559 with Java version 1.4.2_09.

    Anyone has any ideas on where it could go wrong?

    Thanks in advance,

    Ian

    We went back 7.0.0.91690 and found that the problem is resolved. (Java1.4.2_05)

  • cannot scroll when copying

    I can't scroll when copying of text on a web page. When my selection reaches the bottom of the page with my mouse it just will not go further. This problem does not occur in any other application, or IE 8.

    I have not had this problem myself, because I have the bar of the Add - it open all the time. I saw this question be posted here by other users of recalledl a few times. Guess I remembered that cause a little bass-ackwards.

    Sounds like it may be this Bug, which is linked to a full screen or maximized window.

    https://Bugzilla.Mozilla.org/show_bug.cgi?id=644621

    Has been fixed, bur, it has been corrected for Firefox 8.0 and I cannot understand if it's supposed to be in Firefox 9.0 or not.

    https://Bugzilla.Mozilla.org/show_bug.cgi?id=675865

    Shows like "Assigned" and not "resolved".

  • Re: Satellite Pro U400-160 - freezes when copying larger files or videos

    Hello:

    I have a Satellite Pro U400-160 and a VERBATIM external hard drive USB eSATA combo.

    If I turn on AHCI mode recognizes the drive, but when copying the video files or large file size, the system is frozen. However if I remove the mode AHCI works correctly. I have the version 9.8.9.1023 Intel (r) Matrix Storage Manager and my laptop BIOS v4.0 and Windows Vista Business.

    Thanks in advance.

    Hello

    Normally the AHCI mode has nothing to do with an external HARD drive. It is only important for the internal HARD disk if you install Windows.

    Anyway, you have installed all the updates of Windows for Vista?
    In addition, you should test another external HARD disk or with another cable.

    Welcome them

  • HP Officejet Pro 8600 more black vertical line when copy or scan

    HP Officejet Pro 8600 more black vertical line when copy or scan everything in the middle of the page

    Hi Clementstl,

    I understand that you have a 8600 Pro Officejet which puts a black vertical line in the center of your copies/scans. I'm sorry to hear you had to deal with this, but I will certainly do my best to help you solve this problem.

    I recommend the rest of this document of vertical stripes, lines or streaks in the Copies, faxes or Scans as it should be in a position to help to cross that line. The most common cause is a small spot of something on the glass of the scanner, so just make sure that when you're cleaning use you as much elbow grease you can collect

    Just to clarify a little further, if the problem only seems to occur when you use the automatic document feeder, you'll want to focus your attention on the small strip of glass that he uses on the left side. If it only occurs when you use the flat glass, you want to concentrate on the large piece of glass he uses.

    Hope this helps, have a nice day!

  • vertical lines when copying or scanning with my c6180 printer

    6180 all in a print is fine, just copy & fax causes the vertical black line on the side only. site filled with HP troubleshoot process - no change. Can anyone help. printer is about 2 years

    I don't know if this will help anyone, but I had a problem with a black line when fax is received or when copying through my document feeder.  The quality was very good for printing and copying via the flat glass.

    Here's what I did for a solution... copy of the elevator panel to expose the big glass, then carefully lift on the small gray bonbout charger doc Center, this will take a little effort but don't break anything.

    Once up on hinge, put your fingers on the two gray side tabs to lift the next part with the rollers.  This will now expose a small ~ 2 x 9 "piece of glass that has probably debris like mine did.  Clean with windex and closing...

    I hope this helps.  Don't throw it!

    David

  • OfficeJet Pro 8630: hp 8630 printing Off Center when copying

    Printer prints well out of the computer, but prints off the coast on one side, when copying without worrying if the paper is flat or powered by the ADF.  Can't see obstructions.  Yet once, print very well when printing emails, downloads etc.  Only off-center by trying to use it as a copier.

    Hello

    If it is a copy, it is the printer and not from any software.

    Have you tried to do a 'Restore Factory defaults?"

    I wonder if that would help, except perhaps appeal for support.

    Thank you.

  • Black vertical streaks when copying in black

    When copying in W & B, get a heavy vertical black streak on the left side of the page, a lighter in the Center and a very light one on the right side. Colour printing is perfect...  New black cartridge without help.

    What kind of printer you have? I included a troubleshooting document that could help maybe this isn't your exact printer, but the steps are generally the same.

    Click here for the document

  • Plant system Windows Explorer when copying or moving files: error explore 0xc000012d

    Windows Explorer crashes XP Home (laptop) system when copying or moving files that gives the error message: explore 0xc000012d.  Text and images suddenly begins to disappear from the screen (go faster if you move the mouse on the screen!), system crashes, gives the blue screen and stops. No time to save data, which is happening so fast.  I lose all data in open programs.  RAM is tested without error, ATI Mobility Radeon X 1300 driver has been updated, system fully updated, but nothing is. Could not find any information on the MS Support or on the web that would help.  Please help - tired system crash all the time!

    Pippuri,

    Try to disable the fast user switching and see if that helps.

    Go to control panel, double-click user accounts, and then change the way users log on and outside. Should be a checkbox to turn on fast user switching.

    Let us know if it works. Thank you.

  • lazorjetpro: black vertical line when copying but does not print

    When copying or scanning/printing of a document, we get a thin black line in the middle of the page, but not if we print from the computer directly to the printer.

    Please read this post then provide some details.  What printer model? If the line appears only when copying or scanning from the ADF Document (CAD) the line is almost always caused by a specification (or two) on the thin strip of glass to the left of the main scanner glass.  See here for more information on how to clean this area.  It may help to use a strong flashlight held almost flat against the glass to see the spot.

  • HP Officejet Pro more than 8600: HP Officejet Pro 8600 more black vertical line when copy or scan with automatic feeding

    HP Officejet Pro 8600 more black vertical line when copying or scanning using auto flow only.  It works very well on the flat.

    It is now resolved.  It seems that there is a strip of glass that is used for the automatic copy of power and research.  The glass has a note on it that I cleaned which solved my problem of vertical line.

  • Media Center has stopped to recover data when copying music CDs

    Vista Media Center is used to retrieve metadata about the Web when I ripped the music from the CD. Now, he says just unknown to the two album, song, artist, etc..  I tried to rerun the installation program - which did not help. The option to download when copying is enabled. Now what?

    Hello

    I suggest you try to disable the firewall and check.

    http://Windows.Microsoft.com/en-us/Windows-Vista/turn-Windows-Firewall-on-or-off

    Note: Run the computer without antivirus software or firewall is a potential threat to the computer; Be sure to activate security software after completing the troubleshooting steps and after identifying the problem.

Maybe you are looking for