Can BIP read this code??

my code looks like this, but the deisred results does not show properly . . . it doesnt have an error but the logic that i want doesnt apply :(
<?xdoxslt:set_variable($_XDOCTX,'vLOB',(//ListOfBipPremeraOpportunityIo14/Opportunity/CompanyLineOfBusiness))?>
<?if:(xdoxslt:get_variable($_XDOCTX,’vLOB’))=(//ListOfBipAssumptionCompanyQuoteIntegrationObject/CompanyQuoteAssumption/CompanyLineOfBusiness)?>
<?CompanyDescription?>

Did u try printing <?xdoxslt:get_variable($_XDOCTX,’vLOB’)?>
Does this have the expected value?

Similar Messages

  • Can anybody help me to build an interface that can work with this code

    please help me to build an interface that can work with this code
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("
    t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"key"
    b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    }... here's the head of my pirate_words_map.txt
    hello               ahoy
    hi                    yo-ho-ho
    pardon me       avast
    excuse me       arrr
    yes                 aye
    my                 me
    friend             me bucko
    sir                  matey
    madam           proud beauty
    miss comely    wench
    where             whar
    is                    be
    are                  be
    am                  be
    the                  th'
    you                 ye
    your                yer
    tell                be tellin'

    please help me i don t know how to go about this.my teacher ask me to build an interface that work with the code .
    Here is the interface i just build
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.awt.*;
    import javax.swing.*;
    public class boy extends JFrame
    JTextArea englishtxt;
    JLabel head,privatetxtwords;
    JButton translateengtoprivatewords;
    Container c1;
    public boy()
            super("HAKIMADE");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setBackground(Color.white);
            setLocationRelativeTo(null);
            c1 = getContentPane();
             head = new JLabel(" English to private talk Translator");
             englishtxt = new JTextArea("Type your text here", 10,50);
             translateengtoprivatewords = new JButton("Translate");
             privatetxtwords = new JLabel();
            JPanel headlabel = new JPanel();
            headlabel.setLayout(new FlowLayout(FlowLayout.CENTER));
            headlabel.add(head);
            JPanel englishtxtpanel = new JPanel();
            englishtxtpanel.setLayout(new FlowLayout(FlowLayout.CENTER,10,40));
            englishtxtpanel.add(englishtxt);
             JPanel panel1 = new JPanel();
             panel1.setLayout(new BorderLayout());
             panel1.add(headlabel,BorderLayout.NORTH);
             panel1.add(englishtxtpanel,BorderLayout.CENTER);
            JPanel translateengtoprivatewordspanel = new JPanel();
            translateengtoprivatewordspanel.setLayout(new FlowLayout(FlowLayout.CENTER,10,40));
            translateengtoprivatewordspanel.add(translateengtoprivatewords);
             JPanel panel2 = new JPanel();
             panel2.setLayout(new BorderLayout());
             panel2.add(translateengtoprivatewordspanel,BorderLayout.NORTH);
             panel2.add(privatetxtwords,BorderLayout.CENTER);
             JPanel mainpanel = new JPanel();
             mainpanel.setLayout(new BorderLayout());
             mainpanel.add(panel1,BorderLayout.NORTH);
             mainpanel.add(panel2,BorderLayout.CENTER);
             c1.add(panel1, BorderLayout.NORTH);
             c1.add(panel2);
    public static void main(final String args[])
            boy  mp = new boy();
             mp.setVisible(true);
    }..............here is the code,please make this interface work with the code
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("
    t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"key"
    b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    }... here's the head of my pirate_words_map.txt
    hello               ahoy
    hi                    yo-ho-ho
    pardon me       avast
    excuse me       arrr
    yes                 aye
    my                 me
    friend             me bucko
    sir                  matey
    madam           proud beauty
    miss comely    wench
    where             whar
    is                    be
    are                  be
    am                  be
    the                  th'
    you                 ye
    your                yer
    tell                be tellin'

  • What do you do when you can't read the code on a iTunes gift card?

    What do you do when you can't read the code on a iTunes gift card? I tried taking it back to the store with my reciept, but they said I would have to contact Apple support. Am I out just out $25 dollars?

    See this support article:
    http://support.apple.com/kb/TS1292
    Instructions are at the bottom of that article.
    BTW, this forum is for questions about iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. Normally you want to ask your questions in the general iTunes forums.
    Regards.

  • Can soemone explain this code to me

    can someone explain this code to me
    import javax.swing.*;
    import BreezySwing.*;
    import java.util.Random;
    public class PennyPinch extends GBFrame
         private JButton enterButton;
         private JTextArea outputArea;
         private int[][] board = {{1,1,1,1,1},{1,2,2,2,1},{1,2,3,2,1},{1,2,2,2,1},{1,1,1,1,1}};
         private boolean[][] landing = new boolean[5][5];
         private int total;
         public PennyPinch()
         enterButton = addButton ("Pitch",2,1,1,1);
         outputArea = addTextArea("",4,1,3,4);
         public void pitch()
              Random generator = new Random();          
              int randomRow = generator.nextInt(5);
              int randomColumn = generator.nextInt(5);
              total += board[randomRow][randomColumn];
              landing[randomRow][randomColumn] = true;
         public void buttonClicked (JButton buttonObj)
              pitch();
              displayList(board, outputArea);
         private void displayList(int a[][], JTextArea output)
    output.setText("");
              for (int row = 0; row < 5; row++)
    for (int col = 0; col < 5; col++){
    if(landing[row][col] ==true)
                                  output.append(Format.justify('r',"P", 3) + " ");
                                  if (col == 4)
    output.append("\n");
                             else
                             output.append(Format.justify('r', a[row][col], 3) + " ");
                             if (col == 4)
    output.append("\n");                    }
              output.append("the total is " + total);
         public static void main (String[] args)
    PennyPinch theGUI = new PennyPinch();
    theGUI.setSize (300, 300);
    theGUI.setVisible(true);
    }

    Knowing toilets or studying under George?What kind pervert are you?
    What is written in public toilets o/c!Ah yes I see, I found example questions.
    2:3.4 please complete the following well known saying
    by filling in the blank
    Whilst you are reading what I put
    You are blank on your foot
    2:3.5 Upon seeing the announcement 'Toilet
    tennis' and following the instruction ' please
    see other wall for details' what is the standard
    message on the other wall.2:3.4. is the correct answer 'micturating' ?
    2:3.5. I believe the answer is Ibidem.

  • How  can i run this code correctly?

    hello, everybody:
        when  i run the code, i found that it dons't work,so ,i  hope somebody can help me!
        the Ball class is this :
        package {
        import flash.display.Sprite;
        [SWF(width = "550", height = "400")]
        public class Ball extends Sprite {
            private var radius:Number;
            private var color:uint;
            private var vx:Number;
            private var vy:Number;
            public function Ball(radius:Number=40, color:uint=0xff9900,
            vx:Number =0, vy:Number =0) {
                this.radius= radius;
                this.color = color;
                this.vx = vx;
                this.vy = vy;
                init();
            private function init():void {
                graphics.beginFill(color);
                graphics.drawCircle(0,0,radius);
                graphics.endFill();
    and the Chain class code is :
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        [SWF(width = "550", height = "400")]
        public class Chain extends Sprite {
            private var ball0:Ball;
            private var ball1:Ball;
            private var ball2:Ball;
            private var spring:Number = 0.1;
            private var friction:Number = 0.8;
            private var gravity:Number = 5;
            //private var vx:Number =0;
            //private var vy:Number = 0;
            public function Chain() {
                init();
            public function init():void {
                ball0  = new Ball(20);
                addChild(ball0);
                ball1 = new Ball(20);
                addChild(ball1);
                ball2 = new Ball(20);
                addChild(ball2);
                addEventListener(Event.ENTER_FRAME, onEnterFrame);
            private function onEnterFrame(event:Event):void {
                moveBall(ball0, mouseX, mouseY);
                moveBall(ball1, ball0.x, ball0.y);
                moveBall(ball2, ball1.x, ball1.y);
                graphics.clear();
                graphics.lineStyle(1);
                graphics.moveTo(mouseX, mouseY);
                graphics.lineTo(ball0.x, ball0.y);
                graphics.lineTo(ball1.x, ball1.y);
                graphics.lineTo(ball2.x, ball2.y);
            private function moveBall(ball:Ball,
                                      targetX:Number,
                                      targetY:Number):void {
                ball.vx += (targetX - ball.x) * spring;
                ball.vy += (targetY - ball.y) * spring;
                ball.vy += gravity;
                ball.vx *= friction;
                ball.vy *= friction;
                ball.x += vx;
                ball.y += vy;
    thanks every body's help!

    ok, thanks for your reply ! I run this code in the Flex builder 3!and the Ball class and the Chain class are all in the same AS project!
      and i changed the ball.pv property as public in the Ball class, and  the Chain class has no wrong syntactic analysis,but the AS code don't run.so this is the problem.
    2010-04-21
    Fang
    发件人: Ned Murphy <[email protected]>
    发送时间: 2010-04-20 23:01
    主 题: how  can i run this code correctly?
    收件人: fang alvin <[email protected]>
    I don't see that the Ball class has a pv property, or that you even try to access a pv property in the Chain class.  All of the properties in your Ball class are declared as private, so you probably cannot access them directly.  They would need to be public.  Also, I still don't see where you import Ball in the chain class such that it can use it.

  • HT2736 I can't read the code on the back of the card. It was scratched off. How do I redeem?

    I can't read the code on the back of the card. It was scratched off. How do I redeem?
    Pjs

    Try  >  http://support.apple.com/kb/TS1292
    If no joy...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I m login in th my iphone in the itune ti download something after entering cc details its asking about something itune gift card secure code...i am not getting this..where can i get this code in order to dowanload frm itune...

    i m login in th my iphone in the itune ti download something after entering cc details its asking about something itune gift card secure code...i am not getting this..where can i get this code in order to dowanload frm itune...

    Meen0902 wrote:
    ... after entering cc details its asking about something itune gift card secure code...i
    Try the 3 or 4 digit code on the back of your Credit Card....

  • I forgot the codeslot of my ipod. How can I delete this code?

    I forgot the codeslot of my ipod. How can I delete this code? Can anybody help help me? I'm sorry for the bad English.

    Connect it to iTunes and Restore it.

  • How can i rewrite this code into java?

    How can i rewrite this code into a java that has a return value?
    this code is written in vb6
    Private Function IsOdd(pintNumberIn) As Boolean
        If (pintNumberIn Mod 2) = 0 Then
            IsOdd = False
        Else
            IsOdd = True
        End If
    End Function   
    Private Sub cmdTryIt_Click()
              Dim intNumIn  As Integer
              Dim blnNumIsOdd     As Boolean
              intNumIn = Val(InputBox("Enter a number:", "IsOdd Test"))
              blnNumIsOdd = IsOdd(intNumIn)
              If blnNumIsOdd Then
           Print "The number that you entered is odd."
        Else
           Print "The number that you entered is not odd."
        End If
    End Sub

    873221 wrote:
    I'm sorry I'am New to Java.Are you new to communication? You don't have to know anything at all about Java to know that "I have an error," doesn't say anything useful.
    I'm just trying to get you to think about what your post actually says, and what others will take from it.
    what does this error mean? what code should i replace and add? thanks for all response
    C:\EvenOdd.java:31: isOdd(int) in EvenOdd cannot be applied to ()
    isOdd()=true;
    ^
    C:\EvenOdd.java:35: isOdd(int) in EvenOdd cannot be applied to ()
    isOdd()=false;
    ^
    2 errors
    Telling you "what code to change it to" will not help you at all. You need to learn Java, read the error message, and think about what it says.
    It's telling you exactly what is wrong. At line 31 of EvenOdd.java, you're calling isOdd(), with no arguments, but the isOdd() method requires an int argument. If you stop ant think about it, that should make perfect sense. How can you ask "is it odd?" without specifying what "it" is?
    So what is this all about? Is this homework? You googled for even odd, found a solution in some other language, and now you're just trying to translate it to Java rather than actually learning Java well enough to simply write this trivial code yourself?

  • I downloaded the whatsapp for my phone and i can't find this code i have to put in. Help!

    i downloaded the whatsapp for my phone and i can't find this code i have to put in. Help!

    My phone had the same problem with yours before.
    Here is my solution.
    Install a software that setup an android system to your computer
    Inside the "an android system", install Whatsapp
    run Whatsapp, input your phone number to get the code
    At this time, your phone suppose to receive your code.

  • .ics file error : "iCal can't read this calendar file."

    I would like to add my flight itinery to my iCal. Downloaded the .ics file from the BA website. When double clicking on it and dragging it to iCal this message pops up: "iCal can’t read this calendar file. No events have been added to your iCal calendar."
    file details:
    BEGIN:VCALENDAR
    PRODID:-//Ben Fortuna//iCal4j 1.0//EN
    VERSION:2.0
    CALSCALE:GREGORIAN
    METHOD:PUBLISH
    BEGIN:VEVENT
    I also tried converting it to .vcs. Then iCal asks which calender I would like to add it to but still comes up with above message.
    Any ideas?
    Thanks.

    Hi!
    I managed to import the file when I deleted everything that had to do with HTML code at the end of the file. I'm not exactly sure about the purpose of this code, but deleting it left me with my flights inside my calendar, exactly as I wanted.
    HTH,
    Michael

  • Can anyone read this Apple crash report?

    Hi everyone!
    My iMac's been absolutely fine since I bought it. The Lion upgrade was smooth. I upgraded on the first day Lion became available.
    In the past week, I keep getting every other day a progressive gray screen and a warning that the computer needs to restart. I've no idea what's causing the crash... it happens when I have the standard suite of apps running (Mail, iTunes, Safari, etc) so no exotic application.
    Here's a crash report. Can anyone read this and pin point the problem?
    Thanks!
    Interval Since Last Panic Report:  26855 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    2A90D08F-7981-4C26-90A0-88431085705A
    Thu Jan 19 21:02:56 2012
    panic(cpu 1 caller 0xffffff8000570f80): "MCHECK: m_type=12350 m=0xffffff807b9b6500"@/SourceCache/xnu/xnu-1699.24.8/bsd/kern/uipc_mbuf.c:3129
    Backtrace (CPU 1), Frame : Return Address
    0xffffff808045bad0 : 0xffffff8000220702
    0xffffff808045bb50 : 0xffffff8000570f80
    0xffffff808045bb80 : 0xffffff8000572c77
    0xffffff808045bc10 : 0xffffff80005731d6
    0xffffff808045bc30 : 0xffffff8000358c25
    0xffffff808045bd10 : 0xffffff8000353729
    0xffffff808045bd50 : 0xffffff8000580644
    0xffffff808045be40 : 0xffffff8000563973
    0xffffff808045be70 : 0xffffff80005614bf
    0xffffff808045bf00 : 0xffffff8000561612
    0xffffff808045bf50 : 0xffffff80005caa9b
    0xffffff808045bfb0 : 0xffffff80002d8363
    BSD process name corresponding to current thread: IMServicePlugInA
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 7371663855074
    last loaded kext at 7163667149728: com.trusteer.driver.gakl_driver_2          1 (addr 0xffffff7f8079d000, size 28672)
    last unloaded kext at 7058117348300: com.apple.driver.AppleUSBCDC          4.1.15 (addr 0xffffff7f80799000, size 12288)
    loaded kexts:
    com.trusteer.driver.gakl_driver_2          1
    com.kaspersky.kext.kimul.38          38
    com.parallels.kext.prl_vnic          6.0 12106.692267
    com.parallels.kext.prl_netbridge          6.0 12106.692267
    com.parallels.kext.prl_hid_hook          6.0 12106.692267
    com.parallels.kext.prl_hypervisor          6.0 12106.692267
    com.parallels.kext.prl_usb_connect          6.0 12106.692267
    com.kaspersky.kext.klif          2.2.0d14
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleBluetoothMultitouch          66.3
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AGPM          100.12.42
    com.apple.driver.AppleMikeyDriver          2.1.3f7
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.kext.ATIFramebuffer          7.1.4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.driver.AirPort.Atheros40          501.58.1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.ATIRadeonX3000          7.1.4
    com.apple.driver.AppleIntelHD3000Graphics          7.1.4
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.AppleIRController          312
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.driver.Oxford_Semi          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleUSBEHCI          4.5.5
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.1.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.1.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleMultitouchDriver          220.62.1
    com.apple.driver.IOBluetoothHIDDriver          4.0.1f4
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.iokit.IO80211Family          411.1
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.driver.AppleThunderboltEDMSink          1.1.3
    com.apple.driver.AppleThunderboltEDMSource          1.1.3
    com.apple.kext.ATI6000Controller          7.1.4
    com.apple.kext.ATISupport          7.1.4
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.driver.AppleIntelSNBGraphicsFB          7.1.4
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.driver.AppleThunderboltDPOutAdapter          1.5.8
    com.apple.driver.AppleThunderboltDPInAdapter          1.5.8
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.5.8
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.driver.XsanFilter          403
    com.apple.driver.AppleThunderboltNHI          1.3.2
    com.apple.iokit.IOThunderboltFamily          1.7.4
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOUSBFamily          4.5.5
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4
    Unable to gather system configuration information.Model: iMac12,1, BootROM IM121.0047.B1D, 4 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 1.71f21
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.58.4-P2P
    Bluetooth: Version 4.0.1f4, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-402AA0, 500.11 GB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 3
    USB Device: iPhone, apple_vendor_id, 0x12a0, 0xfa130000 / 5
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: 7600 Series, 0x043d  (Lexmark International Inc.), 0x0150, 0xfd140000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 3
    FireWire Device: eGo HDD, Iomega, 800mbit_speed

    This crash reports says...
    OS: 10.7.2
    Processor: Intel 64-bit
    Computer: iMac 10 generation, lowest-end model
    Interval Since Last Panic Report:  26855 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    2A90D08F-7981-4C26-90A0-88431085705A
    Thu Jan 19 21:02:56 2012
    panic(cpu 1 caller 0xffffff8000570f80): "MCHECK: m_type=12350 m=0xffffff807b9b6500"@/SourceCache/xnu/xnu-1699.24.8/bsd/kern/uipc_mbuf.c:3129
    Backtrace (CPU 1), Frame : Return Address
    0xffffff808045bad0 : 0xffffff8000220702
    0xffffff808045bb50 : 0xffffff8000570f80
    0xffffff808045bb80 : 0xffffff8000572c77
    0xffffff808045bc10 : 0xffffff80005731d6
    0xffffff808045bc30 : 0xffffff8000358c25
    0xffffff808045bd10 : 0xffffff8000353729
    0xffffff808045bd50 : 0xffffff8000580644
    0xffffff808045be40 : 0xffffff8000563973
    0xffffff808045be70 : 0xffffff80005614bf
    0xffffff808045bf00 : 0xffffff8000561612
    0xffffff808045bf50 : 0xffffff80005caa9b
    0xffffff808045bfb0 : 0xffffff80002d8363
    This is a kernel error. Did your screen give you this error? This is well know as the "Black Screen Of Death". Just restart your computer and see what happens.
    Source of picture: http://en.wikipedia.org/wiki/File:Panic10.6.png

  • Movies in .flv . QuickPlayer can't read this. Can you help me, please.

    QuickPlayer can't read this. Can you help me, please.

    Quicktime cannot read Flash files. For that you need Flash Player from Adobe.
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player if you have it, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Can anyone read this log?

    Trying to sync my iCal using BB Desktop Manager for Mac and the error message simply says: "a sync error has occured, please try again" Can anyone read this log and tell me what the problem is? Thanks
    2009-12-01 13:24:56.790 INFO     BASE_COMMANDCommands  ------------  Starting [Command BDSyncCommand [Device name: AK Blackberry Bold ATT pin: ********]]
    2009-12-01 13:24:56.791 INFO     BASE_COMMANDCommands  Opening DB channel. [Command BDSyncCommand [Device name: AK Blackberry Bold ATT pin: ********]]
    2009-12-01 13:24:57.857 INFO     BASE_COMMANDCommands  ------------  Starting Sub: [Command BDCalendarsSyncCommand [Device name: AK Blackberry Bold ATT pin: ********]]
    2009-12-01 13:24:58.376 INFO     DATABASE_CHLpimSync   Running 'HOST_ADD_RECORD_EX' on Calendar
    2009-12-01 13:24:58.418 INFO     DATABASE_CHLpimSync   Running 'HOST_REMOVE_RECORD' for record '1361312429' on Calendar
    2009-12-01 13:24:58.419 INFO     DATABASE_CHLpimSync   Running 'HOST_SUMMARIZE' on Calendar
    2009-12-01 13:24:58.572 INFO     DATABASE_CHLpimSync   Running 'HOST_CLEAN' on Calendar
    2009-12-01 13:25:00.880 INFO     DATABASE_CHLpimSync   Running 'HOST_SUMMARIZE' on Calendar
    2009-12-01 13:25:01.024 INFO     DATABASE_CHLpimSync   Running 'HOST_CLEAN_DIRTY_FLAG' on Calendar
    2009-12-01 13:25:03.102 ERROR*** default     pimSync   Exception during sync: Session <ISyncConcreteSession: 0x1b65a460> cancelled. *** -[NSCFArray initWithObjects:count:]: attempt to insert nil object at objects[0]
    2009-12-01 13:25:03.104 ERROR*** default     pimSync   An exception of type ISyncSessionCancelledException occured because: Session <ISyncConcreteSession: 0x1b65a460> cancelled. *** -[NSCFArray initWithObjects:count:]: attempt to insert nil object at objects[0]
    (no stacktrace available)
    2009-12-01 13:25:06.224 INFO     BASE_COMMANDCommands  ------------  Completed [Command BDCalendarsSyncCommand [Device name: AK Blackberry Bold ATT pin: ********]]
    2009-12-01 13:25:06.225 INFO     default     1BB1EB50  'RIM Desktop' channel is closing.
    2009-12-01 13:25:06.299 INFO     BASE_COMMANDCommands  ------------  Completed [Command BDSyncCommand [Device name: AK Blackberry Bold ATT pin: ********]]
    2009-12-01 13:25:07.790 INFO     DEVICES     main      Setting activeDevice to [Device name: AK Blackberry Bold ATT pin: ********]
    PS. there was error in posting this text ("invalid HTML found" hopefully this is correct)
    Solved!
    Go to Solution.

    Yep, there was an error doing the calendar sync...There are a host of reasons:
    incompatible fields
    prior versions of syncing software still on computer
    cache not cleared
    calendar data in the wrong folder
    too many calendars in iCal and on device....
    the list goes on
    4.6.1.305 hybrid
    Mac Pro 2X2.8 Quad SL

  • Can anyone read this Console log and tell me what is "librariand" ?

    I've been having "librariand" showing up every 2-3 minutes in my log. can anyone read this Console log and tell me what is "librariand" and what's the problem behind this ?
    11-08-14 9:53:37.009 AM librariand: new client - cancelling idle timeout
    11-08-14 9:53:37.010 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:53:37.010 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:53:37.010 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:53:37.010 AM librariand: no clients - starting idle timer
    11-08-14 9:53:37.011 AM librariand: new client - cancelling idle timeout
    11-08-14 9:53:37.011 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:53:37.012 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:53:37.012 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:53:37.012 AM librariand: no clients - starting idle timer
    11-08-14 9:53:37.013 AM librariand: new client - cancelling idle timeout
    11-08-14 9:53:37.014 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:53:37.014 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:53:37.015 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:53:37.015 AM librariand: no clients - starting idle timer
    11-08-14 9:53:37.015 AM librariand: new client - cancelling idle timeout
    11-08-14 9:53:37.015 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:53:37.016 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:53:37.016 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:53:37.016 AM librariand: no clients - starting idle timer
    11-08-14 9:53:37.017 AM librariand: new client - cancelling idle timeout
    11-08-14 9:53:37.017 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:53:37.017 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:53:37.018 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:53:37.019 AM librariand: no clients - starting idle timer
    11-08-14 9:56:39.802 AM librariand: new client - cancelling idle timeout
    11-08-14 9:56:39.803 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:56:39.803 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:56:39.804 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:56:39.804 AM librariand: no clients - starting idle timer
    11-08-14 9:57:11.575 AM librariand: new client - cancelling idle timeout
    11-08-14 9:57:11.576 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:57:11.576 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:57:11.577 AM librariand: no ubiquity account configured, not creating collection
    11-08-14 9:57:11.577 AM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 9:57:11.577 AM librariand: client connection is invalid: Connection invalid
    11-08-14 9:57:11.577 AM librariand: no clients - starting idle timer

    I completely uninstalled the following:
    Removed Evernote.app
    Removed User/Library/Preferences/com.evernote.Evernote.plis
    Removed User/Library/Applications Support/Evernote
    and still get to see these logs when restart:
    11-08-14 7:57:03.263 PM librariand: new client - cancelling idle timeout
    11-08-14 7:57:03.263 PM librariand: no ubiquity account configured, not creating collection
    11-08-14 7:57:03.263 PM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 7:57:03.264 PM helpd: unable to get sandbox extensions: The operation couldn’t be completed. (LibrarianErrorDomain error 10 - Unable to configure the collection.)
    11-08-14 7:57:03.265 PM librariand: no ubiquity account configured, not creating collection
    11-08-14 7:57:03.265 PM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    11-08-14 7:57:03.265 PM librariand: client connection is invalid: Connection invalid
    11-08-14 7:57:03.265 PM librariand: no clients - starting idle timer
    11-08-14 7:57:13.753 PM librariand: new client - cancelling idle timeout
    11-08-14 7:57:13.767 PM librariand: no ubiquity account configured, not creating collection
    11-08-14 7:57:13.767 PM librariand: error in handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    any other solution ?

Maybe you are looking for

  • Oracle JAAS with roles from database tables and Oracle SSO integration

    I have the following requirement for user authentication and authorization. The applications are build using ADF Faces and BC4J. User authentication should be done using Oracle SSO. User roles and functions will be stored in custom tables. These role

  • Deployed application can't see the JDBC connection

    Hi I made an ADF application using oracle JDeveloper 11g and it ran successfully from the JDeveloper I deployed it to Weblogic 10.3 and it successfully deployed But when i Opened the deployed application's URL the page's lay out is only what i c (onl

  • How to add image in the background of textarea?

    hello frnds i m confused regarding the sticking any png image as a background in the textArea which has a black background by default. If any body has any solution then plz do help me out.. thanx kuldeep

  • Question on MV Dropped on 10.2.0.4

    Hi Folks, We found a MV was missing on our Production database version 10.2.0.4 I could not find any %drop% or %rename% SQL_ID using DBA_HIST_SQL_PLAN and DBA_HIST_ACTIVE_SESS_HISTORY views.I searched with the object name. Please help me in identifyi

  • Why won't the sound on my iPhone work? No music, no text tones or ring tone.

    This morning my phones sound did not work when I plugged it into my car to play music. I unplugged it and realized none of the sound was working. No ringtone, no voicemail, no phonecalls, nothing. After playing with it and restarting it a couple time