COOIS report pls help ASAP

HI...
I want to modify 'coois' report but i am not able to find the final output table in it.
Production Order number appears at output screen, i've to display SO NO and SO item which is there in Production order in the output list.
Pls Help ASAP...
Pts rewarded for more helpful ans for sure...
Best regards
Snehal

Hello.
Have a look into include LCOISOUTPUTF04, form pbo_0100, field symbol <table>. Insert a break-point in line 121:
<ls_detail_list>-list->set_initial_data(
Please, have in mind that this is a standard report before changing it.
Regards.
Valter Oliveira.

Similar Messages

  • My safari browser is not loading any thing after an update 5.1!! i had to create guest account to brows!! pls help ASAP!!

    my safari browser is not loading any thing after an update 5.1!! i had to create guest account to brows!! pls help ASAP!!

    my safari browser is not loading any thing after an update 5.1!! i had to create guest account to brows!! pls help ASAP!!

  • SQL query...pls help ASAP

    Actor (Aname: varchar(40), Ano: varchar(6)) Ano is pk
    Movie (Mname: varchar(40),mno: varchar(8)) Mno is pk
    PlayIn (Ano, Mno, Pay: Integer) Ano and Mno are fk referencing Acotr and Movie respectively.
    Actor(Aname, Ano)
    A Bingo, A1
    B Castro, A2
    C Katie, A3
    S Hommy, A4
    J Tammy, A5
    K loren, A6
    Movie(Mname, Mno)
    Gladiator, M1
    Cast, M2
    Dog, M3
    Jilters, M4
    PlayIn(Ano,Mno,Pay)
    A1 M1 800
    A1 M2 1500
    A2 M2 78
    A2 M3 1750
    A2 M4 2301
    A3 M2 904
    A3 M3 629
    A4 M2 565
    A4 M3 5695
    A4 M4 1255
    A5 M1 989
    A5 M4 238
    A6 M2 137
    A6 M3 236
    A6 M4 545
    QUESTION: write SQL query to find the names of actors who earned less than 'B Castro' in each movie that 'B Castro' played in.

    thanks so so much.....
    another question:
    for each movie, list the movie number, the average
    pay and the total number of actors in the movie.....Rather than just asking homework questions and expecting everyone else to do your work for you, why don't you at least have a go at it yourself and post the query that you've tried, then we'll tell you where you are going wrong. You won't learn anything if we just write it for you.
    Also, your use of "pls help ASAP" in the subject title is not polite.
    This forum is manned by volunteers who have their own jobs and offer their help free of charge.
    Everyone who posts an issue on here would love to have it answered as soon as possible, but nobody has the right to assume that their issue is any more important, urgent or requires a quicker answer than anybody elses.
    If you need urgent help then you should pay someone to do the work for you.

  • Reconfiguring JCo (Urgent Pls Help ASAP)

    Dear all,
    My back-end CRM system is getting migrated. So IP, username, password, client will get change.
    Now I have currently imported 8-10 RFC models from this existing CRM system. I have one JCo configured for the same.
    So if i change the existing JCo's settings (IP, username, password, Client etc) from Wed Dynpro Content Administrator for new system, then will those model work? Or I have to re-import the models again???
    Pls help me asap as I have to convey estimated system downtime to business.
    Thank you in advance.
    Regards,
    Amey

    So if i change the existing JCo's settings (IP, username, password, Client etc) from Wed Dynpro Content Administrator for new system, then will those model work? Or I have to re-import the models again???
    Yes. we can change JCo settings to point a different system
    if signature of RFC are same in both CRM instance, there is no need of re-import.
    Best Regards,
    nikhil

  • Pls Help asap

    Hi
    I have an assignment due today at midnight, I need some help please please....
    the assignment is about implementing a tow-dimensional sparsearrays using LinkedList
    here is what I've got so far and I am not even sure
    import java.*;
    public class SparseMatrix implements SparseMatrixInterface{
    //members
         private Object defaultValue = 0;
         private List[] rowHead = null;
         private List[] colHead = null;
         private List current = null;
         private List previous = null;
         private Object value = null;
    //constructor
         public SparseMatrix(int rIndex, int cIndex)
              if(rIndex <= 0) System.exit(rIndex);
              if(cIndex <= 0) System.exit(cIndex);
              rowHead = new List[rIndex];
              colHead = new List[cIndex];
    //SparseMatrixInterface
    //iterateRow(), iterateCol() should return another iterator
         @Override
         public Object defaultValue() {return defaultValue;}
         @Override
         public RowIterator iterateRow() {return null;}
         @Override
         public ColIterator iterateCol() {return null;}
         @Override
         public Object fetch(int row, int col) {
              do{
              if((row == current.row) && (col == current.col)) {return current.value;}
              current =  current.next;}
              while(row < current.row && col <  current.col && current.next != defaultValue);
              return defaultValue;}
         @Override
         public void store(int row, int col, Object value) {}
    //methods
         private void display(){int count = 0; List value; System.out.println();}
         private void addRow(int rIndex, Object value){}
         private void addColumn(int cIndex, Object value){}
         private int getRowCount(int cIndex){return List[rIndex].length;}
         private int getColumnCount(int cIndex){return List[cIndex].length;}
    //Colterator class
    //next() should return another iterator
         private class Colterator
              public boolean hasNext() {return current != null && current.next != null;}
              public ElementIterator next() {return null;}
    //RowIterator class
    //next() should return another iterator
         private class RowIterator
              public boolean hasNext() {return current != null && current.next != null;}
              public ElementIterator next() {return null;}
    //ElementIterator
    //iteratingRow() true if a call to next from ColIterator
    //iteratingCol()   true if a call to next from RowIterator
         private class ElementIterator implements MatrixInterface
             public boolean iteratingRow() {return true;}
             public boolean iteratingCol() {return true;}
             public int nonIteratingIndex() {
                  if (iteratingRow())return rIndex();
                  if (iteratingCol())return cIndex();
                   return 0;}
              public boolean hasNext() {
                   return current.getRow() != 0 && current.next.getRow() != 0
                        || current.getCol() != 0 && current.next.getCol() != 0;}
              public MatrixInterface next() {
                   if(hasNext() == true) previous = current; current = current.getNext();
                   return (MatrixInterface) current.value;}
    //MatrixInterface
             public int rIndex() {return current.getRow();}
             public int cIndex() {return current.getCol();}
             public Object value() {return null;}
    //nested class
         private class List{
              private List next = null;
              private int row = 0;
              private int col = 0;
              private Object value = null;
              public void setNext(List next)          {this.next = next;}
              public void setRow(int row)          {this.row = row;}
              public void setCol(int col)          {this.col = col;}
              public void setValue(Object value)  {this.value = value;}
              public List getNext()               {return next;}
              public int getRow()               {return row;}
              public int getCol()               {return col;}
              public Object getValue()          {return value;}
    }please fill in the missing parts
    I really appreciate it.
    you can email me at [email protected]

    Let me just post a couple of important parts of the [FAQ's|http://wikis.sun.com/display/SunForums/Forums.sun.com+FAQ] of Sun's forum:
    Be thorough and precise: Proofread your question before posting. Describe the steps that you have taken. The more effort you put into researching and describing your problem, the more likely you will get a sincere effort in return.
    Post a subject line that describes the problem: Experts in your subject may skim right past subject lines like "Urgent" and "Need help ASAP". Use keywords about the technologies instead.
    Post a problem, not an assignment: Break your assignment down into specific problems that you can ask for help with. Dorm hall lounges may be a better resource if you have a last minute, "urgent" demand for solutions to homework problems.

  • Stand alone oracle report - need help asap

    Hi,
    We are in ORACLE Apps 11i. We started using ORACLE BI Publisher to create templates for the Oracle Reports. How we are doing reports now is
    1) create data definition XML which has all the queries embedded.
    2) Create Data definition in XML Publisher Admin responsibility.
    3. Attach the Data definition XML to that.
    4. Create a concurrent program definition for the report with XML Type and run the report and save the data file with tags.
    5. Create the template ,rtf in Word and export data using ORACLE BI Publisher. 6. Create template definition in the XML Publisher Admin responsibility and attach this .rtf to that and run the report.
    Now I have a requirement stating that the REPORT SHOULD BE AN ORACLE STAND ALONE REPORT AND THE REPORT NEEDS TO BE RUN THROUGH CONCURRENT PROGRAM SCREEN. I am planning on doing the following steps.
    1. I have to create an .rdf using report builder.
    2. Create concurrent program executable and definition for the report.
    3. Create data definition in XML Publisher admin responsibility.
    4. Run the report in apps.
    5. Create the tempalte .rtf in word and export data with the XML Data file with tags,
    6. Run the report.
    Am I correct? Any help is appreciated asap.
    Thanks
    Akil

    You said,
    standalone report ?? is that mean without using bipublisher ??
    1st method.
    create concurrent program, output xml,
    create data template, create datadefintion , attach Datatemplate.
    run the cc pgm, get xml, design RTF , create template definition , attach RTF,
    run the cc pgm, you get the pdf output.
    2nd method.
    create rdf,
    create concurrent program, output xml,
    run the cc pgm, get xml, design RTF ,
    create datadefintion , create template definition , attach RTF,
    run the cc pgm, you get the pdf output.
    , both requires, cc pgm, rtf, data defintion , template definition.
    only differnece is , how do you get the data, i mean, xml...
    data template or RDF.

  • Reports- Pls help

    Dear Friends,
    My client wants standard report for the following areas in MM.we are working classic scenerio.SC in SRM and PR is generated while ordering the shopping cart. then in ECC PO to be created with reference to PR generated in background in SRM. then confirmation in ECC and finally Invoice in ECC.
    Overview of PO value per Requester
    Product Category ID
    Product
    Vendor
    Cost Center
    Chart of accounts
    G/L Account
    Company code
    Tracking Number
    Requester
    Transaction Type
    Calendar Day
    Approved Shopping Cart Value
    Purchase Order Value
    Cost Center Overview
    Cost Center
    Material group
    WBS Element
    Chart of accounts
    Requester
    G/L Account
    Company code
    Tracking Number
    Purchase Order Value - Quarter
    Shopping Cart Value - Quarter
    Purchase Order Value u2013 Current Month
    Invoice Value u2013 Current Month
    Invoice Value Previous Year
    Procurement Summary Report
    Purchase Order No.
    Supplier
    Company code
    Tracking Number
    Shopping Cart Quantity in Shopping Cart Unit
    Net Shopping Cart Value in Default Currency
    Order Quantity in Base Unit
    Net Order Value in Default Currency
    Confirmed Quantity in Base Unit
    Net Confirmed Value in Default Currency
    Invoiced Quantity in Base Unit
    Net Invoiced Value in Default Currency
    Workload per purchasing group
    ERP Purchasing Group
    SRM Purchasing Group
    Purchase Order No.
    Product
    Vendor
    Calendar Week
    SRM Purchasing Organization
    ERP Purchasing Organization
    Company code
    Tracking Number
    Processing Status
    Product Category ID
    Total Order Value
    No. of Purch. Orders
    No. of Order Items
    Delivery Delays
    Item No.in Order Doc
    Limit GUID
    Confirmation number
    Item No. Confirmatn
    Purchase Order No.
    Name of PO
    Invoice Number
    Item No. in Invoice
    Seq. No. Acct.Assign
    Calendar Day
    Company code
    Delayed Delivery
    Delivery Time (Purchase Order to Confirmation)
    Date of Confirmation
    Purchase Order Date
    Invoice Date
    Requested deliv.date
    Confirmation document Overview
    Confirmation number
    PO number
    Name
    Approval Status of Goods/Service Confirmation
    Processing Status Goods and Services Confirmation
    Product Category
    Product Category ID
    Company code
    Transfer Status Goods and Services Confirmation
    Calendar Day
    Number of Confirmed Items
    Confirmed Value
    Confirmed Quantity
    Open Item (Confirmations)
    Calendar Day
    Product
    Supplier
    Catalog
    Item No.in Order Doc
    G/L Account
    Company code
    Tracking Number
    Purchase Order Number
    Name
    Goods Recipient
    Open Order Value
    Open Delivery Value in %
    Open Order Quantity
    Excessive Invoices
    Purchase Order No.
    Name of PO
    Calendar Day
    Requester
    Vendor
    Item No.in Order Doc
    Invoice Number
    Company code
    Tracking Number
    Invoice value is too high
    Open Item (Invoices)
    Purchase Order No.
    Name of PO
    Calendar Day
    Product Description
    Product
    Vendor
    Material
    Company code
    Tracking Number
    Item No.in Order Doc
    Product Category ID
    Open Invoice Value
    Open Invoice Quantity
    Variance Invoice Value/Order Value
    Product
    Product Description
    Vendor
    Calendar Day
    Purchase order number
    Name of PO
    Company code
    Product Category ID
    Requester
    Order Quantity in Base Unit
    Net Order Value in Default Currency
    Expected Net Order Value in Defalt Currency
    Confirmed Quantity (BUoM) for Order Date
    Net Confirmed Value in Default Currency for Order Date
    Quantity Variance Confirmation
    Price Variance Confirmation
    Invoiced Quantity (BUoM) for Order Date
    Net Invoiced Value in Default Currency for Order Date
    Quantity Variance Invoice
    Price Variance Invoice
    Deadline monitoring u2013 Current values of required delivery date
    Requested Deliv.Date
    Purchase Order No.
    Name of PO
    Product Description
    Product
    Vendor
    Requester
    Purch. Organization
    Product Category
    Product Category ID
    Company code
    Tracking Number
    Perform to
    Performed from
    Open Order Value
    Open Delivery Value in %
    Net Order Value in Default Currency
    Expected Net Order Value in Defalt Currency
    Net Limit in Default Currency
    Net Confirmed Value in Default Currency for Order Date
    Net Invoiced Value in Default Currency for Order Date
    Purchase order status
    Processing Status of Purchase Order
    Purchase Order Number
    Transaction Description
    Calendar Day
    Category
    Product Description
    Company code
    Item No.in Order Doc
    Product Category
    Product Category ID
    Order Value
    Order Quantity
    Net Limit
    Unit Price
    Purchase Order per product/product category (UNSPSC)
    Product
    Processing Status of Purchase Order
    Company code
    Product Category ID
    Name
    Calendar Day
    Purchase Order No.
    Product ID
    Item No.in Order Doc
    Vendor
    Net Order Value in Order Currency
    Order Quantity in Base Unit
    Unit Price
    Net Limit
    Kindly help me in getting MM  ECC standard reports for the above funtionalities.
    Thanks in advance.
    Regards,
    William

    Hi William,
    You can all the reports only when SRM is integrated to BI,then only you can get,
    It is not possible to get all these reports in SRM (or) MM
    Regards
    G.Ganesh Kumar

  • Text Mode Report- Pls Help

    Dear Friends,
    I am using Developer Suit. I Want to develop reports in Text Mode. I don't want delimited text because it is not displaying header and all. I am developing reports in Character Mode template only. I want to send the output to Text file in Client Machine not on server.
    Please Help
    Thanks
    S. Anwar

    Dear,
    I am designing reports in Report Designer and i want to call the report from Form using report server but i want the output should go to text file in client machine.
    Sorry,I don't know how ur answer will be solution for this.
    Thanks
    S. Anwar

  • Session report pls help me

    hi, i hv create a excel report, in this report perhour how many user connect database
    i want a query , how can find out current user i hv run followin qurery
    select count(*) from v$session
    where username='PROD';
    it that correct query or not pls reply me

    It will give you the number of sessions connected as of now!!. If you want the history of connections in last one hour then you need to write your code to trap user connections

  • Add to Cart button has stopped working - pls help asap...

    Hi,
    My Add to Cart - {tag_buynow} - has stopped working sometime today and doesn't add to cart or take me there.
    I've tried it on all browsers and on different machines/mobile and it doesn't work (and tried changing it to {tag_addtocart} but makes no difference).
    Please tell me what's going on ASAP as this is a live site and my livelihood!!!
    http://tinyurl.com/k5d7po6
    Kind regards,
    Frank.

    Thanks Liam,
    Once again you are the only person on here who gives any kind of meaningful reply (although I don't understand it!!).
    Pls can you expand on what you wrote and suggest a solution (btw I chose Bc because I am not very experienced at webdev and know next to nothing about js).
    I received this message from the support ticket I submitted:
    "I have escalated this ticket to our Engineering team for a more detailed investigation.
    We will keep you informed on any new developments on this issue. In the meanwhile, please try adding {module_shoppingcartsummary} to the Shopping template/layout that should fix the problem."
    I have added {module_shoppingcartsummary} to the page content layout (and hidden it with js because I don't need it) and it seems to be working again.
    I really don't like the flakeyness of Bc - this issue might have lost new customers (or made existing ones think we are muppets).
    Kind regards,
    Frank.

  • MBP Retina constant crashing. See report, pls help?

    Hello.
    Upon installing Maverick on my machine, constant crashes are the norm. Curious is anyone has any insight from the attached report?
    Thanks in advance.
    System is pretty standard:
    Processor  2.7 GHz Intel Core i7
    Memory  16 GB 1600 MHz DDR3
    Graphics  NVIDIA GeForce GT 650M 1024 MB
    Software  OS X 10.9.2 (13C64)
    Panic (system crashes) log:
    Wed Jun 11 15:34:18 2014
    panic(cpu 0 caller 0xffffff80054dbe2e): Kernel trap at 0xffffff7f8648b7a5, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x00000001092a9000, CR3: 0x0000000007efb000, CR4: 0x00000000001606e0
    RAX: 0x0000005747f1156a, RBX: 0xffffff8033646080, RCX: 0x0000000000000000, RDX: 0x7fffffffffffffff
    RSP: 0xffffff81d8a838e0, RBP: 0xffffff81d8a83920, RSI: 0x0000000000000050, RDI: 0xffffff80336460d0
    R8:  0x0000000000000065, R9:  0x0000000000000000, R10: 0x0000000000080065, R11: 0x0000000000070000
    R12: 0xffff000027570000, R13: 0x000000000000000e, R14: 0x0000000080000000, R15: 0x000000000000000a
    RFL: 0x0000000000010286, RIP: 0xffffff7f8648b7a5, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000001092a9000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81c72ebc50 : 0xffffff8005422fa9
    0xffffff81c72ebcd0 : 0xffffff80054dbe2e
    0xffffff81c72ebea0 : 0xffffff80054f3326
    0xffffff81c72ebec0 : 0xffffff7f8648b7a5
    0xffffff81d8a83920 : 0xffffff7f8648902e
    0xffffff81d8a83980 : 0xffffff7f878533a5
    0xffffff81d8a839f0 : 0xffffff7f864900f2
    0xffffff81d8a83a70 : 0xffffff7f864931b9
    0xffffff81d8a83af0 : 0xffffff7f86492640
    0xffffff81d8a83b40 : 0xffffff7f86491ba5
    0xffffff81d8a83b80 : 0xffffff7f864907f6
    0xffffff81d8a83bc0 : 0xffffff7f86481676
    0xffffff81d8a83c10 : 0xffffff7f86476dae
    0xffffff81d8a83c60 : 0xffffff7f8647aab4
    0xffffff81d8a83cb0 : 0xffffff7f86479798
    0xffffff81d8a83e00 : 0xffffff7f8646bdd6
    0xffffff81d8a83e90 : 0xffffff7f8646a8ed
    0xffffff81d8a83ed0 : 0xffffff7f864eeb0d
    0xffffff81d8a83f00 : 0xffffff7f864ec84a
    0xffffff81d8a83f20 : 0xffffff800544a23a
    0xffffff81d8a83fb0 : 0xffffff80054d6ff7
          Kernel Extensions in backtrace:
             com.apple.iokit.IOHIDFamily(2.0)[5D59740C-447F-37DA-B881-6F470878CF56]@0xffffff 7f86466000->0xffffff7f864d7fff
                dependency: com.apple.driver.AppleFDEKeyStore(28.30)[2A8A5F6B-0A7C-33A0-8E5B-4C10F646EC4F]@ 0xffffff7f8645b000
             com.apple.iokit.IOUSBHIDDriver(660.4)[3838C4F6-C8E3-32A3-B42E-14CE8048A506]@0xf fffff7f864eb000->0xffffff7f864f3fff
                dependency: com.apple.iokit.IOHIDFamily(2.0.0)[5D59740C-447F-37DA-B881-6F470878CF56]@0xffff ff7f86466000
                dependency: com.apple.iokit.IOUSBFamily(675.4.0)[5C861553-BC5A-3979-A6B4-58C57879DD40]@0xff ffff7f863d7000
             com.spsys.driver.IOKitDriver(1.0.1)[00000000-0000-0000-0000-000000000000]@0xfff fff7f87852000->0xffffff7f87855fff
                dependency: com.apple.iokit.IOHIDFamily(2.0.0)[5D59740C-447F-37DA-B881-6F470878CF56]@0xffff ff7f86466000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13C64
    Kernel version:
    Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Kernel UUID: 9FEA8EDC-B629-3ED2-A1A3-6521A1885953
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro10,1 (Mac-C3EC7CD22292981F)
    System uptime in nanoseconds: 374869451140
    last loaded kext at 328439723646: com.apple.driver.AppleIntelMCEReporter          104 (addr 0xffffff7f87856000, size 49152)
    last unloaded kext at 304295139368: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f87856000, size 57344)
    loaded kexts:
    com.spsys.driver.IOKitDriver          1.0.1
    com.spsys.driver.NKEDriver          1
    com.apple.driver.AppleIntelMCEReporter          104
    com.apple.filesystems.smbfs          2.0.1
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.driver.ApplePlatformEnabler          2.0.9d1
    com.apple.driver.AGPM          100.14.15
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleIntelHD4000Graphics          8.2.4
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          8.2.4
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMuxControl          3.4.35
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleIntelFramebufferCapri          8.2.4
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleThunderboltIP          1.1.2
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleSDXC          1.5.2
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.driver.AppleUSBEHCI          660.4.0
    com.apple.driver.AppleUSBXHCI          670.4.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOAcceleratorFamily          98.14
    com.apple.nvidia.driver.NVDAGK100Hal          8.2.4
    com.apple.nvidia.driver.NVDAResman          8.2.4
    com.apple.driver.AppleGraphicsControl          3.4.35
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.iokit.IOAcceleratorFamily2          98.14
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.driver.AppleUSBMultitouch          240.9
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter          3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily          3.1.7
    com.apple.driver.AppleThunderboltPCIUpAdapter          1.4.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.4.5
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.driver.AppleThunderboltNHI          2.0.1
    com.apple.iokit.IOThunderboltFamily          3.2.7
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto          1.0

    What you should do next depends on the circumstances. For example:
    If you installed the keylogger yourself and then forgot about it, remove it according to the developer's instructions. If you want to keep it, check for an update or refer to the developer for support.
    If you're under 18 years old, and the keylogger was installed by a parent or guardian, talk it over within the family.
    If you're an adult, and the keylogger was installed on your personal computer without your permission, then the computer may be evidence of a crime or a civil wrong. Consider the legal implications before you do anything.
    If the computer was issued to you by a school or employer, then you should check with the IT staff that the keylogger is authorized. Don't use the machine for personal business. If the keylogger interferes with your work, the IT staff will have to solve the problem.
    In the event that the computer was tampered with by an unknown party, and you just want to clean it up, see below.
    The only way you can be sure that the computer is not compromised is to erase at least the startup volume and restore it to something like the status quo ante. The easiest approach is to recover the entire system from a backup that predates the attack. Obviously, that's only practical if you know when the attack took place, and it was recent, and you have such a backup. You will lose all changes to data, such as email, that were made after the time of the snapshot. Some of those changes can be restored from a later backup.
    If you don't know when the attack happened, or if it was too long ago for a complete rollback to be feasible, then you should erase and install OS X. If you don't already have at least two complete, independent backups of all data, then you must make them first. One backup is not enough to be safe.
    When you restart after the installation, you'll be prompted to go through the initial setup process for a new computer. That’s when you transfer the data from a backup in Setup Assistant.
    Select only users in the Setup Assistant dialog—not Applications, Other files and folders, or Computer & Network Settings. Don't transfer the Guest account, if it was enabled.
    Reinstall third-party software from original media or fresh downloads—not from a backup, which may be contaminated.
    Unless you were the target of an improbably sophisticated attack, this procedure will leave you with a clean system. If you have reason to think that you were the target of a sophisticated attack, then you need expert help.
    That being done, change all Internet passwords and check all financial accounts for unauthorized transactions. Do this  after the system has been secured, not before.

  • Simple report, pls help !

    Hi,
    I need a report which can display as a summary total instead of the detail line. Example my data ...
    NO ITEM AMOUNT QTY
    1 A 1000 10
    1 B 1000 5
    1 c 500 5
    2 B 500 8
    2 D 500 10
    3 F 200 10
    3 G 100 10
    So, I need the report to display me ...
    No. Amount
    1 2500
    2 1000
    3 300
    TOTAL 3800
    ==============
    null

    Hi,
    you can keep your original query intact i.e. the one which returns all the rows. I advise you to do this 'coz there will be less overhead on the database.
    Now,in your data model editor, just select NO from the existing group and drag it out to create a new group and put a summary column and set the reset group as the new group and use the sum function on amount column.
    Create another summary column outside both the groups and set the reset group as the report and use the sum function on amount column.
    Now when you are setting up your layout don't put the second group on the layout at all. This will be real quick and executed at client level.
    Reply if you have any further queries.
    Piyush.
    null

  • Just got a new iPhone 4s and i took pictures on the phone but as soon as i take them and turn my phone off the pictures appear blurred although on photo roll it shows hw they orginally looked, pls help asap my phone is literally 3days old

    just gt a new iphone 4s 3days ago and the camera seems to be giving me problems wen i take a picture the focus is blured although on the camera roll it is shown as clear .

    -> Transfer content from an iPhone, iPad, or iPod touch to a new device

  • SQL help ASAP plz!

    Hello! :)
    I'll try to describe my problem. So let's assume that I have a function that recursively calls itself. In this function first i do an executequery, and while i 'browse' through the resultset(for eg.: while (rs.next())), i make updates (updatequeries) on those records too. I wanted to make it faster, and i decided to do one connection (for eg.: conMain) and one statement (for eg.: stmtMain), and do all executequeries and executeupdates via this stmtMain. And it didn't work well. My code runs well only on the first row of the rs.next(), and call itself recursively, but only on the first row, in every while(rs.next()). And i think after finishing, and stepping back from recursion, it doesn't get the rs's next row (rs.next()). So I thought about maybe the updatequeries and executequeries doesn't fit next to each other or what!? So i made 2 public statments one is stmtMain and one is execStatement for example. And i used stmtMain for executeupdates, and execStatement for executequeries. And it still didn't work well! I tried out, that i get out recurcion(so only call the function once), and then on the first Resultset the while(rs.next()) stepped through ALL the rows properly. So as i saw the recursion somehow makes the resultset's next() value FALSE!? I haven't tried out yet, to make statements in every call of that recursive function, but i think it'd work. But i think that would slow down the whole source. I read somewhere that a statement can handle lots of resultsets and so, but in this case it seemed that if i call recursively that function, after stepping back, the while(rs.next()) gives false (or what!?), and not stepping to the next record, as it DOES if there's no recursion.
    Huh, i hope i've made myself clear, sorry for my english, and maybe i haven't read the documents well or so, but i'm a bit angry i spent my whole last night trying to fix this problem, and discover the problem.
    pls help asap :)
    thanks
    athalay

    well, I'll try to explain it a bit more. So I have records named 'catalog'. And this record type has fields: parentid (this points to another 'catalog' record) and catalogdesc (the description of the catalog). The catalogdesc contains the description PLUS before the description, a prefix. As you can see in books, prefix for example: 1.2.2.1 etc. So I want to modify the prefix (which is included in the 'catalogdesc' field) of the childs BASED on the parent's prefix. But in the beginning the parent's prefix is changed too! (example, because a catalog before itself has been deleted) So I have to modify all of it's children's prefix, and their childrens and theirs etc. You see now!? So this is why I do an executequery(which selects the parent's childs), I go into the while(rs.next()) loop, I do an executeupdate(to update the children's prefix based on their parent's), and then call this funtion on them, because they have childrens too!
    This is why I need recursion, I hope it's clearer now.
    So I still need help :/
    thanks
    athalay

  • Audio+Video Chat works but one small problem.Pls help.

    HI..
    as i had posted once before in a different query's thread, i have implemented audio and video chat using AVTRansmit2 and avreceive2.
    audio and video chat work well.By video chat i mean not only video but VIDEO+AUDIO as well.. just like usual yahoo video chat.
    But the problem is like this:-=
    I have given an option for user to switch from audio chat to video chat.
    now if a user first goes to audio chat and then switched to video chat,
    then the problem comes. When he's shifted to video chat i close down previous Audio chat by RTPManager.dispose() , i close the player and everything..
    and then i start Video transmit/receive "ALONG WITH" audio transmit/receive..
    No this time video starts but audio doesnt work ..
    it says"waiting for rtp data to arrive.... "
    The problem is that when this new stream of audio data comes, the receiver somehow thinks that its the same old stream since its from same transmitter IP.. and so it tries to UPDATE the previous stream.
    It means there is some problem with the close method or RTPManager.dispose() which should have disposed off all the stuff much before the new connection was made.
    PLS HELP ASAP>
    this is crunch time for my project.

    Hi anandreyvk . .
    well, i had tried doing removetargets and also, i had disposed RTPManager well. As it turns out the problem was not with any of it but it was the problem of me incorrectly passing RTPManager from AVReceive2 to AVTransmit2.
    Actually i am using just one RTPManager.. since i am receiving and transmitting on the same port.
    i've solved the problem but i am not sure if this is the right way .. what do you think ??
    is creating just one RTPManager {by that,i mean initializing it only once} a good idea ?? Since we are supposed to call both AVTransmit2 and AVReceive2 with the "LOCAL PORT" .. {which in itself is a matter of discussion though! } i and my project mate thought initializing RTPManager only once is a better option .
    Whats your take on all of this ?

Maybe you are looking for