Can any one share what is the flow of mm

HI
GURUS WHAT IS THE FLOW OF MM
THANKS IN ADVANCE

Hi,
MM Process Flow
The typical procurement cycle for a service or material consists of the following phases:
<b>1. Determination of Requirements</b>
Materials requirements are identified either in the user departments or via materials planning and control. (This can cover both MRP proper and the demand-based approach to inventory control. The regular checking of stock levels of materials defined by master records, use of the order-point method, and forecasting on the basis of past usage are important aspects of the latter.) You can enter purchase requisitions yourself, or they can be generated automatically by the materials planning and control system.
<b>2. Source Determination</b>
The Purchasing component helps you identify potential sources of supply based on past orders and existing longer-term purchase agreements. This speeds the process of creating requests for quotation (RFQs), which can be sent to vendors electronically via SAP EDI, if desired.
<b>3. Vendor Selection and Comparison of Quotations</b>
The system is capable of simulating pricing scenarios, allowing you to compare a number of different quotations. Rejection letters can be sent automatically.
<b>4. Purchase Order Processing</b>
The Purchasing system adopts information from the requisition and the quotation to help you create a purchase order. As with purchase requisitions, you can generate Pos yourself or have the system generate them automatically. Vendor scheduling agreements and contracts (in the SAP System, types of longer-term purchase agreement) are also supported.
<b>5. Purchase Order Follow-Up</b>
The system checks the reminder periods you have specified and - if necessary - automatically prints reminders or expediters at the predefined intervals. It also provides you with an up-to-date status of all purchase requisitions, quotations, and purchase orders.
<b>6. Goods Receiving and Inventory Management</b>
Goods Receiving personnel can confirm the receipt of goods simply by entering the Po number. By specifying permissible tolerances, buyers can limit over- and under deliveries of ordered goods.
<b>7. Invoice Verification</b>
The system supports the checking and matching of invoices. The accounts payable clerk is notified of quantity and price variances because the system has access to PO and goods receipt data. This speeds the process of auditing and clearing invoices for payment
Reward if useful
Chandru

Similar Messages

  • Can any one say What are the mandatory parameters in BAPI_GOODSMVT_CREATE

    Hi,
    Can any one say What are the mandatory parameters in
    BAPI_GOODSMVT_CREATE.
    Helpful answer will be rewarded.

    Hi,
    The following is an abap program making used of the BAPI function BAPI_GOODSMVT_CREATE to do Goods Receipts for Purchase Order after importing the data from an external system.
    BAPI TO Upload Inventory Data
    GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
                         02 - MB31 - Goods Receipts for Prod Order
                         03 - MB1A - Goods Issue
                         04 - MB1B - Transfer Posting
                         05 - MB1C - Enter Other Goods Receipt
                         06 - MB11
    Domain: KZBEW - Movement Indicator
         Goods movement w/o reference
    B - Goods movement for purchase order
    F - Goods movement for production order
    L - Goods movement for delivery note
    K - Goods movement for kanban requirement (WM - internal only)
    O - Subsequent adjustment of "material-provided" consumption
    W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
      tables
        data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
      TESTRUN                     = ' '
    IMPORTING
        goodsmvt_headret            = mthead
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
      GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
          FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
        tables
          data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    endform.
    *--- End of Program
    Reward for useful answers.
    Regards,
    Raj.

  • Can any one tell what is the problem in this code?

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.util.*;
    public class AppletTest2 extends JApplet implements ActionListener,MouseMotionListener,WindowListener{
    JFrame fr = new JFrame("Visual Tool -- Work Flow Editor");
         JPanel panel1 = new JPanel();
         JPanel panel2 = new JPanel();
         JButton sButton = new JButton("Source");
         JButton rButton = new JButton("Redirection");
         JButton dButton = new JButton("Destination");
         JButton connect = new JButton("Connect");
         BasicStroke stroke = new BasicStroke(2.0f);
         int flag = 1 ;
         Vector lines = new Vector();
         JButton sBut,rBut,dBut;
    int x1 = 0 ;
         int y1 = 0 ;
         int x2 = 0 ;
         int y2 = 0;
         int x3 = 0;
         int y3 = 0;
         int i=0;
         int j=0;
         int k=0;
         int l = 100;
    int b = 50;
    public void init(){
              /*********Frame ******************/
    fr.getContentPane().setLayout(new BorderLayout());
         fr.setSize(700,500);
              fr.getContentPane().add(panel1,BorderLayout.CENTER);
              fr.getContentPane().add(panel2,BorderLayout.SOUTH);
              fr.addWindowListener(this);
              /*****************PANEL 1*********************/
              panel1.setLayout(null);
    panel1.setBounds(new Rectangle(0,0,400,400));
              panel1.setBackground(new Color(105,105,205));
    /************************PANEL 2 *************/
              panel2.setLayout(new FlowLayout());
              panel2.setBackground(new Color(105,205,159));
              panel2.add(sButton);
              panel2.add(rButton);
              panel2.add(dButton);
              panel2.add(connect);
              connect.setToolTipText("Use this button after selecting From and To position to connect");
              /***************************LISTENER********************/
    sButton.addActionListener(this);
              rButton.addActionListener(this);
              dButton.addActionListener(this);
              connect.addActionListener(this);
              fr.setVisible(true);     
              fr.setResizable(false);
         } // init clse
    /************************** START METHOD **********************************************/
              public void start(){                                 
                   System.out.println("inside start");
                   paint(panel1.getGraphics());
    /*******************************APPLET METHODS **************************************************/
              public void stop(){}
              public void destroy(){}
    /******************************MOUSE MOTION LISTENERS METHOD*************************************/
              public void mouseMoved(MouseEvent e){System.out.println("moved");}
              public void mouseDragged(MouseEvent e){System.out.println("dragged");}
    /***************************************ACTION EVENT IMPLEMENTAION *******************************/
         public void actionPerformed(ActionEvent e){
              if (e.getSource().equals(sButton)){          
              sourceObject("Source Object");          
              else if (e.getSource().equals(rButton)){          
              redirectionObject("Redirection");
              i = i+1;
              else if (e.getSource().equals(dButton)){
              destinationObject("Destination");
                   j= j+1;
              else if (e.getSource().equals(connect)){
                   System.out.println("am inside connect");                
                   paint(panel1.getGraphics());               
    else if(e.getSource().equals(sBut)){
                   System.out.println("am s button");                
                   x1 = sBut.getX() + l;
                   y1 = sBut.getY() + (b/2);
              else if(e.getSource().equals(rBut)){
                   System.out.println("am r button");               
                   x2 = rBut.getX() ;
                   y2 = rBut.getY()+ b/2;
                   System.out.println("x2 : " + x2 + "y2 :" +y2 );
              else if(e.getSource().equals(dBut)){
                   System.out.println("am d button");                
                   x3 = dBut.getX();
    y3 = dBut.getY()+ b/2;
    } // action close
    /**********************Main **********************************/     
         public static void main(String args[]){
         JApplet at = new AppletTest2();
              at.init();
              at.start();
    /********************my methods starts here *******************/
         public void sourceObject(String name){     
    sBut = new JButton(name);
         panel1.add(sBut);
         sBut.setBounds(new Rectangle(20,208,l,b));     
         sBut.addActionListener(this);
    System.out.println("am inside the source object") ;
         public void redirectionObject(String name){     
         rBut = new JButton(name);
         panel1.add(rBut);
         rBut.setBounds(new Rectangle(290,208,l,b));     
    rBut.addActionListener(this);
    System.out.println("am inside the redirection :" + j) ;
    public void destinationObject(String name){     
         dBut = new JButton(name);
         panel1.add(dBut);     
    System.out.println("am inside the destination object") ;
    if (j == 0)
                   dBut.setBounds(new Rectangle(566,60,l,b));                    
                   System.out.println("am inside the destination:" + j) ;
                   } else if (j == 2)
                        dBut.setBounds(new Rectangle(566,208,l,b));     
                        System.out.println("am inside the destination :" + j) ;
                   } else if (j == 1)
    dBut.setBounds(new Rectangle(566,350,l,b));     
                        System.out.println("am inside the destination :" + j) ;
    dBut.addActionListener(this);
    /* public void connectObject(Object obj1,Object obj2){
    System.out.println("nothing");
    /************************************* PAINT **************************/
    public void paint(Graphics g){
         System.out.println("inside paint");
         Graphics2D g2 = (Graphics2D) g;
         g2.setStroke(stroke);
    if(flag == 1){
    System.out.println("inside flag");
    int np = lines.size();
                        System.out.println(np);
                             for (int I=0; I < np; I++) {                       
         Rectangle p = (Rectangle)lines.elementAt(I);
                             System.out.println("width" + p.width);
                             g2.setColor(Color.red);
                             g2.drawLine(p.x,p.y,p.width,p.height);
                             System.out.println(p.x +"" +""+ p.y + ""+ ""+ p.width+ "" + ""+ p.height);
    flag = -1;
    }else if(flag == -1){
         if(x1 != 0 && y1 != 0 && x2 != 0 && y2 != 0 ){
    // Graphics2D g2 = (Graphics2D) g;
         // g2.setStroke(stroke);
    g2.setColor(Color.red);
         g2.drawLine(x1,y1,x2,y2);
         lines.addElement(new Rectangle(x1,y1,x2,y2));     
         x1 = 0 ;y1 = 0 ;
         x2 = 0 ;y2 = 0 ;
    //     g2.drawLine(100,100,200,200);
    else if (x2 != 0 && y2 != 0 && x3 != 0 && y3 != 0 )
              // Graphics2D g2 = (Graphics2D) g;
                   // g2.setStroke(stroke);
              g2.setColor(Color.green);
                        g2.drawLine(x2,y2,x3,y3);
                        lines.addElement(new Rectangle(x2,y2,x3,y3));
                        x2 = 0; y2 = 0 ;
                        x3 = 0 ; y3 = 0 ;                    
    else if (x1 != 0 && y1 != 0 && x3 != 0 && y3 != 0)
                   //     Graphics2D g2 = (Graphics2D) g;
                   // g2.setStroke(stroke);
                   g2.setColor(Color.red);
                   g2.drawLine(x1,y1,x3,y3);
                        lines.addElement(new Rectangle(x1,y1,x3,y3));                              
                        x1 = 0; y1 = 0 ;
                        x3 = 0 ; y3 = 0 ;                    
    // repaint();
    /********************************WINDOW LISTENER IMPLEMENTATION *****************************/
    public void windowActivated(WindowEvent we) { 
              flag = 1;
              paint(panel1.getGraphics());
    System.out.println("windowActivated -- event 1");
         //start();               
         public void windowClosed(WindowEvent we) {
                                                                System.out.println("windowClosed -- 2");
         public void windowClosing(WindowEvent we){
                                                                System.out.println("windowClosing -- 3");
    public void windowDeactivated(WindowEvent we) {
                                                                     System.out.println("windowDeactivated -- 4");
    public void windowDeiconified(WindowEvent we) {
                                                                     flag = 1;
                                                                     System.out.println("windowDeiconified -- 5");          
                                                                     paint(panel1.getGraphics());           
    public void windowIconified(WindowEvent we) {           
                                                           System.out.println("windowIconified -- 6");
                                                           //paint(panel1.getGraphics());
    public void windowOpened(WindowEvent we) {             
                                                      //     flag = 1;
                                                      //     paint(panel1.getGraphics());
                                                           System.out.println("windowopened -- 7");     
    The problem am facing here is that when i minimize the frame and maximize , my old lines are getting disappared.
    For avoiding that i am storing the old coordinates and
    try to redraw , when maximize.
    but the lines are coming for flash of second and disappearing once again ?
    can any one help?
    thanks all

    Very interestingly the same code is repainting in
    Linux SUSE,jdk1.3.
    but not in WINNT , jdk 1.3
    Any reason ?
    Is the swing 100 % platform independenet ?????
    Does swing also uses native thread ???

  • Can any one share the Oracle Reports 6i Developer demo table scripts?

    Hi,
    I have to learn the Report 6i for my office project, I have installed the report 6i developer but I could not get the Demo CD, can any one share the Scripts for table (viz. Stock, stock_history , indcat ) creation and also the insert script for data population or provide the URLs where I can find the same.
    thanking you in advance.
    regards,
    Sham.

    Hi Denis,
    Thanks for the reply, I have the setup for forms and reports 6i, what i was looking is the script to create the tables used in the
    Oracle® Reports Developer
    Building Reports
    Release 6i
    January, 2000
    Part No. A73172-01
    the table names are stocks, indcat etc, generally these demo script come along with the demo CD provided by oracle as i don't have the CD i am looking for these table creation script. if you have these scripts kindly share the same with me.
    regards,
    Sham.

  • Can any one share with me any two critical issues in DP support project

    Hello friends,
    I am new  to DP support project in SCM5.0 version,can any one share with  me my queries
    1.what is my support rolles and responsiblities .in DP
    2.can any one share with me any two critical issues in DP and how can you resole it

    Hi Sivaram,
    1. As a DP functional consultant you need to resolve all the incidents raised in APO DP module( Forecasting, lifecycle planning, master data in APO DP, Planning books, macros , release to APO SNP or R/3 or other systems, CVC maintenance etc) which will also include BW part of  SCM -APO related to DP, like data extraction and back up into and from infocubes. You will also support all the interfaces realted to APO DP , for the APO related part of the interface.
    You need to reoslve these incidents in the time frames defined by SLAs for the support project.
    You will have to also carry out problem management of some of the critical incidents so that incidents do not re-occur.
    Further you will have to support Release  /Change managment support( if it is part of your contract of Support project).
    This willl involve testing changes in quality system, before these are moved to production system.
    2 I found 2 crtical issues in APO DP support as below:
    2.1  Sales history extraction  data interafces from BW system used to have problems : technical problems of interface / jobs in BW running late, functional problems: sales history extract in BW not correct because various reasons 
      This used to lead to delayed job runs in APO and finally delayed forecasting and ptehr DP processes .
    By proactive monitoring by BW team and taking appropriate actions for master data issues, this issue occurance frequency was reduced , but not completely eliminated.
    2.2 Another major issue was related to back up process of APO DP planning data into infocubes. Finally by splitting the jobs as per daily, weekly and monthly bakc up procedure , we were able to resolve the issue.
    I hope I have answered your queries.
    Pleasse check and confirm.
    Regards
    Datta

  • Can any one share Real-Time Senario of File to IDOC (CREAMAS) in XI?

    Can any one share Real-Time Senario of File to IDOC (CREAMAS) in XI and if possible please share some impartent Screen-Shoots?
    if u don't have CREAMAS senario please share Any of Masster data IDOC like MATMAS R DEBMAS.....
    Tks
    Durusoju.

    Now start with these link.....
    http://help.sap.com/saphelp_nw04/helpdata/en/80/8e3841e26cef23e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/developerareas/xi?rid=/webcontent/uuid/a680445e-0501-0010-1c94-a8c4a60619f8 [original link is broken]
    This might help you
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Further, this thread deals with everything that is needed for a starter on XI. Do check them out,
    JDBC Receiver: exact SQL statement
    /message/527697#527697 [original link is broken]
    And after you are done with the documentation probably you can go through this scenario,
    JDBC Receiver: exact SQL statement
    Also check the following threads which might help you a little more,
    Learning XI
    XI 3.0 Training
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/13926f23-0a01-0010-149c-c1170e7a25db
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    and once you are through ...follow the following links to weblogs which explain all the basic scenarios in XI
    Following are the links to weblogs which will help to develop the basic scenarios.
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces - Controlling access to Sensitive Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14 - The same filename from a sender to a receiver file adapter - SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine - Payload Based Message Search in XI30 using Trex Engine /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i - XI : Configuring CCMS Monitoring for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter - XI: HTML e-mails from the receiver mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated - XI : FAQ's Provided by SAP
    cheers
    Aveek

  • Can any one pls tell me the mandatory fields for BAPI_ACC_DOCUMENT_POST

    hi all ,
    Can any one pls tell me the mandatory fields for BAPI_ACC_DOCUMENT_POST
    what all data i need to give to post a document.
    Thanks and Regards
    JK

    Hi...
    part of my source code:
    ** Header Data " Sending comp code
    wa_documentheader-comp_code = 'XXXXX'.
    wa_documentheader-doc_date = '20060620'.
    wa_documentheader-pstng_date = '20060620'.
    wa_documentheader-doc_type = 'XX'.
    wa_documentheader-username = sy-uname.
    wa_documentheader-ref_doc_no = 'XXxxxxxx'.
    wa_documentheader-header_txt = 'Text Header.
    wa_documentheader-bus_act = 'XXXX'.
    *it_currencyamount
    wa_currencyamount-itemno_acc = '1'.
    wa_currencyamount-currency = 'COP'.
    wa_currencyamount-amt_doccur  = 1943.
    APPEND wa_currencyamount TO it_currencyamount.
    *it_accountpayable
    wa_accountpayable-itemno_acc = '1'.
    wa_accountpayable-gl_account = '1234567890'.
    wa_accountpayable-bus_area = 'DIV'.
    wa_accountpayable-item_text = 'Text 1 XXxxxxx '.
    wa_accountpayable-pmnt_block = ''.
    APPEND wa_accountpayable TO it_accountpayable.
    *it_accountgl
    wa_accountgl-itemno_acc = '2'.
    wa_accountgl-gl_account = '1234567890'.
    wa_accountgl-item_text = 'Text 2 XXxxxxx'.
    wa_accountgl-bus_area = 'DIV'.
    APPEND wa_accountgl TO it_accountgl.
    wa_currencyamount-itemno_acc = '2'.
    wa_currencyamount-currency = 'COP'.
    wa_currencyamount-amt_doccur  = ( 1943 ) * -1.
    APPEND wa_currencyamount TO it_currencyamount.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_CHECK'
      EXPORTING
        documentheader = wa_documentheader
      TABLES
        accountgl      = it_accountgl
        accountpayable = it_accountpayable
        currencyamount = it_currencyamount
        return         = it_return.
    clear it_return.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
          EXPORTING
            documentheader = wa_documentheader
          TABLES
            return         = it_return
            currencyamount = it_currencyamount "currencyamount
            accountpayable = it_accountpayable "accountpayable
            accountgl      = it_accountgl "accountgl
          EXCEPTIONS
            OTHERS         = 01.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

  • Can any one share NeoVI LabVIEW Example.vi

    Greetings!!!
    I am trying to interface Neo VI fire with LabVIEW, can any one share the example vi??
    ---------------- Be Good. Do Good. ---------------------

    Doesn't neoVI ship with some examples?
    If not, you should get in contact with Intrepid ICS and I'm sure they can provide some.
    I've used ValueCAN devices a bunch which use the same .dll.

  • Can any one pls tell me the procedure of crm datasourse data extraction r/3

    hi
    pls can any one pls tell me the procedure of crm datasourse data extraction from r/3
    regards
    subbu

    Subbu,
    First off please don't post the same question twice.  I have locked your other question due to it being a duplicate.
    Second off:  don't expect an answer to your question immediately.
    Third off:  You need to read the rules of engagement before posting any more questions here:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    Fourth:  You question is way too vague and honestly if you would have done a search or read some introductory material on CRM, you would have learnt that the CRM middleware handles the data transfer.
    Last:  I'm locking this thread because your question is way too vague, please take a look at the CRM wiki and help.sap.com and read all the associated documentation about CRM on those sites.
    CRM wiki
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/crm/home
    Then you can come back here if you have a detailed question after reading those materials.
    Take care,
    Stephen
    CRM Forum Moderator

  • I created an iMovie. When I try to export it crashes. Can any one walk me through the problem. In 3 hours, my mom's 80th b'day is taking place and this was one of the gifts.

    I created an iMovie. When I try to export it crashes. Can any one walk me through the problem. In 3 hours, my mom's 80th b'day is taking place and this was one of the gifts.

    All of the Spry files are missing and the basic_fs.css.  It's a long list.  If you use Chrome or Safari, you can view source (Safari) or Inspect Element (Chrome) and under Resources you will see the missing files highlighted. 

  • I am using Iphone 4S and did the ios upgrade to ios7. after this, wifi is not working. Can any one support what could be the issue.

    I am using Iphone 4S. two days before i upgraded to IOS 7 and after this wifi is not working. Any one can help. Mani

    Follow the steps in the article below:
    http://support.apple.com/kb/ts1559
    If after all steps the issue remains then book an appointment at an Apple Stor to have the iPhone evlauated and possibly replaced.

  • I am looking for an app to use on an i pad that would help my father who is a  sufferer of Motor Neurone Disease, can any one point me in the right direction?

    I was wondering if anyone out there has been using an i pad sucessfully with someone who is suffering from Motor Neurone Disease. I am trying to work out what is the best way to be able to communicate with my father as this disease progresses. Any thoughts would be fantasticly appreciated.

    Midnight Sun wrote:
    Hi, thanks for the suggestions.
    I tried the changes you suggest to my rc.conf, Windtalker. They were my original settings when I first installed Arch.
    Everything works as before, except my eth0 seems to have a different address, but I still can't resolve names.
    The thing is I could ping the DNS server and google before, and they responded, if I pinged their ip addresses. So I must be connecting to the internet, mustn't I?
    But I still can't ping www.google.com , just get unknown host. So i think it's got to be a DNS problem because its when I try to use names instead of ip's that I get trouble.
    Here is what I'm thinking(guessng), can anybody tell me if this is right:
    When I ping www.google.com, ping needs to resolve the name so it can send the pings.
    So ping asks Arch (the kernal or a network daemon) for help.
    Arch finds a Nameserver's ip in resolv.conf, and tries to resolve the name by sending a request to the Nameserver via the default gateway.
    The default gateway is linked to my router via eth0 in rc.conf
    So, Arch can use the router to get the ip address for the name from the server and give it to ping.
    And ping can ping it.
    But ping just waits a while and says: unknown host
    Any ideas?
    I looked in Arch Bugs and found this http://bugs.archlinux.org/task/12643
    could it be a problem with dhcpcd. It does seem to be running, but how can I find out more about what its up to.
    Cheers all.
    Please post the output of ifconfig.
    Do you have any other machine connected to the same router? If yes, do you use static or dynamic ip-adress there?

  • Issue with Workflow template versions? Can any one suggest what to do.

    Hello All.
    Actually in quality system there is a workflow instance in error. I identified the error and fixed the issue with a new development and transported to quality. Now when i restart the error instance in quality, its not picking the latest template with additional steps i developed, instead, it is catching the older version.
    For a fresh instance, my newer version of workflow is getting triggered, why not for error workflow.
    I used swu_obuf to synchronize the buffer but no use. What could be the resolution.
    Please suggest.
    Regards
    Prasad.

    Hi Prasad
    Running instances / Waiting / Or in error continue to run in the version in which they were started.
    That is why Version increments in QA / PRD when you move a change... so that any running, waiting, error instance can pick the same version of the workflow.
    It will not pickup your changed version. Logically it would be incorrect - start in Version A and end in Version B..... say start in version which "Auto Approves" a PO of value INR <=100 .... error .... restart in a changed version which now had auto approve limit of INR 1000. The PO will not be auto approved whereas the day it was started, the limit was only 100. So it makes sense to restart a workflow in the same version in which it was started. That is how the architecture has been designed.
    To conclude, if the steps which went in error because of the data from your previous step (which you have changed now) - see if you can change the container data and restart the WI from SWIA so that the work item starts with a new set of data. Else, discuss with business owners to cancel these workflows and restart new ones.
    regards,
    Modak

  • Every time I turn on my MacBook Pro (Early 2011), on I get this strange error, can any one identify what it is and how to fix it if something is wrong?

    I get this error nearly enough every time i turn on my MacBook Pro (Early 2011 Model), i says it needs to shut down because an error occured and when it comes back on i get this error below, which i copied and pasted.... Please can anyone help, as i dont understand what this means. thanks. (By the way, just so you know, i dropped my Macbook Pro a month ago).
    PROBLEM DETAILS AND SYSTEM CONFIGURATION
    Interval Since Last Panic Report:  9692 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    F2DDCBCE-BC08-4124-B575-95EB169DB82A
    Fri May 11 10:14:17 2012
    panic(cpu 4 caller 0xffffff80002c473a): Kernel trap at 0xffffff7f80b1634b, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000004300000007, CR3: 0x000000001e6f202b, CR4: 0x00000000000606e0
    RAX: 0x0000004300000006, RBX: 0x0000000000000002, RCX: 0xffffff7f80b19922, RDX: 0xffffff800b4f6d40
    RSP: 0xffffff808059b9a0, RBP: 0xffffff808059b9f0, RSI: 0x000000008020690c, RDI: 0xffffff800d184c08
    R8:  0x0000000000000000, R9:  0x00000000066fe1cb, R10: 0xfffffe80056beaf8, R11: 0x000000000004677a
    R12: 0x0000000000000000, R13: 0x0000000000000000, R14: 0xffffff800b318c30, R15: 0xffffff800af700a8
    RFL: 0x0000000000010282, RIP: 0xffffff7f80b1634b, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000004300000007, Error code: 0x0000000000000000, Faulting CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff808059b650 : 0xffffff8000220792
    0xffffff808059b6d0 : 0xffffff80002c473a
    0xffffff808059b880 : 0xffffff80002da0cd
    0xffffff808059b8a0 : 0xffffff7f80b1634b
    0xffffff808059b9f0 : 0xffffff7f80b199b1
    0xffffff808059ba30 : 0xffffff7f80b17a0e
    0xffffff808059ba70 : 0xffffff8000347137
    0xffffff808059bac0 : 0xffffff800039f33d
    0xffffff808059bb30 : 0xffffff80003a0b43
    0xffffff808059bcd0 : 0xffffff8000341dcc
    0xffffff808059bda0 : 0xffffff8000341f82
    0xffffff808059bdd0 : 0xffffff800056687f
    0xffffff808059be10 : 0xffffff8000566920
    0xffffff808059be40 : 0xffffff8000533d73
    0xffffff808059be70 : 0xffffff8000563a64
    0xffffff808059bf60 : 0xffffff80005ccfe8
    0xffffff808059bfb0 : 0xffffff80002da5e9
          Kernel Extensions in backtrace:
             com.logmein.hamachi(1.0)[4F10A12D-34FD-ACB0-81FB-036809497AFC]@0xffffff7f80b150 00->0xffffff7f80b1afff
    BSD process name corresponding to current thread: hamachid
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 52460783580
    last loaded kext at 48097380670: com.sophos.kext.sav    7.3.0 (addr 0xffffff7f808c5000, size 20480)
    loaded kexts:
    com.sophos.kext.sav    7.3.0
    com.logmein.hamachi    1.0
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.filesystems.ntfs    3.10.1
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleHDAHardwareConfigDriver    2.2.0f3
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleHDA    2.2.0f3
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.2.0f3
    com.apple.driver.AppleTyMCEDriver    1.0.2d2
    com.apple.driver.AppleIntelHD3000Graphics    7.1.8
    com.apple.driver.AGPM    100.12.42
    com.apple.kext.ATIFramebuffer    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.driver.AppleSMCPDRC    5.0.0d0
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d0
    com.apple.ATIRadeonX3000    7.1.8
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.driver.AppleLPC    1.5.8
    com.apple.driver.AppleBacklight    170.1.9
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.5f11
    com.apple.driver.AppleUSBTCKeyEventDriver    225.2
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.CoreStorageFsck    182.11.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.3
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    530.4.20
    com.apple.driver.AppleSDXC    1.2.0
    com.apple.iokit.AppleBCM5701Ethernet    3.1.2b2
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleUSBUHCI    4.4.5
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.8
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    193.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.driver.AppleIntelCPUPowerManagement    193.0.0
    com.apple.driver.DspFuncLib    2.2.0f3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOAudioFamily    1.8.6fc17
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.2.0f3
    com.apple.iokit.IOHDAFamily    2.2.0f3
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.IOPlatformPluginFamily    5.1.0d17
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.driver.AppleThunderboltEDMSink    1.1.8
    com.apple.driver.AppleThunderboltEDMSource    1.1.8
    com.apple.driver.AppleThunderboltDPOutAdapter    1.8.2
    com.apple.kext.ATI6000Controller    7.1.8
    com.apple.kext.ATISupport    7.1.8
    com.apple.driver.AppleIntelSNBGraphicsFB    7.1.8
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.2
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.4
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.5f11
    com.apple.iokit.IOBluetoothFamily    4.0.5f11
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.driver.CoreStorage    182.11.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.0
    com.apple.driver.AppleThunderboltNHI    1.5.5
    com.apple.iokit.IOThunderboltFamily    2.0.0
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.6
    com.apple.iokit.IOStorageFamily    1.7.1
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_third_party
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    Interval Since Last Panic Report:  9692 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    F2DDCBCE-BC08-4124-B575-95EB169DB82A
    Fri May 11 10:14:17 2012
    panic(cpu 4 caller 0xffffff80002c473a): Kernel trap at 0xffffff7f80b1634b, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000004300000007, CR3: 0x000000001e6f202b, CR4: 0x00000000000606e0
    RAX: 0x0000004300000006, RBX: 0x0000000000000002, RCX: 0xffffff7f80b19922, RDX: 0xffffff800b4f6d40
    RSP: 0xffffff808059b9a0, RBP: 0xffffff808059b9f0, RSI: 0x000000008020690c, RDI: 0xffffff800d184c08
    R8:  0x0000000000000000, R9:  0x00000000066fe1cb, R10: 0xfffffe80056beaf8, R11: 0x000000000004677a
    R12: 0x0000000000000000, R13: 0x0000000000000000, R14: 0xffffff800b318c30, R15: 0xffffff800af700a8
    RFL: 0x0000000000010282, RIP: 0xffffff7f80b1634b, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000004300000007, Error code: 0x0000000000000000, Faulting CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff808059b650 : 0xffffff8000220792
    0xffffff808059b6d0 : 0xffffff80002c473a
    0xffffff808059b880 : 0xffffff80002da0cd
    0xffffff808059b8a0 : 0xffffff7f80b1634b
    0xffffff808059b9f0 : 0xffffff7f80b199b1
    0xffffff808059ba30 : 0xffffff7f80b17a0e
    0xffffff808059ba70 : 0xffffff8000347137
    0xffffff808059bac0 : 0xffffff800039f33d
    0xffffff808059bb30 : 0xffffff80003a0b43
    0xffffff808059bcd0 : 0xffffff8000341dcc
    0xffffff808059bda0 : 0xffffff8000341f82
    0xffffff808059bdd0 : 0xffffff800056687f
    0xffffff808059be10 : 0xffffff8000566920
    0xffffff808059be40 : 0xffffff8000533d73
    0xffffff808059be70 : 0xffffff8000563a64
    0xffffff808059bf60 : 0xffffff80005ccfe8
    0xffffff808059bfb0 : 0xffffff80002da5e9
          Kernel Extensions in backtrace:
             com.logmein.hamachi(1.0)[4F10A12D-34FD-ACB0-81FB-036809497AFC]@0xffffff7f80b150 00->0xffffff7f80b1afff
    BSD process name corresponding to current thread: hamachid
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 52460783580
    last loaded kext at 48097380670: com.sophos.kext.sav    7.3.0 (addr 0xffffff7f808c5000, size 20480)
    loaded kexts:
    com.sophos.kext.sav    7.3.0
    com.logmein.hamachi    1.0
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.filesystems.ntfs    3.10.1
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleHDAHardwareConfigDriver    2.2.0f3
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleHDA    2.2.0f3
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.2.0f3
    com.apple.driver.AppleTyMCEDriver    1.0.2d2
    com.apple.driver.AppleIntelHD3000Graphics    7.1.8
    com.apple.driver.AGPM    100.12.42
    com.apple.kext.ATIFramebuffer    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.driver.AppleSMCPDRC    5.0.0d0
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d0
    com.apple.ATIRadeonX3000    7.1.8
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.driver.AppleLPC    1.5.8
    com.apple.driver.AppleBacklight    170.1.9
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.5f11
    com.apple.driver.AppleUSBTCKeyEventDriver    225.2
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.CoreStorageFsck    182.11.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.3
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    530.4.20
    com.apple.driver.AppleSDXC    1.2.0
    com.apple.iokit.AppleBCM5701Ethernet    3.1.2b2
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleUSBUHCI    4.4.5
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.8
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    193.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.driver.AppleIntelCPUPowerManagement    193.0.0
    com.apple.driver.DspFuncLib    2.2.0f3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOAudioFamily    1.8.6fc17
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.2.0f3
    com.apple.iokit.IOHDAFamily    2.2.0f3
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.IOPlatformPluginFamily    5.1.0d17
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.driver.AppleThunderboltEDMSink    1.1.8
    com.apple.driver.AppleThunderboltEDMSource    1.1.8
    com.apple.driver.AppleThunderboltDPOutAdapter    1.8.2
    com.apple.kext.ATI6000Controller    7.1.8
    com.apple.kext.ATISupport    7.1.8
    com.apple.driver.AppleIntelSNBGraphicsFB    7.1.8
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.2
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.4
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.5f11
    com.apple.iokit.IOBluetoothFamily    4.0.5f11
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.driver.CoreStorage    182.11.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.0
    com.apple.driver.AppleThunderboltNHI    1.5.5
    com.apple.iokit.IOThunderboltFamily    2.0.0
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.6
    com.apple.iokit.IOStorageFamily    1.7.1
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_third_party
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    You showed a kernel panic file from OS X, apprantly Log Me In is installed into OS X or running when you log in.
    You should be using the developers installer/unistaller to remove Log Me In from OS X.
    Somehow it's in OS X, I don't know, but it's there and you need to remove it. I'm not dealing with Windows, just OS X.
    Talk to Log Me In people and find out what is installed where so you can do a manual deletion out of OS X.
    If that doesn't work, you have to reboot holding the Shift key down manually search for any Log Me In or Himachi files on your computer, in your System/Library/Extensions folder too, use the free Easy Find.
    https://s3.amazonaws.com/DTWebsiteSupport/download/freeware/easyfind/4.9/EasyFin d.app.zip

  • I want to load movies in to my iPad through itune in my pc that runs window XP. First of all I am not able to add the movies to the itune ,leave aside sync to iPad .can some one suggest what is the simplest way to load movies in my iPad.

    I have plenty of DVD which I load in my laptop and watch the movies while travel, however I am not able to do that in my iPad .
    I would appreciate some one guide me the simplest way of loading the movies in to my iPad. I tried the conventional procedure of loading/copying in to itune then sync to the iPad to load all movies in it, but failed to do the first step( not able to load /copy in itune) leave aside the sync to iPad next.
    Do I need to sellout some 20 odd $ to buy a conversion software that would help?
    Is it that Apple trying to make money by not making this simplest of thing possible by the user.( ref. windows, every thing is possible with little IQ of the user).
    If it is so , I would stop many of my friends to restrain from buying a device like this by spending some 1000$   ,rather look at a good Droid that is catching up so well.

    If you are the only user on your computer you probably don't have multiple user accounts set up and can disregard that.  If you are using iTunes 11 go to View>Show Sidebar.  Now see if your iPad appears under Devices on the left side when you connect it.  If it does, click on the name of your iPad on the left side and your iTunes sync settings options will appear in folders with tabbed headings to the right.
    If it doesn't appear on the left side, follow the troubleshooting steps shown in this article: http://support.apple.com/kb/TS1538.

Maybe you are looking for

  • Change CRM UI logo

    Hi gurus, I am using CRM 2007. I put a custom logo on the User Interface changing the standard image on the MIME repository. Unfortunately the repository is cross client, so the new logo is displayed on the UI in every client. Is there a way to have

  • Trying to schedule report as pdf but it comes out as Crystal Report

    Hi, we have a problem in Crsytal Reports Server 2008 whereby a user in Infoview tries to schedule a report to the default enterprise location as a pdf. However when the schedule runs the report format is returns to the defaul Crystal Report format. T

  • PO price is not picking from Inforecord

    Hello All, When PO is created by one particular user the price is not picked from inforecord. Inforecord validity periods are active and this price is not of previous purchase order. The problem is only for this user. Can you please advice what needs

  • CR 8.5, Section Back Color question

    I want to change the Section Back Color of the detail if the following condition is true: {CIT_VH_NewUsed;1.Age} > 180 It tells me "A statement is expected here" in front of the statement. What am I missing here? Thanks Kelvin

  • Job available for SOA Architect in Irving, TX

    We are looking for someone who is an authority to do enterprise level integration of 200 + legacy applications with PeopleSoft financials using Oracle SOA suite. Following is the job description: The candidate must have experience thru all phases of