Could you pls answer this

What all the thing should be used in order to improve the performance and what all the thing should be avoided ?
Explain abt control brk statement ?
Could you pls give me clear explanation for CHECK,EXIT,STOP ?
In real time, what is the steps which is used for transfer data - BDC
whether call transaction,session method pls explain it
And also explain about the include statement used in BDC
Could you pls answer this

Hi
All this AT NEW, AT FIRST, AT END OF and AT LAST are called control break statements of Internal tables and are used to calculate the TOTALS based on sertain key fields in that internal table
FIrst to use these statements the ITAB has to be sorted by the key fields on whcih you need the SUM of the fields.
Some time you will get * when moving data from this int table to other table using these commands
so you have to use
READ TABLE ITAB INDEX SY-TABIX in AT..ENDAT..if you are using other fields between them
DATA: sflight_tab TYPE SORTED TABLE OF sflight
                  WITH UNIQUE KEY carrid connid fldate,
      sflight_wa  LIKE LINE OF sflight_tab.
SELECT *
       FROM sflight
       INTO TABLE sflight_tab.
sort sflight by carrid connid.
LOOP AT sflight_tab INTO sflight_wa.
  AT NEW connid.
    WRITE: / sflight_wa-carrid,
             sflight_wa-connid.
    ULINE.
  ENDAT.
  WRITE: / sflight_wa-fldate,
           sflight_wa-seatsocc.
  AT END OF connid.
    SUM.
    ULINE.
    WRITE: / 'Sum',
              sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    SKIP.
  ENDAT.
  AT END OF carrid.
    SUM.
    ULINE.
    WRITE: / 'Carrier Sum',
              sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    NEW-PAGE.
  ENDAT.
  AT LAST.
    SUM.
    WRITE: / 'Overall Sum',
              sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
  ENDAT.
ENDLOOP.
BDC
BDC:
Batch Data Communication (BDC) is the process of transferring data from one SAP System to another SAP system or from a non-SAP system to SAP System.
Features :
BDC is an automatic procedure.
This method is used to transfer large amount of data that is available in electronic medium.
BDC can be used primarily when installing the SAP system and when transferring data from a legacy system (external system).
BDC uses normal transaction codes to transfer data.
Types of BDC :
CLASSICAL BATCH INPUT (Session Method)
CALL TRANSACTION
BATCH INPUT METHOD:
This method is also called as ‘CLASSICAL METHOD’.
Features:
Asynchronous processing.
Synchronous Processing in database update.
Transfer data for more than one transaction.
Batch input processing log will be generated.
During processing, no transaction is started until the previous transaction has been written to the database.
CALL TRANSACTION METHOD :
This is another method to transfer data from the legacy system.
Features:
Synchronous processing. The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.
Updating the database can be either synchronous or asynchronous. The program specifies the update type.
Transfer data for a single transaction.
Transfers data for a sequence of dialog screens.
No batch input processing log is generated.
Differences between Call Transaction and Sessions Method:
Session method.
1) synchronous processing.
2) can tranfer large amount of data.
3) processing is slower.
4) error log is created
5) data is not updated until session is processed.
6) generally used for back ground jobs.
7) at atime we can update to more than one screens.
Call transaction.
1) asynchronous processing
2) can transfer small amount of data
3) processing is faster.
4) errors need to be handled explicitly
5) data is updated automatically
6) for background n fore ground jobs.
7) at atime we can update to a single screen.
For BDC:
http://myweb.dal.ca/hchinni/sap/bdc_home.htm
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&
http://www.sap-img.com/abap/learning-bdc-programming.htm
http://www.sapdevelopment.co.uk/bdc/bdchome.htm
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
Check these link:
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
http://www.sap-img.com/abap/question-about-bdc-program.htm
http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/
http://www.planetsap.com/bdc_main_page.htm
call Transaction or session method ?
Regards
anji

Similar Messages

  • Could you please answer this questions ?

    could you please answer this questions ......
    2. What can you do with the DBMS_LOB package?
    A. Use the DBMS_LOB.WRITE procedure to write data to a BFILE.
    B. Use the DBMS_LOB.BFILENAME function to locate an external BFILE.
    C. Use the DBMS_LOB.FILEEXISTS function to find the location of a BFILE.
    D. Use the DBMS_LOB.FILECLOSE procedure to close the file being accessed.
    3. Which two statements about packages are true? (Choose two)
    A. Packages can be nested.
    B. You can pass parameters to packages.
    C. A package is loaded into memory each time it is invoked.
    D. The contents of packages can be shared by many applications.
    E. You can achieve information hiding by making package constructs private.
    4. Which three are true statements about dependent objects? (Choose three)
    A. Invalid objects cannot be described.
    B. An object with status of invalid cannot be a referenced object.
    C. The Oracle server automatically records dependencies among objects.
    D. All schema objects have a status that is recorded in the data dictionary.
    E. You can view whether an object is valid or invalid in the USER_STATUS data dictionary view.
    F. You can view whether an object is valid or invalid in the USER_OBJECTS data dictionary view.
    5. You need to create a stored procedure, which deletes rows from a table. The name of the table from which the rows are to be deleted is unknown until run time. Which method do you implement while creating such a procedure?
    A. Use SQL command delete in the procedure to delete the rows.
    B. Use DBMS_SQL packaged routines in the procedure to delete the rows.
    C. Use DBMS_DML packaged routines in the procedure to delete the rows.
    D. Use DBMSDELETE packaged routines in the procedure to delete the rows.
    E. You cannot have a delete statement without providing a table name before compile time.
    6. You need to drop a table from within a stored procedure. How do you implement this?
    A. You cannot drop a table from a stored procedure.
    B. Use the DROP command in the procedure to drop the table.
    C. Use the DBMS_DDL packaged routines in the procedure to drop the table.
    D. Use the DBMS_SQL packaged routines in the procedure to drop the table.
    E. Use the DBMS_DROP packaged routines in the procedure to drop the table.
    7. When using a packaged function in a query, what is true?
    A. The COMMIT and ROLLBACK commands are allowed in the packaged function.
    B. You cannot use packaged functions in a query statement.
    C. The packaged function cannot execute an INSERT, UPDATE, or DELETE statement against the table that is being queried.
    D. The packaged function can execute and INSERT, UPDATE, or DELETE statement against the table that is being queried if it is used in a subquery.
    E. The packaged function can execute an INSERT, UPDATEM or DELETE statement against the table that is being queried if the pragma RESTRICT REFERENCE is used.

    It should be good if you try yourself by training your brain to solve these questions and then share them with us to get more help or advice
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • Could you please answer this questions. experts

    what is the use of cell editor?
    what are the sequence of operations carried out when transpoting object?
    why we use navigational attributes ?please elaborate

    hi..
    navigational attrib:
    From a system performance point of view, you should model an object on a characteristic rather than on a navigation attribute. The reasons for this are as follows:
    ·        In the enhanced star schema of an InfoCube, navigation attributes lie one join further out than characteristics. This means that a query with a navigation attribute has to run an additional join (compared with a query with the same object as a characteristic) in order to arrive at the values. This is also true for ODS objects.
    ·        For the same reason, in some situations, restrictions for particular values in the navigation attribute (values that have been defined in the query) are not taken into account by the database optimizer when run schedules are created. This can result in inefficient run schedules, particularly if the restrictions are very selective. In most cases, you can solve this problem by indexing the navigation attribute in the corresponding master data tables (see below.)
    ·        If a navigation attribute is used in an aggregate, this aggregate has to be adjusted using a change run as soon as new values are loaded for the navigation attribute (when master data for the characteristic belonging to the navigation attribute is loaded.) This change run is usually one of the processes that are critical to the system performance of a production BW system. This is why, by avoiding using navigation attributes or not using navigation attributes in aggregates, you can improve the performance of this process. On the other hand, not using navigation attributes in aggregates can lead to poor query response times. The data modeler needs to find the right balance.
    BEx Cell Editor: In queries with two structures, you can now reference cells at the intersections of rows and columns.
    chk this link for transportation:
    http://help.sap.com/saphelp_nw04/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/content.htm
    hope it helps..
    all the best...

  • Could you please answer to this?

    [object array|http://i218.photobucket.com/albums/cc298/curseofgoldendragon/code-1.png] Could you please answer to this?

    Inserting text is better than linking to external images.
    Anyway, look up autoboxing.

  • Could you pls help on  use exits   before  saving  the contract .

    i want to check the limitatin  before  saving the contract  in sap banking.
    for  contract creation  tcode is  FN1V or FNV1.
    Could you pls tell me the   use exits  if knows  anybody
    advance thanks.

    Hi Diva,
    use this exit.
    EXIT_SAPLFVDA_002
    if this is not suitable for u r req then go to SMOD press f4 then click on Information systems give FVVD in package then press enter.there u will get no of enhancement. search for u r rlant.
    Thanks

  • Could you pls explain the "Get-Acl C:/Windows | fl" output?

    Could you pls explain the "Get-Acl C:/Windows | fl" output? There are some nos. what are those indicate?
    PS C:\> Get-Acl C:/Windows | fl
    Path : Microsoft.PowerShell.Core\FileSystem::C:\Windows
    Owner : NT SERVICE\TrustedInstaller
    Group : NT SERVICE\TrustedInstaller
    Access : CREATOR OWNER Allow 268435456
    NT AUTHORITY\SYSTEM Allow 268435456
    NT AUTHORITY\SYSTEM Allow Modify, Synchronize
    BUILTIN\Administrators Allow 268435456
    BUILTIN\Administrators Allow Modify, Synchronize
    BUILTIN\Users Allow -1610612736
    BUILTIN\Users Allow ReadAndExecute, Synchronize
    NT SERVICE\TrustedInstaller Allow 268435456
    NT SERVICE\TrustedInstaller Allow FullControl
    Audit :
    Sddl : O:S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464G:S-1-5-80-956008885-3418522649-1831038044-185
    3292631-2271478464D:PAI(A;OICIIO;GA;;;CO)(A;OICIIO;GA;;;SY)(A;;0x1301bf;;;SY)(A;OICIIO;GA;;;BA)(A;;0x1301bf;;;
    BA)(A;OICIIO;GXGR;;;BU)(A;;0x1200a9;;;BU)(A;CIIO;GA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271
    478464)(A;;FA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464)
    AliahMurfy

    Those numbers are
    generic access rights.
    The string representation of the access rights come from the FileSystemRights enumeration. Generic rights aren't included in that enumeration, so they show up as the numeric value. You can look up the generic mappings for lots of different objects on MSDN.
    The 3.0 beta of
    my access control module will translate generic access rights for lots of different objects, including files and folders. Here is a screenshot showing the generic rights being translated for a registry key (HKLM:\SOFTWARE) and a folder (C:\Windows):
    The helper function that does the translation is temporarily accessible in the beta version. It is called New-AdaptedAcl. You can play around with it to get a better idea of what's going on (but this command will be private before the final 3.0 version is
    released). Here's a screenshot of the helper function in action (the first command does no translation, it just gives a string representation of the numeric access mask; the second command does translation, but it doesn't merge similar ACEs with each other):

  • Settings in Jdeveloper - WebApplication. Mr. Frank Could u Pls check this

    Hi Mr. Frank,
    I m using Jdeveloper 9i version.
    I want to create a web application using Jdeveloper. is there any specified path is there to run suppose i want to run the project. ex: IDS home/J2ee/
    Something like that...
    Also another doubt. I hv already connected the db with server by configuring the tnsnames.ora file.. Is there any setting i will hv to do for Jdeveloper while i m creating the application.
    Here i m facing one error while i run ma application-----
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    javax.servlet.jsp.JspException: REP-51002: Bind to Reports Server reportserver failed
    int oracle.reports.jsp.ReportTag.doStartTag()
    void MyReport.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
    void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
    boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
    void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
    void com.evermind.util.ThreadPoolThread.run()
    In this application i used 1 Jsp page(Attached a report created through Report Builder). While run the application I am facing this error.
    Could you please clarify this...
    Thanks in advance
    Jithesh.

    You might check the Reports related forum like this thread REP-51002: Bind to Reports Server <servername> failed
    --olaf                                                                                                                                                                                                                                                                   

  • Can you pls correct this query :: ( In Oracle Core HRMS )

    Dear all,
    i have created query get result :: ( In Oracle Core HRMS )
    •     EE Number
    •     Forename
    •     Surname
    •     Dept
    •     Start Date
    •     Leave Date
    •     Date of Birth
    •     Address
    •     Salary (New & Existing Employee)
    •     Car Allowance
    •     Effective date (changes/updates)
    •     Creation Date/Update date
    •     Email address
    •     Gender
    •     Job Description
    •     Grade
    •     From and to date for parametres
    •     Last Modified Date
    SELECT
    papf.EMPLOYEE_NUMBER emp_no
    , papf.FIRST_NAME forname
    , papf.LAST_NAME surname
    , replace(replace(hou.attribute1,'10-',''), '14-', '') department
    , pps.date_start strt_date
    , pps.actual_termination_date leave_date
    , papf.DATE_OF_BIRTH dob
    , pdd.ADDRESS_LINE1||''||pdd.ADDRESS_LINE2||','||pdd.ADDRESS_LINE3 Address
    , ppp.proposed_salary_n salary
    , papf.EFFECTIVE_START_DATE estart_date
    , papf.EFFECTIVE_END_DATE eend_date
    , papf.CREATION_DATE crt_date
    , papf.EMAIL_ADDRESS mail_addrs
    , papf.SEX GENDER
    , pj.NAME Job_Des
    , substr(pg.name, 1, 1) GRADE
    , papf.LAST_UPDATE_DATE Last_Modified_Date
    FROM per_all_people_f papf
    , per_all_assignments_f paaf
    , per_addresses pdd
    , per_pay_proposals ppp
    , per_grades pg
    , pay_payrolls_f pp
    , per_jobs pj
    , per_periods_of_service pps
    , per_person_types ppt
    , per_person_type_usages_f pptu
    -- , pay_element_entries_f pee
    , hr_organization_units hou
    WHERE papf.person_id = paaf.person_id
    AND papf.person_id = pdd.person_id
    AND papf.person_id = pptu.person_id
    and papf.person_id = pps.person_id
    and pps.period_of_service_id = paaf.period_of_service_id
    AND ppp.assignment_id = paaf.assignment_id
    -- AND pee.assignment_id = paaf.assignment_id
    AND paaf.grade_id = pg.grade_id
    AND paaf.payroll_id = pp.payroll_id
    AND pptu.person_type_id = ppt.person_type_id
    AND paaf.organization_id = hou.organization_id
    AND pj.job_id = paaf.job_id
    AND ppp.pay_proposal_id = (SELECT MAX (pay_proposal_id)
    FROM per_pay_proposals
    WHERE assignment_id = paaf.assignment_id)
    AND pp.payroll_id = 224
    AND pdd.primary_flag = 'Y'
    AND pee.element_type_id = 221 for car allowance
    AND papf.employee_number <> 'NONE'
    AND ppt.user_person_type in ('Employee', 'Ex-employee' ,'Intern')
    AND ppt.system_person_type in ('EX_EMP', 'EMP')
    AND TRUNC(SYSDATE) between papf.effective_start_date and papf.effective_end_date
    AND TRUNC(SYSDATE) between paaf.effective_start_date and paaf.effective_end_date
    AND TRUNC(SYSDATE) between pptu.effective_start_date and pptu.effective_end_date ;
    can you pls correct this
    still i need to add Car Allowance and Bank details in above query pls tell me where i can get dept details in oracle core HR
    Thanks all
    Edited by: 981527 on Jan 30, 2013 3:41 AM
    Edited by: 981527 on Jan 31, 2013 1:22 AM
    Edited by: 981527 on Jan 31, 2013 1:30 AM
    Edited by: 981527 on Jan 31, 2013 9:03 PM
    Edited by: 981527 on Feb 1, 2013 4:50 AM

    I am taking a guess that 'Dept' is where the employee works, so that will be the column 'NAME' in the table HR_ALL_ORGANIZATION_UNITS; you will need to join with this table on the assignment's organization_id value
    Edited to add: Whilst you're testing this, you might want to consider removing the table PAY_ELEMENT_ENTRIES_F from the table list, otherwise you can look forward to potentially large cartesian product of returned rows!
    Clive
    Edited by: clive_t on 31-Jan-2013 09:59

  • HT201272 I tried to down load season 1 of swamp people and it is showing I purchased season 2 of swamp people could you please remove this off my account.

    I tried to down load season 1 of swamp people and it is showing I purchased season 2 of swamp people could you please remove this off my account.

    Sounds like some hardware issues, meaning you'll want to take or send the iPods in for service or repairs. You can choose to have Apple do an out of warranty exchange for the prices indicated in the link below or find another third party service perhaps even local to your area.
    http://www.apple.com/support/ipod/service/prices/
    B-rock

  • Could you please stop this abo?

    Could you please stop this abonnement? my email is: [email protected] and I´m from germany. So if you read this, please stop this abo! thank you very much.

    We can't do this via the forum. You need to contact Customer Support.
    https://www.acrobat.com/misc/en/contact-support.html

  • I want to learn SD , Could you pls send me the Reference Book names.

    Hi All,
    I want to learn SD , Could you pls send me the Reference Book names.
    and i heard about materials like Billing , Pricing , Shipping - Which material should i study first to understand baisc flow.
    Thanks in Advance.
    Regards,
    Nithi.

    Hi ,
    Instaed of a book i will refer you the help files of SAP .
    You can get there files at http://help.sap.com/
    An for SD the link is http://help.sap.com/saphelp_47x200/helpdata/en/92/df293581dc1f79e10000009b38f889/frameset.htm
    These files will help you a lot .
    even today also SD gurus take help from these files only.
    Regards

  • HT3775 hello mate,could you pls tell me how can i play a downloaded movie

    hello mate,could you pls tell me how can i play a downloaded movie

    Note, if the downloaded movie is from something illegal, we won't be able to tell you.
    If it is from something legal, what source is it?
    Do you have an Intel or a PowerPC Mac?

  • What  are the advantages over sql in pl/sql...can you please answer this?

    Hi,
    what are the main differences between sql and pl/sql...why v are using pl/sql rather then sql...can you please answer this question?

    SQL is used to access the database. PL/SQL is a programming language where SQL is seamlessly integrated. In order to access the database in PL/SQL, you have to use SQL.
    Think of it as two pieces of software, two "engines". If you want to interact with the database, then performance wise it's best to use only one engine (SQL only), instead of two (PL/SQL and SQL). If a PL/SQL program executes a SQL statement, it does a "context switch", i.e. saving its state in PL/SQL before giving control to the SQL engine and vice versa. This is quite fast, but do a lot of them and it is slow, so beware of programming SQL statements inside loops.
    Another way to put it: SQL is a fourth generation language (4GL) where you tell what you want, not how. The software, the optimizer, will decide for you how to process the statement. PL/SQL is a third generation language (3GL), or at least the PL-part is, where you describe how things should be processed. Leading to more code and more control. With every Oracle release, SQL becomes more powerful and the optimizer gets better, so using SQL is increasingly important.
    For complex processing, using PL/SQL is still necessary. But use it with care.
    Hope this helps.
    Regards,
    Rob.

  • Kernal Panic Could you guys read this error messages and explain to me pls?

    Interval Since Last Panic Report: -15 sec
    Panics Since Last Report: 1
    Anonymous UUID: C9D85673-BDE7-4851-9C75-89207D85BCF5
    Sun Oct 24 20:39:29 2010
    panic(cpu 2 caller 0x2a7c84): Double fault at 0x00257604, thread:0xdff7b7c, trapno:0x8, err:0x0,registers:
    CR0: 0x80010033, CR2: 0x5c7d7f88, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x71465000, EBX: 0x0000000e, ECX: 0x02f52ebc, EDX: 0x00000000
    ESP: 0x5c7d7f90, EBP: 0x5c7d80c8, ESI: 0x00000001, EDI: 0x5c7d81c0
    EFL: 0x00010206, EIP: 0x00257604
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x55095fb8 : 0x21b455 (0x5cf328 0x55095fec 0x2238b1 0x0)
    0x55096008 : 0x2a7c84 (0x591330 0x59142b 0x257604 0xdff7b7c)
    0x550960f8 : 0x29f8f2 (0x0 0xd089e04d 0x2b74c809 0xe8c1c889)
    0x5c7d80c8 : 0x2a880f (0x2f52ebc 0x71465000 0x0 0x1)
    0x5c7d81a8 : 0x29e9a8 (0x5c7d81c0 0x0 0x5c7d8b38 0x121b864)
    0x5c7d81b8 : 0x121b864 (0xe 0x9b30048 0x5c7d0010 0x4f0010)
    0x5c7d8b38 : 0x11fa14c (0x462be000 0xec26700 0x0 0x0)
    0x5c7d8b78 : 0x11fa4b8 (0x462be000 0xec26700 0x46 0x226d39)
    0x5c7d8bb8 : 0x156c6df (0x462be000 0x91c1980 0x4 0x0)
    0x5c7d8be8 : 0x4fbdbe (0x91c1980 0x0 0x1 0xf129600)
    0x5c7d8c08 : 0x4fbdd9 (0x91c1980 0x0 0x5c7d8c38 0x52acb5)
    0x5c7d8c28 : 0x156ca48 (0x91c1980 0xb0 0x1 0x5502d000)
    0x5c7d8c58 : 0x121092d (0x91c1980 0xec26900 0xb0 0xec73f00)
    0x5c7d8c98 : 0x11fb663 (0x462be000 0xeb35900 0x69732072 0x223d657a)
    0x5c7d8cd8 : 0x11fb9e0 (0x462be000 0x0 0x2f3c3e2f 0x74636964)
    0x5c7d8d38 : 0x11fbe44 (0x462be000 0x0 0x0 0x0)
    0x5c7d8d78 : 0x11fa0ec (0x462be000 0x0 0x0 0x0)
    0x5c7d8db8 : 0x11fa4b8 (0x462be000 0xeb35a00 0x3c3e2f22 0x3e79656b)
    0x5c7d8df8 : 0x156c6df (0x462be000 0xf11ac40 0x4 0x0)
    0x5c7d8e28 : 0x4fbdbe (0xf11ac40 0x0 0x1 0xf120600)
    0x5c7d8e48 : 0x4fbdd9 (0xf11ac40 0x0 0x65746e69 0x3e726567)
    0x5c7d8e68 : 0x156ca48 (0xf11ac40 0x52444920 0x223d4645 0x22373535)
    0x5c7d8e98 : 0x121092d (0xf11ac40 0x66666666 0x63666666 0x36343830)
    0x5c7d8ed8 : 0x11fb663 (0x462be000 0xec6f000 0x693c3e79 0x6765746e)
    0x5c7d8f18 : 0x11fb9e0 (0x462be000 0x0 0x692f3c31 0x6765746e)
    0x5c7d8f78 : 0x11fbe44 (0x462be000 0x0 0x0 0x0)
    0x5c7d8fb8 : 0x11fa0ec (0x462be000 0x0 0x0 0x0)
    0x5c7d8ff8 : 0x11fa4b8 (0x462be000 0xebdc700 0x52444920 0x223d4645)
    0x5c7d9038 : 0x156c6df (0x462be000 0xf12b740 0x4 0x0)
    0x5c7d9068 : 0x4fbdbe (0xf12b740 0x0 0x1 0xee2c200)
    0x5c7d9088 : 0x4fbdd9 (0xf12b740 0x0 0x79656b3c 0x2f3c373e)
    0x5c7d90a8 : 0x156ca48 (0xf12b740 0x303e2234 0x37303478 0x35353535)
    Backtrace continues...
    Kernel Extensions in backtrace (with dependencies):
    com.apple.iokit.IOSurface(74.0)@0x1568000->0x1572fff
    com.apple.driver.AppleIntelHDGraphics(6.1.8)@0x11f8000->0x12a4fff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x926000
    dependency: com.apple.iokit.IONDRVSupport(2.1)@0x959000
    dependency: com.apple.iokit.IOGraphicsFamily(2.1)@0x937000
    BSD process name corresponding to current thread: WebKitPluginHost
    Mac OS version:
    10F569
    Kernel version:
    Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    System model name: MacBookPro6,1 (Mac-F22589C8)
    System uptime in nanoseconds: 5913215493818
    unloaded kexts:
    com.apple.driver.AppleFileSystemDriver 2.0 (addr 0xffd000, size 0x12288) - last unloaded 91404022801
    loaded kexts:
    com.apple.driver.AppleHWSensor 1.9.3d0 - last loaded 25880438044
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AGPM 100.12.12
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleHDA 1.8.7f1
    com.apple.driver.AppleMikeyDriver 1.8.7f1
    com.apple.driver.AudioAUUC 1.4
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2b1
    com.apple.driver.AppleLPC 1.4.12
    com.apple.GeForce 6.1.8
    com.apple.driver.AppleGraphicsControl 2.8.63
    com.apple.driver.AppleIntelHDGraphics 6.1.8
    com.apple.driver.AppleIntelHDGraphicsFB 6.1.8
    com.apple.driver.AppleUSBTCButtons 1.8.1b1
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.driver.AppleIRController 303.8
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.iokit.AppleBCM5701Ethernet 2.3.8b2
    com.apple.driver.AirPortBrcm43224 425.16.2
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.0.2
    com.apple.driver.AppleUSBUHCI 4.0.2
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.10.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.10.0
    com.apple.driver.DspFuncLib 1.8.7f1
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.7f1
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.driver.AppleHDAController 1.8.7f1
    com.apple.iokit.IOHDAFamily 1.8.7f1
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2b1
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.1.8
    com.apple.NVDAResman 6.1.8
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.7f1
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.7f1
    com.apple.iokit.IOBluetoothFamily 2.3.7f1
    com.apple.driver.AppleUSBMultitouch 205.32
    com.apple.iokit.IOUSBHIDDriver 4.0.2
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.4
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 311.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IOUSBFamily 4.0.2
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,1, BootROM MBP61.0057.B0A, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.57f17
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.16.1)
    Bluetooth: Version 2.3.7f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 465.76 GB
    Serial ATA Device: HL-DT-ST DVDRW GS23N
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    I sent my macbook to the apple store because of the Kernal panic and got it back yesterday
    and today I had kernal panic TWICE again.
    Please, I would like to know what is wrong with my macbook
    Could you guys tell me what is wrong?
    Thanks

    JihyunYun93 wrote:
    Interval Since Last Panic Report: -15 sec
    Panics Since Last Report: 1
    ... Could you guys tell me what is wrong?
    I am no expert, but I did not see anything that I recognize as "the problem." In cases like this, diagnosing kernel panics is a step-by-step process. Start by disconnecting all peripherals and restart the Mac to see if the problem goes away. If the problem remains, continue with the next suggestion and repeat until you find the problem. Then you will know what to fix.
    Start here for help resolving your kernel panic: http://www.thexlab.com/faqs/kernelpanics.html
    Another KP help site: http://www.index-site.com/kernelpanic.html
    Apple's 10.6 help article: http://docs.info.apple.com/article.html?path=Mac/10.6/en/8965.html
    Apple's KP knowledge base article: http://support.apple.com/kb/HT1392
    In-depth KP info: http://developer.apple.com/mac/library/technotes/tn2002/tn2063.html
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.4); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.4)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod touch 4.1

  • HT1414 Hello, I tried to to update my ipone 3s but it says it can not be activated. could you pls help

    I tried to upgrade my iphone 3s ios from 4 to 6 so that i can download some things on it. through the process it tells me that my iphone could not be activated. now I have no service or phone could u pls help?

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>About=>Carrier?
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743

Maybe you are looking for