Your help really needed...Report for LSO

Hi All,
The customer need a report which shows the last even date of each course types. Does anyone know how to do it? (Except generate Course Dates report and then sort it.) Really urgent!!!
Thanks!
Vivian

Hi Vivian,
BI has more standard reports than R/3. However looking at your requirements, I dont think any of the standard BI report will help your clients. You have to create a custom ABAP report or a new Bex Report.
See this link for available BI queries.
http://help.sap.com/saphelp_nw70/helpdata/en/8a/4bbf3d0133bf14e10000000a114084/frameset.htm
Sanghamitra

Similar Messages

  • Will you replace the add-on "CaptureFox". I really need it for my work. Thanks

    Will you replace the add-on "CaptureFox".
    I really need it for my work.
    Thanks

    If it is on silent mode, then it will still vibrate when it rings.  Ring the phone.
    Other than this, what on earth do you expect anyone here to do really!!!

  • New to Programming, need your help with writing code for java in Xcode.

    Hey everyone! Sorry if I sound like a total idiot here with a bunch of developers but I could really use your help. I am in college and having a bit of problems with my intro to programming class. The class is entirely Java based and so, after having to use dos windows on my grandpas crappy laptop I found out about xcode. I downloaded and installed it but I am having problems seeing where exactly it is that I am to write my code for a normal java application. Any help would be greatly appreciated! I wrote it on the bottom of a bunch of code that looked strange to me. For relatively simple java programs I chose the java application template. Is there something here that I missed?

    The Java Application project template looks like it sets up an application and some kind of starting UI using Swing/AWT. I didn't look at it too indepth, but if you are in an introductory course this might be more than you need to complete your assignments. There doesn't seem to be blank Java template, so I don't know what you should use. Perhaps just a blank project you add your .java files to.
    To answer where to write code, you would write it in your .java files under the /src folder. Execution begins in
    public static void main(String args[]) {}
    in YourAppName.java, then creates an object based on your application class, and runs the code from there to display the UI.

  • Really urgent: help in making report for status of vendor payement

    Hi,
    I am making a report in which i have to display the status of vendor whether it is paid or not?
    Till now i am able to have knowledge that when we do MIGO there are the Financial Documents form there i get the account no.. whichit is stored in the BKPF table. From there we have the account no... and after that there are 4 tables into which i have to look after the tables i.e. BSAS,BSIK,BSIS, n BSAK.
    Plzz tell me how should i make a report as the Acount no.. have to move among these tables to get the status of it pament.
    plzz provide me some guidelines for making a report for it as help will be deifnately rewarded.
    Edited by: abaper2008 on May 21, 2008 6:52 AM

    Hi,
    Hi,
    I making a report in which i have to display the vendor payment is done or not?
    Curently i am using the 4 tables of Financial :-
    BSAK,BSIS,BSIK AND BSAS which gives the status of vendor whether it is paid or not . 1 thing i observed that data compared wit htew MKPF table among these tables(BSAS,BSIK N BSAK) is not coming right as i am taking common field XBLNR among them all .
    One more thing i observed that BLART is getting changed in each table.
    for instance,
    if the BLART is WE for material document and i am taking XBLNR filed from this table MKPF and den looking XBLNR in BKPF where the entry consist of BLART - RE n WE and finally when i look up in the BSAK table the field consist of RE .
    How can i see that it is being paid or not the BLART is keep on changing.
    Plzz proivde me guidelines as how to rectify the problem?
    Edited by: abaper2008 on May 21, 2008 9:03 AM

  • Help really needed in rotating a bufferedImage

    Its so silly, but i've been trying to get this for more than a week now and i cant get it to work.
    I have a gravity simulator and i want to rotate an image of a small ship. Just to mention it.. i have one thread that does the physics. I want to do two things: move and rotate (i always get the move method working, but not the rotate one)
    I have a class Nave (ship in spanish) and Graficador (the jpanel that paints everything). I want to say that ive tried really ALOT of things (yes, ive read google, the forums... i just like to ask for help when i really need it).
    So: here's what i've tried:
    -Ive tried to have a general affineTransform in Nave, then, when i call for example rotate, i just modify the AffineTransform and then use it to paint in the Jpanel. Something like this:
    In Nave
    public void rotarDer(){
            this.at.rotate(Math.PI/2,this.info.getPosX()+5,this.info.getPosY()+5);
        }And in the Jpanel:
    if(this.nave.at!=null){
                g2.drawImage(this.nave.imagen,this.nave.at,null);
            }Ive also tried to use drawRenderedImage with the AffineTransform, but the result are the same: the coordinate system changes (i think because of the AffineTransform) so the gravity takes the ship to the right instead of making it fall down. Ive tried to "store" the affineTransform before any change, and then reapply it after drawing the image, but doesnt seem to work either.
    Also, with this approach, ive tried to create a "buffer" in Nave, then paint the image in the buffer with the affineTransform, and finally paint this buffer in the jpanel, but it gets messed up anyway.
    Ive tried many approaches, but i think i will just mention this one, and see if with your help i get this one to work... i just need to make the coordinates "right" after drawing the image in the jpanel so the gravity works well...

    It wasn't clear how you were trying to use AffineTransform other than rotation in a
    gravitational field. To avoid altering the coordinate system orientation try making a
    transform for each rendering of an image by moving the image to the location where you
    want to show it and then rotatng the image about the specific point in/on the image that
    will give the desired final location/orientation. This sounds vague because there are
    multiple ways to see/do this. Here's an example of one way:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class RotationExample extends JPanel {
        BufferedImage image;
        Point[] points;
        RotationExample() {
            makeImage();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
            if(points == null) initPoints();
            markPointGrid(g2);
            // Center image over points[0] and rotate 45 degrees.
            int cx = image.getWidth()/2;
            int cy = image.getHeight()/2;
            double theta = Math.PI/4;
            double x = points[0].x - cx;
            double y = points[0].y - cy;
            AffineTransform at = AffineTransform.getTranslateInstance(x, y);
            at.rotate(theta, cx, cy);
            g2.drawRenderedImage(image, at);
            // Center image over points[1] and rotate 135 degrees.
            x = points[1].x - cx;
            y = points[1].y - cy;
            theta = Math.PI*3/4;
            at.setToTranslation(x, y);
            at.rotate(theta, cx, cy);
            g2.drawRenderedImage(image, at);
            // Move tail over points[2] and rotate 180 degrees.
            x = points[2].x;
            y = points[2].y - cy;
            theta = Math.PI;
            at.setToTranslation(x, y);
            at.rotate(theta, 0, cy);
            g2.drawRenderedImage(image, at);
            // Mark points.
            g2.setPaint(Color.cyan);
            for(int j = 0; j < points.length; j++)
                g2.fillOval(points[j].x-2, points[j].y-2, 4, 4);
        private void markPointGrid(Graphics2D g2) {
            int w = getWidth(), h = getHeight();
            g2.setPaint(new Color(220, 230, 240));
            for(int j = 0; j < points.length; j++) {
                g2.drawLine(points[j].x, 0, points[j].x, h);
                g2.drawLine(0, points[j].y, w, points[j].y);
        private void makeImage() {
            int w = 75, h = 45, type = BufferedImage.TYPE_INT_RGB;
            image = new BufferedImage(w, h, type);
            Graphics2D g2 = image.createGraphics();
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setStroke(new BasicStroke(4f));
            g2.setBackground(getBackground());
            g2.clearRect(0,0,w,h);
            g2.setPaint(Color.red);
            g2.drawLine(w, h/2, w-30, 0);
            g2.drawLine(w, h/2, w-30, h);
            g2.setPaint(Color.blue);
            g2.drawLine(0, h/2, w, h/2);
            g2.dispose();
        private void initPoints() {
            int w = getWidth();
            int h = getHeight();
            points = new Point[3];
            for(int j = 0; j < points.length; j++) {
                points[j] = new Point((j+1)*w/4, (j+1)*h/4);
        public static void main(String[] args) {
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new RotationExample());
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }

  • Restrictions Really needs improvement for Business use

    Hi
    We have written an app and are replacing our industry standard barcode scanning devices with over 100 iPod Touches worldwide using a third party barcode sled accessory. This is much cheaper (Around $800 vs $1500) and offers a much richer and less confusing user interface to the end-user. However our end-users are often low paid seasonal workers employed by our clients, so when it comes to the restriction settings in iOS we try to lock the devices down as much as possible.
    I think more and more people are treating the iPod/iPhone/iPad in commerical environments and so the ability to secure and maintain these devices really needs to be improved. Our situation aside you can use your iPhone as a point of sale with a credit card swipe, if you have a retail chain with several of these devices for use by employees you don't want them to be messing around on them or making choices that you don't want them to purposfully or accidently.
    For instance:
    iOS6 upgrade seems to download automatically and prompt the user if they want to install. There is no way to turn updates off, and not even a password is required to do it. In my scenario if someone gets the upgrade push and then clicks ok they then can't work for 30 minutes, not good if there is a long line of people waiting to be served.
    WiFi/VPN connections can be changed
    Passcode lock can be turned on/off/changed
    Date/Time / Keyboard / International / Accessibility settings can all be played with
    Weather app always available
    Stocks app always available
    Maps can be used (location can be disabled at least!)
    etc..
    If I (as a developer) tell our deployment manager to tell our client's manager to tell their scanning manager to tell their temporary workers to not mess around with things like the above....someones not going to listen, and our IT department is just going to have to check each device and clean up.
    I know that apple's portable devices are aimed more at consumers, but I personlly think it's about time that we have some more attention to more business scenarios.
    I don't want to come accross negative so i'll finish by saying that a lot of the restrictions in place are very useful. Being able to disable the store, iTunes and safari are very big wins, without those we wouldn't have switched to iOS devices.
    Anyone else have a similar need for more administrative ability?
    Thanks for reading.

    One of these might be good for a POS (assuming you need touch screen), but those are terrible for graphic artists to use.  All-in-ones are to be put bluntly, over-priced pieces of junk with crappy power supplies and worthless integrated video cards.  They will run too hot most likely and need maintenance more often than larger well-ventilated desktop towers.  Your graphic artists staff will hate the small low resolution monitors as well as the lack of decent GPU acceleration.  The only good thing about them is the small form factor,  a sacrifice well worth looking past IMHO.
    Graphic artists should be using high-end monitors, IPS panels for accurate colors and high resolution displays of 2560x1600 pixels.  I strongly recommend looking at Dell's Ultra Sharp models (particularly the 30").  If you end up getting three Dell Ultra Sharps then you might as well get the whole system from them as well and develop some sort of professional relationship and support system like most businesses. 
     *The monitor should be the most expensive component by far and it is the most important for work productivity, do not skimp out here, you run a graphic design firm after all!
    Look for reasonably priced desktops with 4-8GB RAM, Intel or AMD quad core processors.  Stay away from discrete graphics, Photoshop uses GPU acceleration found on higher end video cards and it is useful.  Larger hard drives perform better than smaller ones because of areal density, so buy larger hard drives than needed (1-2TB drives with 500GB or larger platters) and run them in RAID1 for redundancy, because I doubt you have a storage area network.

  • Do I really need Bonjour for Win7?

    My sister tried to install Bonjour on a Dell running Windows 7. She wanted to print to a shared printer hooked up to an iMac G5 running 10.5.8. She couldn't get Bonjour to do anything. I used Windows 7 own printer installation and it worked just fine. My question is for future reference, do I really need Bonjour with Windows 7? So I can pass this on to other who have similar set ups.

    No, you don't appear to need LiveWare on your phone for LiveView to function.
    As far as I'm aware, the only purpose LiveWare seems to serve is just enabling you to search for and manage plugins (which you can do yourself via the Android Market).
    Some users have even suggested that they have had better stability after removing it.

  • Ambient and AC Noise removal, Please, your help is need it!

    I need help removing ambient, AC and refrigerator noise of clips in a movie which was accepted for a film festival! This movie was shot by more than one company and they never paid attention to the audio... is this possible? Can I get help doing this, is Soundtrack Pro the best software to get this done or is there any other programs that can do this better? I would like the fastest and best way to correct this, I only have very few days to turn this in.
    This is very important, as we got accepted for a festival, the test screening was great, but the only negative feedback was the audio noise in some of the clips.
    Thank you for your help.

    STP has very good tools for reducing noise.
    Transfer your FCP project to STP. This should give you a Multitrack Project. Now, you'll have to open each noisy file in an Audiofile Project, apply the NR tools, save the file and get back to the Multitrack. If there's AC hum, you can remove it with the analysis tools in the Audiofile Project (check out for Power Line Hum). If there's ambient noise and hiss, you can remove that by selecting a part of the audio where there's only noise, go to Process>Set noise print, select all the audio file and go again to Process>Reduce noise...

  • Need report for these fields

    HI,
    need to write a report for these fields.
    PO number (EKPO_EBELN), Article number (EKPO_MATNR), Vendor part number (EKPO_MFRPN), Description (MAKT_MAKTX), Quantity in Base unit of Measure (EKPO_MENGE) and Quantity in BuyPack unit of measure and Net price (EKPO_BPRME).
    Give me it ASAP.
    Regards,
    Chow.

    Naidu,
    DATA : Begin of  I_EKPO  occurs 0,
                  MATNR LIKE  EKPO_MATNR,
                   MFRPN LIKE  EKPO_MFRPN,
                   MENGE LIKE EKPO_MENGE ,
                  BPRME LIKE  EKPO_BPRME ,
                  MAKTX LIKE  MAKT_MAKTX,
                End of I_EKPO.
    select EKPO~EBELN
    EKPO~MATNR
    EKPO~MFRPN
    EKPO~MENGE
    EKPO~BPRME
    MAKT~MAKTX
    from ( ekpo inner join makt on
    ekpomatnr = MAKTmatnr )
    into table I_ekpo
    where ebeln in s_ebeln.
    Don't forget to reward if useful..

  • Need Report for batch wise consuption

    i need the coding (program) for batch wise consuption report,,,
    output fields are
    Posting date, batch number, quantity, mfg date, exp date, next inspec date, order no(po) , product name, batch no quanty issue.
    i want the logic after retriving the data from MSEG table with moment types 101,102,261,262,201,202.
      that i should cancle the record of movement type 102 from 101
    regards
    mukesh

    HI Siva,
    Thanks for quick reply. Yeah, in S_ALR_87013047 i can compare only two materials. but i am looking for a report for group of materials for forecasting. Can we create acustomised report for this.
    Please let me know.
    Thanks
    vamshi

  • Need help in dynamic report for a range of year and period

    Dear all,
    I need help in creating an ALV report with dynamic columns based on the Year and period entered on the selection screen. for example if in the year we enter 2002 and period range from 10 to 12 then we should get the 3 columns display for cost(example) for period 10/2002, 11/2002 and 12/2002.
    Can anyone help me in achieving this dynamically since the user can enter the year also in intervals along with the period and data also needs to be populated in the corresponding columns.
    An example code would be of great help.
    Thanks,
    Amit

    Hi,
    Use field symbols as follows.
    TYPE-POOLS : SLIS.
    TABLES : MARC,T001W.
    DATA : BEGIN OF ITAB OCCURS 0,
           MATNR LIKE MARC-MATNR,
           END OF ITAB.
    DATA : FIELDSTAB TYPE LVC_T_FCAT,
           STAB      TYPE LVC_S_FCAT,
           T_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           S_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
           NEW_LINE TYPE REF TO DATA,
           NEW_TABLE TYPE REF TO DATA,
           INDEX(3) TYPE C,
           STR(70),
           TEXT(6),
           CNT(1),
           TEXT1(16),
           REPID LIKE SY-REPID.
    FIELD-SYMBOLS : <FS> TYPE STANDARD TABLE,
                    <WA> TYPE ANY.
    SELECT-OPTIONS : S_WERKS FOR MARC-WERKS NO INTERVALS,
                     S_MATNR FOR MARC-MATNR NO INTERVALS.
    INITIALIZATION.
      REPID = SY-REPID.
    START-OF-SELECTION.
      SELECT * FROM MARC
               INTO CORRESPONDING FIELDS OF TABLE ITAB
               WHERE MATNR IN S_MATNR
               AND   WERKS IN S_WERKS.
      SORT ITAB BY MATNR.
      DELETE ADJACENT DUPLICATES FROM ITAB COMPARING MATNR.
      STAB-FIELDNAME = 'MATNR'.
      STAB-DATATYPE  = 'CHAR'.
      STAB-INTLEN    = '18'.
      APPEND STAB TO FIELDSTAB.
      CLEAR CNT.
      LOOP AT S_WERKS.
        CLEAR TEXT.
        CNT = CNT + 1.
        CONCATENATE  'EISLO' CNT INTO TEXT.
        STAB-FIELDNAME = TEXT.
        STAB-DATATYPE  = 'CHAR'.
        STAB-INTLEN    = '16'.
        APPEND STAB TO FIELDSTAB.
        CLEAR S_WERKS.
      ENDLOOP.
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = FIELDSTAB
        IMPORTING
          EP_TABLE        = NEW_TABLE.
      ASSIGN NEW_TABLE->* TO <FS>.
      CREATE DATA NEW_LINE LIKE LINE OF <FS>.
      ASSIGN NEW_LINE->* TO <WA>.
      PERFORM MOVE_DATA.
      CLEAR S_FIELDCAT.
      S_FIELDCAT-FIELDNAME = 'MATNR'.
      S_FIELDCAT-TABNAME = ITAB.
      S_FIELDCAT-SELTEXT_M = 'Part Number'.
      S_FIELDCAT-NO_ZERO = 'X'.
      S_FIELDCAT-DDICTXT   = 'M'.
      APPEND S_FIELDCAT TO T_FIELDCAT.
      CLEAR CNT.
      LOOP AT S_WERKS.
        CLEAR T001W.
        CNT = CNT + 1.
        SELECT SINGLE * FROM T001W WHERE WERKS = S_WERKS-LOW AND SPRAS = SY-LANGU.
        CLEAR TEXT.
        CONCATENATE 'EISLO' CNT INTO TEXT.
        S_FIELDCAT-FIELDNAME = TEXT.
        S_FIELDCAT-SELTEXT_M = T001W-NAME2.
    S_FIELDCAT-NO_ZERO = 'X'.
        S_FIELDCAT-DDICTXT   = 'M'.
        APPEND S_FIELDCAT TO T_FIELDCAT.
        CLEAR S_WERKS.
      ENDLOOP.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          IT_FIELDCAT = T_FIELDCAT[]
        TABLES
          T_OUTTAB    = <FS>.
    *&      Form  MOVE_DATA
          text
    FORM MOVE_DATA.
      LOOP AT ITAB.
        CLEAR STR.
        CONCATENATE ITAB-MATNR ' ' INTO STR SEPARATED BY SPACE.
        LOOP AT S_WERKS.
          CLEAR MARC.
          SELECT SINGLE * FROM MARC WHERE MATNR = ITAB-MATNR AND WERKS = S_WERKS-LOW.
          IF SY-SUBRC EQ 0.
            CLEAR TEXT1.
            TEXT1 = MARC-EISLO.
            CONCATENATE STR TEXT1 INTO STR SEPARATED BY SPACE.
          ELSE.
            CONCATENATE STR '0' INTO STR SEPARATED BY SPACE.
          ENDIF.
        ENDLOOP.
        <WA> = STR.
        APPEND <WA> TO <FS>.
        CLEAR ITAB.
      ENDLOOP.
    ENDFORM.                    "MOVE_DATA
    Reward points if helpful.
    Regards,
    Sankar..

  • Crash during Startup - need help deciphering Problem Report for Kernel

    I got the crash message with subsequent system lockup during my last startup. This is what the problem report states:
    Interval Since Last Panic Report: 1302194 sec
    Panics Since Last Report: 5
    Sun Sep 27 18:46:32 2009
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000000 PC=0x00000000000ACD2C
    Latest crash info for cpu 0:
    Exception state (sv=0x301bc780)
    PC=0x000ACD2C; MSR=0x00009030; DAR=0x00000000; DSISR=0x40000000; LR=0x00DDC2F4; R1=0x3028FBF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x03680F8C 0x0012F064 0x001D25AC 0x001C8F80 0x001C9030 0x0003F2A0
    0x000B1DD4
    Kernel loadable modules in backtrace (with dependencies):
    com.cisco.nke.ipsec(2.0.1)@0xdd9000->0xe5afff
    Proceeding back via exception chain:
    Exception state (sv=0x301bc780)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2a2cd000)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9L30
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:57:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_PPC
    System model name: PowerBook5,6
    System uptime in nanoseconds: 66876930554
    unloaded kexts:
    (none)
    loaded kexts:
    com.cisco.nke.ipsec 2.0.1 - last loaded 1232289266
    com.Cycling74.driver.Soundflower 1.4.3
    net.telestream.driver.IODVDImage 1.0 BETA
    com.AmbrosiaSW.AudioSupport 2.3.7
    com.Logitech.driver.HIDDevices 2.1.2
    com.apple.iokit.IOBluetoothSerialManager 2.1.8f2
    com.apple.filesystems.autofs 2.0.2
    com.apple.driver.AppleTAS3004Audio 2.5.8f1
    com.apple.driver.AudioIPCDriver 1.0.6
    com.apple.driver.IOI2CLM7x 1.9d0
    com.apple.iokit.IOFireWireIP 1.7.7
    com.apple.ATIRadeon9700 5.4.8
    com.apple.driver.AppleHWClock 1.5.2d0
    com.apple.driver.AppleTexasAudio 2.5.8f1
    com.apple.driver.AppleTexas2Audio 2.5.8f1
    com.apple.driver.AppleDACAAudio 2.5.8f1
    com.apple.driver.AppleHWSensor 1.9d0
    com.apple.driver.AppleSMUMonitor 1.9d0
    com.apple.driver.IOI2CADT746x 1.0.10f1
    com.apple.AppleOnboardDisplay 1.15.1
    com.apple.driver.InternalModemSupport 2.4.0
    com.apple.driver.MotorolaSM56K 1.3.9
    com.apple.driver.AppleSCCSerial 1.3.2
    com.apple.driver.PBG4_ThermalProfile 3.4.0d0
    com.apple.driver.AppleK2Driver 1.7.2f1
    com.apple.kext.IOI2CDeviceLMU 1.4.5d1
    com.apple.driver.AppleI2S 1.0.1f1
    com.apple.driver.CSRUSBBluetoothHCIController 2.1.8f2
    com.apple.driver.AppleUSBMergeNub 3.4.6
    com.apple.driver.AppleUSBTrackpad 1.7.4f1
    com.apple.driver.AppleUSBTCKeyEventDriver 1.7.4f1
    com.apple.driver.AppleUSBTCKeyboard 1.7.4f1
    com.apple.driver.CSRHIDTransitionDriver 2.1.8f2
    com.apple.driver.AppleFileSystemDriver 1.1.0
    com.apple.driver.iTunesPhoneDriver 1.0
    com.apple.iokit.IOUSBMassStorageClass 2.0.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.1.1
    com.apple.iokit.SCSITaskUserClient 2.1.1
    com.apple.driver.XsanFilter 2.7.91
    com.apple.iokit.IOATAPIProtocolTransport 1.5.3
    com.apple.iokit.IOATABlockStorage 2.0.6
    com.apple.driver.ApplePMU 2.5.6d2
    com.apple.driver.AppleUSBHub 3.4.9
    com.apple.iokit.IOUSBUserClient 3.4.9
    com.apple.driver.AppleI2CPMU 3.5.1
    com.apple.driver.AppleGPIO 1.3.0d0
    com.apple.iokit.AppleMediaBay 1.0.2f1
    com.apple.driver.KeyLargoATA 1.1.1f1
    com.apple.driver.AppleVIA 1.5.1d1
    com.apple.driver.MacIOGPIO 1.3.0d0
    com.apple.driver.AppleMPIC 1.5.3
    com.apple.driver.IO@
    just wondering if there are any signs that indicate my Powerbook is slowly dying... it's been slowing down noticeably even with only one app running on a fresh restart

    I'm betting it's your Cisco hardware and its software driver. The driver is reported as com.cisco.nke.ipsec. I don't know what the actual driver file is called, but I would look in the /System/Library/Extensions/ folder for any drivers with "cisco" in the filename. Select the item(s) then CTRL- or RIGHT-click and select "Move to Trash" from the contextual menu. Do not empty the Trash as you don't want to actually erase the item(s). Shutdown and disconnect and Cisco hardware. If there is a Cisco application involved be sure it will not launch automatically at startup. Reboot the computer. If your kernel panics cease you will need to contact Cisco about upgrades that are compatible. It could also be an incompatibility between the Cisco driver and one of the other third-party drivers that are in the Extensions folder and listed in your report:
    com.Cycling74.driver.Soundflower
    net.telestream.driver.IODVDImage
    com.AmbrosiaSW.AudioSupport
    com.Logitech.driver.HIDDevices

  • Need your help on interactive report

    hi all
    I have generated a report(below one) ,actually i need EKORG,EKGRP,NETWR in basic list i am not getting any value in NETWR field and also I need MAKTX field in secondary list but i am not getting any value in that field  what can i do ,please suggest me any modifications to be done.
    thanks and regard
    kumar
    --INITIALIZATION----
    INITIALIZATION.
    TABLES: EKKO, EKPO, MAKT.
    DATA: BEGIN OF I_EKKO OCCURS 0,
          EBELN LIKE EKKO-EBELN,
          EKORG LIKE EKKO-EKORG,
          EKGRP LIKE EKKO-EKGRP,
          END OF I_EKKO.
    DATA: BEGIN OF I_EKPO OCCURS 0,
          EBELP LIKE EKPO-EBELP,
          MATNR LIKE EKPO-MATNR,
          NETWR LIKE EKPO-NETWR,
          MENGE LIKE EKPO-MENGE,
          NETPR LIKE EKPO-NETPR,
          END OF I_EKPO.
    DATA: BEGIN OF I_MAKT OCCURS 0,
          MAKTX LIKE MAKT-MAKTX,
          MATNR LIKE MAKT-MATNR,
          END OF I_MAKT.
    DATA: BEGIN OF I_OUT OCCURS 0,
          EBELN LIKE EKKO-EBELN,
          EKORG LIKE EKKO-EKORG,
          EKGRP LIKE EKKO-EKGRP,
          EBELP LIKE EKPO-EBELP,
          MATNR LIKE EKPO-MATNR,
          NETWR LIKE EKPO-NETWR,
          MENGE LIKE EKPO-MENGE,
          NETPR LIKE EKPO-NETPR,
          MAKTX LIKE MAKT-MAKTX,
          END OF I_OUT.
    DATA: BEGIN OF JTAB OCCURS 0,
          EBELN LIKE EKKO-EBELN,
          EBELP LIKE EKPO-EBELP,
          MATNR LIKE EKPO-MATNR,
          MENGE LIKE EKPO-MENGE,
          NETPR LIKE EKPO-NETPR,
          maktx like makt-maktx,
    end of jtab.
    --AT SELECTIONSCREEN--
    SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS:  S_EBELN FOR EKKO-EBELN OBLIGATORY.
    SELECT-OPTIONS:  S_EKORG FOR EKKO-EKORG OBLIGATORY.
    SELECT-OPTIONS:  S_EKGRP FOR EKKO-EKGRP.
    SELECTION-SCREEN END OF BLOCK B1.
    --START-OF-SELECTION----
    START-OF-SELECTION.
    SELECT EBELN EKORG EKGRP FROM EKKO
           INTO TABLE I_EKKO
           WHERE EBELN IN S_EBELN.
    SELECT EBELP MATNR NETWR MENGE NETPR FROM EKPO
           INTO TABLE I_EKPO FOR ALL ENTRIES IN I_EKKO
        WHERE EBELN = I_EKKO-EBELN.
    SELECT MAKTX MATNR FROM MAKT
           INTO TABLE I_MAKT FOR ALL ENTRIES IN I_EKPO
           WHERE MATNR = I_EKPO-MATNR.
    --END-OF-SELECTION--
    END-OF-SELECTION.
    LOOP AT I_EKKO.
         MOVE: I_EKKO-EBELN TO I_OUT-EBELN,
               I_EKKO-EKORG TO I_OUT-EKORG,
               I_EKKO-EKGRP TO I_OUT-EKGRP.
         READ TABLE I_EKPO WITH KEY EBELP = I_EKKO-EBELN.
         MOVE: I_EKPO-EBELP TO I_OUT-EBELP,
               I_EKPO-MATNR TO I_OUT-MATNR,
               I_EKPO-NETWR TO I_OUT-NETWR,
               I_EKPO-MENGE TO I_OUT-MENGE,
               I_EKPO-NETPR TO I_OUT-NETPR.
         READ TABLE I_MAKT WITH KEY MATNR = I_EKKO-EBELN.
         MOVE: I_MAKT-MAKTX TO I_OUT-MAKTX,
               I_MAKT-MATNR TO I_OUT-MATNR.
         APPEND I_OUT.
    ENDLOOP.
    LOOP AT I_OUT.
    FORMAT HOTSPOT ON.
    FORMAT COLOR 2 ON.
    WRITE : /   SY-VLINE,
            2   I_OUT-EKORG,
            9   SY-VLINE,
           10   I_OUT-EKGRP,
           24   SY-VLINE,
           25   I_OUT-NETWR,
           40   SY-VLINE.
    FORMAT HOTSPOT OFF.
    FORMAT COLOR 2 OFF.
    HIDE: I_OUT-EBELN .
    *,I_OUT-MAKTX,i_out-matnr,i_out-menge.
    ENDLOOP.
    --TOP-OF-PAGE--
    TOP-OF-PAGE.
    FORMAT COLOR 3 ON.
    WRITE : /   'EKORG',
           10   'EKGRP',
           35   'NETWR'.
    FORMAT COLOR 3 OFF.
    ---------END-OF-PAGE------------
    END-OF-PAGE.
    FORMAT COLOR 6 ON.
    WRITE : /100 'PAGE NUMBER:',SY-PAGNO.
    FORMAT COLOR 6 OFF.
    --AT LINE-SELECTION--
    AT LINE-SELECTION.
    SELECT EBELN EBELP MATNR MENGE NETPR
      FROM EKPO
      INTO corresponding fields of TABLE JTAB WHERE EBELN = I_OUT-EBELN.
    LOOP AT JTAB.
    format color 2 on.
    WRITE : /   SY-VLINE,
             2   jtab-EBELN,
            13   SY-VLINE,
            15   jtab-EBELP,
            28   SY-VLINE,
            30   jtab-MATNR,
            43   SY-VLINE,
            45   jtab-MENGE,
            49   SY-VLINE,
            50   jtab-NETPR,
            59   SY-VLINE,
            60   I_OUT-MAKTX,
            68   SY-VLINE.
    format color 2 off.
    ENDLOOP.
    TOP-OF-PAGE DURING LINE-SELECTION.
    FORMAT COLOR 3 ON.
    WRITE: /    'EBELN',
            15   'EBELP',
            30   'MATNR',
            45   'MENGE',
            53   'NETPR',
            63   'MAKTX'.
    FORMAT COLOR

    Hi,
    Check this..I am able to see the material description and netwr..
    --INITIALIZATION----
    INITIALIZATION.
      TABLES: ekko, ekpo, makt.
      DATA: BEGIN OF i_ekko OCCURS 0,
      ebeln LIKE ekko-ebeln,
      ekorg LIKE ekko-ekorg,
      ekgrp LIKE ekko-ekgrp,
      END OF i_ekko.
      DATA: BEGIN OF i_ekpo OCCURS 0,
      ebeln LIKE ekpo-ebeln,
      ebelp LIKE ekpo-ebelp,
      matnr LIKE ekpo-matnr,
      netwr LIKE ekpo-netwr,
      menge LIKE ekpo-menge,
      netpr LIKE ekpo-netpr,
      END OF i_ekpo.
      DATA: BEGIN OF i_makt OCCURS 0,
      maktx LIKE makt-maktx,
      matnr LIKE makt-matnr,
      END OF i_makt.
      DATA: BEGIN OF i_out OCCURS 0,
      ebeln LIKE ekko-ebeln,
      ekorg LIKE ekko-ekorg,
      ekgrp LIKE ekko-ekgrp,
      ebelp LIKE ekpo-ebelp,
      matnr LIKE ekpo-matnr,
      netwr LIKE ekpo-netwr,
      menge LIKE ekpo-menge,
      netpr LIKE ekpo-netpr,
      maktx LIKE makt-maktx,
      END OF i_out.
      DATA: BEGIN OF jtab OCCURS 0,
      ebeln LIKE ekko-ebeln,
      ebelp LIKE ekpo-ebelp,
      matnr LIKE ekpo-matnr,
      menge LIKE ekpo-menge,
      netpr LIKE ekpo-netpr,
      maktx LIKE makt-maktx,
      END OF jtab.
    --AT SELECTIONSCREEN--
      SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
      SELECT-OPTIONS: s_ebeln FOR ekko-ebeln OBLIGATORY.
      SELECT-OPTIONS: s_ekorg FOR ekko-ekorg OBLIGATORY.
      SELECT-OPTIONS: s_ekgrp FOR ekko-ekgrp.
      SELECTION-SCREEN END OF BLOCK b1.
    --START-OF-SELECTION----
    START-OF-SELECTION.
      SELECT ebeln ekorg ekgrp FROM ekko
      INTO TABLE i_ekko
      WHERE ebeln IN s_ebeln.
      IF NOT i_ekko[] IS INITIAL.
        SELECT ebeln ebelp matnr netwr menge netpr FROM ekpo
        INTO TABLE i_ekpo FOR ALL ENTRIES IN i_ekko
        WHERE ebeln = i_ekko-ebeln.
      ENDIF.
      IF NOT i_ekpo[] IS INITIAL.
        SELECT maktx matnr FROM makt
        INTO TABLE i_makt FOR ALL ENTRIES IN i_ekpo
        WHERE matnr = i_ekpo-matnr.
      ENDIF.
    --END-OF-SELECTION--
    END-OF-SELECTION.
      LOOP AT i_ekko.
        MOVE: i_ekko-ebeln TO i_out-ebeln,
        i_ekko-ekorg TO i_out-ekorg,
        i_ekko-ekgrp TO i_out-ekgrp.
        READ TABLE i_ekpo WITH KEY ebeln = i_ekko-ebeln.
        MOVE: i_ekpo-ebelp TO i_out-ebelp,
        i_ekpo-matnr TO i_out-matnr,
        i_ekpo-netwr TO i_out-netwr,
        i_ekpo-menge TO i_out-menge,
        i_ekpo-netpr TO i_out-netpr.
        READ TABLE i_makt WITH KEY matnr = i_ekpo-matnr.
        MOVE: i_makt-maktx TO i_out-maktx,
        i_makt-matnr TO i_out-matnr.
        APPEND i_out.
      ENDLOOP.
      LOOP AT i_out.
        FORMAT HOTSPOT ON.
        FORMAT COLOR 2 ON.
        WRITE : / sy-vline,
        2 i_out-ekorg,
        9 sy-vline,
        10 i_out-ekgrp,
        24 sy-vline,
        25 i_out-netwr,
        40 sy-vline.
        FORMAT HOTSPOT OFF.
        FORMAT COLOR 2 OFF.
        HIDE: i_out-ebeln .
    *,I_OUT-MAKTX,i_out-matnr,i_out-menge.
      ENDLOOP.
    --TOP-OF-PAGE--
    TOP-OF-PAGE.
      FORMAT COLOR 3 ON.
      WRITE : / 'EKORG',
      10 'EKGRP',
      35 'NETWR'.
      FORMAT COLOR 3 OFF.
    ---------END-OF-PAGE------------
    END-OF-PAGE.
      FORMAT COLOR 6 ON.
      WRITE : /100 'PAGE NUMBER:',sy-pagno.
      FORMAT COLOR 6 OFF.
    --AT LINE-SELECTION--
    AT LINE-SELECTION.
      SELECT ebeln ebelp matnr menge netpr
      FROM ekpo
      INTO CORRESPONDING FIELDS OF TABLE jtab WHERE ebeln = i_out-ebeln.
      LOOP AT jtab.
        READ TABLE i_makt WITH KEY matnr = jtab-matnr.
        MOVE: i_makt-maktx TO i_out-maktx.
        FORMAT COLOR 2 ON.
        WRITE : / sy-vline,
        2 jtab-ebeln,
        13 sy-vline,
        15 jtab-ebelp,
        28 sy-vline,
        30 jtab-matnr,
        43 sy-vline,
        45 jtab-menge,
        49 sy-vline,
        50 jtab-netpr,
        59 sy-vline,
        60 i_out-maktx,
        68 sy-vline.
        FORMAT COLOR 2 OFF.
      ENDLOOP.
    TOP-OF-PAGE DURING LINE-SELECTION.
      FORMAT COLOR 3 ON.
      WRITE: / 'EBELN',
      15 'EBELP',
      30 'MATNR',
      45 'MENGE',
      53 'NETPR',
      63 'MAKTX'.
    Thanks,
    Naren

  • Nee help on ALV report for Total of BSEG-BUZEI & F1 document in FB03

    Hi friends,
    I need to diplay line items total & when double clicked on BELNR field it should open the F1 document in FB03.
    Could anyone plz guide me on this.
    Waiting for response.
    below is my code,
    Kindly needed help.
    REPORT  YALV_1.
    TABLES : BKPF,BSEG.
    Data for ALV display
    TYPE-POOLS: SLIS.
    data : int_fcat type SLIS_T_FIELDCAT_ALV,
           fieldcatalog type slis_t_fieldcat_alv with header line.
    DATA:  wa_sortinfo TYPE slis_sortinfo_alv,
           i_sortcat TYPE slis_t_sortinfo_alv.
    TYPES  : BEGIN OF T_BKPF,
            BUKRS TYPE BKPF-BUKRS,
            BELNR TYPE BKPF-BELNR,
            GJAHR TYPE BKPF-GJAHR,
            BLART TYPE BKPF-BLART,
            BLDAT TYPE BKPF-BLDAT,
            BUDAT TYPE BKPF-BUDAT,
            END OF T_BKPF.
    types: begin of t_bseg,
           BUZEI TYPE BSEG-BUZEI,
           end of t_bseg.
    DATA : it_bkpf TYPE STANDARD TABLE OF t_bkpf with header line,
          wa_bkpf TYPE t_bkpf,
           it_bseg type standard table of t_bseg.
          wa_bseg type t_bseg.
    field to store report name
    DATA :  i_repid like sy-repid.
    select bukrs belnr gjahr blart bldat budat from bkpf into table
    it_bkpf where blart = 'AA'.
    field to check table length
    *data i_lines like sy-tabix.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    PERFORM sortcat_init CHANGING i_sortcat.
    perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but
    *can
    also allow you  more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such
    *as
    total. You may need to provide more information than if you were
    simply displaying the result
                  I.e. Field type may be required in-order for
                       the 'TOTAL' function to work.
      fieldcatalog-fieldname   = 'BUKRS'.
      fieldcatalog-seltext_m   = 'Company Code'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 4.
    fieldcatalog-do_sum      = 'X'.
    fieldcatalog-no_zero     = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BELNR'.
      fieldcatalog-seltext_m   = 'Doc No'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'GJAHR'.
      fieldcatalog-seltext_m   = 'Fiscal Year'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BLART'.
      fieldcatalog-seltext_m   = 'DOC Type'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BLDAT'.
      fieldcatalog-seltext_m   = 'Doc Date'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BUDAT'.
      fieldcatalog-seltext_m   = 'Popsting Date'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'BUZEI'.
      fieldcatalog-seltext_m   = 'Line Items'.
      fieldcatalog-col_pos     = 6.
      fieldcatalog-do_sum      = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    FORM sortcat_init CHANGING i_sortcat TYPE slis_t_sortinfo_alv.
      CLEAR wa_sortinfo.
      wa_sortinfo-fieldname = 'BUKRS'.
      wa_sortinfo-tabname = 'T_BKPF'.
      wa_sortinfo-spos = 1.            " First sort by this field.
      wa_sortinfo-up = 'X'.            "   Ascending
      wa_sortinfo-subtot = 'X'.        " Subtotal at Name1
      APPEND wa_sortinfo TO i_sortcat.
      CLEAR wa_sortinfo.
      wa_sortinfo-fieldname = 'BELNR'.
      wa_sortinfo-tabname = 'T_BKPF'.
      wa_sortinfo-spos = 2.            " Sec sort by this field.
      wa_sortinfo-up = 'X'.            "   Ascending
      wa_sortinfo-subtot = 'X'.        " Subtotal at Name1
      APPEND wa_sortinfo TO i_sortcat.
    ENDFORM.                    " sortcat_init
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      i_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = i_repid
               i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
               i_callback_user_command = 'USER_COMMAND'
               i_grid_title           = outtext
               is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_sort                = i_sortcat
               it_special_groups       = gd_tabgroup
               IT_EVENTS                = GT_XEVENTS
                i_save                  = 'X'
               is_variant              = z_template
           tables
                t_outtab                = IT_BKPF
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
    form data_retrieval.
    IF it_bkpf[] IS NOT INITIAL.
       select buzei from bseg into
         table it_bseg for all entries in it_bkpf
         where bukrs = it_bkpf-bukrs
         and belnr = it_bkpf-belnr
         and gjahr = it_bkpf-gjahr.
         endif.
    endform.                    " DATA_RETRIEVAL.

    Hello
    1.
    form display_alv_report.
    i_repid = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND'
    it_fieldcat = fieldcatalog[]
    i_save = 'X'
    tables
    t_outtab = IT_BKPF
    exceptions
    program_error = 1
    others = 2.
    2.
    * FORM USER_COMMAND
    FORM user_command USING u_com LIKE sy-ucomm sel_lin TYPE slis_selfield.
    CASE u_com.
      WHEN '&IC1'. 
        CASE sel_lin.
          WHEN 'BELNR'.
          read TABLE IT_BKPF INDEX sel_lin-tabindex.
          SET PARAMETER ID 'BLN' FIELD IT_BKPF-BELNR.
          SET PARAMETER ID 'BUK' FIELD IT_BKPF-BUKRS.
          SET PARAMETER ID 'GJR' FIELD IT_BKPF-GJAHR.
          CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN. 
        ENDCASE.
    CLEAR u_com.
    ENDCASE.
    ENDFORM. "USER_COMMAND

  • I have a lot of imformant on my ipad and havent connect it to a computer or anything that will save my stuff i dont want to restore it but i cant think of the password at all any others thing i can do to save all my stuff? help really needed!

    Hi, I just changed my password for my ipad 4 and my keypad has been messed up for a while. As I was typing in my new passcode it double cliked a number and i dont one which one it clicked twice for as i was typing it in the second time the same thing happened again and was accepted! i locked my ipad and when i can back to it i typed in my passcode and would go in i kept trying and ran out of attempts. It is down to 2 more attempts and then it will be drained. I have alot of informant on the ipad and havent backed it up to any icloud or any other saving things! i really dont want to lose my stuff on the ipad by restoring it and other thing i cant do? PLEASE HELP, I REALLY WANT TO KEEP ALL MY STUFF! THANKS

    is there any important stuff saved to your emails? if so you could log on to your emails from a seperate device and back them up. im not sure what else you could do :/

Maybe you are looking for

  • Download of the iPhone-Software 4.3.2.

    Hello, my problem is: The OS-Software cannot be downloaded (error 9006, error 3259) Can someone help me? to the iPhone

  • Send notifications to different X Server

    Hey, I am currently struggeling with getting OSD_CAT notifications to Display :1. I play games in a different X Server, to provide a workaround for Alt+Tab and in case a game crashes. I've set up EseKeyD to use my multimedia keys accross both X Serve

  • Printer busy - Will retry in 10 seconds

    Hi, I am on a IMac Intel that runs both Windows and OSX. When I am logged onto Windows I can print fine. I am trying to set up the printer in OSX and am having difficulty. We have a Konica Minolta printer and an EFI Fiery RIP. I've just installed the

  • Timecode overlay problems

    I am trying to use AME to encode low quality timecode burned in 29.97 clips from from a Sony F5 camera. The problem is that the Timecode overlay effect has multiple issues: The first being that it defaults to non-drop frames, so I get a slight drift

  • Sent out new box

    ok i was sent out new black box to replae my silver one , plugged it in and the freeview quality is awfull cant gett bbc 1 and 2 at all and all other channels are at 30% signal quality , plugged the silver one back in and every channel works fine qua