Quickviewer

Hi,
I want to learn, how to use the quickviwer for daily queries.
Please help.
Thanks / Bhavesh

Please see the following documentation SAP Quickviewer.
http://help.sap.com/saphelp_46c/helpdata/en/b7/26dde8b1f311d295f40000e82de14a/frameset.htm
When creating your quick query, select table join from the datasouce listbox. Click green check. On the next screen click "insert table". Enter the 1st table name, I'm using MARA and hit enter. Click insert table again, this time use MARC. hit enter. Notice that it made the connection for you. it does this when it finds fields with the same field name. You can change it if you want. This is how you join tables in the SQVI.
http://help.sap.com/saphelp_46c/helpdata/en/50/a71ec8f65911d296390000e82de14a/frameset.htm

Similar Messages

  • Report from SAP Quickviewer code

    Hi,
    I have been given a code generated by SAP Quickviewer (transaction SQVI). The client expects me to design an ABAP Report using this code as a guideline. Is this practically possible. I don't even have access to the name of the quickview. No tech spec too.
    Some lines of the code: Just to give you guys the feel of it...
    REPORT AQL3SYSTQV000116ORDERS_CPR====
       LINE-SIZE 253 NO STANDARD PAGE HEADING LINE-COUNT 000(001).
    INCLUDE <SYMBOL>.
    INCLUDE <ICON>.
    SELECTION-SCREEN: BEGIN OF BLOCK PROG
                               WITH FRAME TITLE TEXT-F58.
    %FA00000 /BAY0/AXCMR_AUT2-SUBSTITUTE
    TABLES /BAY0/AXCMR_AUT2.
    TABLES VBAP.
    TABLES VBPA.
    TABLES /BAY0/AXCMR_CPR.
    *TABLES KNA1.
    DATA AVBEGKNA1 LIKE KNA1.
    TABLES KNA1.
    TABLES VBAK.
    DATA %COUNT-VBAK(4) TYPE X.
    DATA %LINR-VBAK(2).
    SELECT VBAKANGDT VBAKAUART VBAKBNDDT VBAKERDAT VBAK~ERNAM
           VBAKERZET VBAKKUNNR VBAKVBELN VBAKVKORG VBAP~ABGRU
           VBAPARKTX VBAPMATNR VBAPPOSNR VBAPPRODH VBAP~VBELN
           /BAY0/AXCMR_CPRKUNAG /BAY0/AXCMR_CPRKUNWE
           /BAY0/AXCMR_CPRMATNR /BAY0/AXCMR_CPRPRICE
           /BAY0/AXCMR_CPRVKORG VBPAKUNNR VBPAPARVW VBPAVBELN
           AVBEGKNA1KUNNR AVBEGKNA1LAND1 AVBEGKNA1NAME1 AVBEGKNA1ORT01
           /BAY0/AXCMR_AUT2ML1 /BAY0/AXCMR_AUT2ML2 /BAY0/AXCMR_AUT2~ML3
           /BAY0/AXCMR_AUT2ML4 /BAY0/AXCMR_AUT2OBJID
           /BAY0/AXCMR_AUT2PRICE /BAY0/AXCMR_AUT2SUBSTITUTE
           /BAY0/AXCMR_AUT2VKORG KNA1KUNNR KNA1LAND1 KNA1NAME1
           KNA1~ORT01
    INTO (VBAK-ANGDT , VBAK-AUART , VBAK-BNDDT , VBAK-ERDAT , VBAK-ERNAM
         , VBAK-ERZET , VBAK-KUNNR , VBAK-VBELN , VBAK-VKORG , VBAP-ABGRU
         , VBAP-ARKTX , VBAP-MATNR , VBAP-POSNR , VBAP-PRODH , VBAP-VBELN
         , /BAY0/AXCMR_CPR-KUNAG , /BAY0/AXCMR_CPR-KUNWE
         , /BAY0/AXCMR_CPR-MATNR , /BAY0/AXCMR_CPR-PRICE
         , /BAY0/AXCMR_CPR-VKORG , VBPA-KUNNR , VBPA-PARVW , VBPA-VBELN
         , AVBEGKNA1-KUNNR , AVBEGKNA1-LAND1 , AVBEGKNA1-NAME1
         , AVBEGKNA1-ORT01 , /BAY0/AXCMR_AUT2-ML1 , /BAY0/AXCMR_AUT2-ML2
         , /BAY0/AXCMR_AUT2-ML3 , /BAY0/AXCMR_AUT2-ML4
         , /BAY0/AXCMR_AUT2-OBJID , /BAY0/AXCMR_AUT2-PRICE
         , /BAY0/AXCMR_AUT2-SUBSTITUTE , /BAY0/AXCMR_AUT2-VKORG
         , KNA1-KUNNR , KNA1-LAND1 , KNA1-NAME1 , KNA1-ORT01 )
    FROM ( VBAK
           INNER JOIN VBAP
           ON VBAPVBELN = VBAKVBELN
           INNER JOIN /BAY0/AXCMR_CPR
           ON /BAY0/AXCMR_CPRKUNAG = VBAKKUNNR
           AND /BAY0/AXCMR_CPRVKORG = VBAKVKORG
           AND /BAY0/AXCMR_CPRMATNR = VBAPMATNR
           INNER JOIN VBPA
           ON VBPAKUNNR = /BAY0/AXCMR_CPRKUNWE
           AND VBPAVBELN = VBAPVBELN
           INNER JOIN KNA1  AS AVBEGKNA1
           ON AVBEGKNA1KUNNR = /BAY0/AXCMR_CPRKUNWE
           INNER JOIN /BAY0/AXCMR_AUT2
           ON /BAY0/AXCMR_AUT2PRICE = /BAY0/AXCMR_CPRPRICE
           AND /BAY0/AXCMR_AUT2VKORG = /BAY0/AXCMR_CPRVKORG
           INNER JOIN KNA1
           ON KNA1KUNNR = /BAY0/AXCMR_CPRKUNAG )
           WHERE VBAK~ANGDT IN SP$00003
             AND VBAK~AUART IN SP$00001
             AND VBAK~BNDDT IN SP$00002
             AND VBAK~ERDAT IN SP$00004
             AND VBAK~ERNAM IN SP$00005
             AND VBAP~ABGRU IN SP$00010
             AND VBAP~MATNR IN SP$00006
             AND VBAP~POSNR IN SP$00007
             AND VBAP~PRODH IN SP$00009
             AND VBAP~VBELN IN SP$00008
             AND /BAY0/AXCMR_CPR~KUNAG IN SP$00016
             AND /BAY0/AXCMR_CPR~KUNWE IN SP$00015
             AND /BAY0/AXCMR_CPR~MATNR IN SP$00014
             AND /BAY0/AXCMR_CPR~PRICE IN SP$00013
             AND VBPA~KUNNR IN SP$00011
             AND VBPA~PARVW IN SP$00012
             AND /BAY0/AXCMR_AUT2~ML1 IN SP$00022
             AND /BAY0/AXCMR_AUT2~ML2 IN SP$00021
             AND /BAY0/AXCMR_AUT2~ML3 IN SP$00020
             AND /BAY0/AXCMR_AUT2~ML4 IN SP$00019
             AND /BAY0/AXCMR_AUT2~OBJID IN SP$00018
             AND /BAY0/AXCMR_AUT2~SUBSTITUTE IN SP$00017.
      %DBACC = %DBACC - 1.
    Please help with this.
    thanks,
    Vishal.

    My advice would be to make sure the client tells you what they want the new ABAP Report to do that is <u>different</u> from the Quickviewer Report.  If the client does not have a formal technical spec process, then you at least need to be told verbally or via e-mail what to change.  Without that information you cannot proceed with any meaningful development.
    Assuming that you can get that information, all you need to do is to create a copy of the Quickviewer program (via SE38) since the Quickviewer program is just a regular ABAP program.  Then you must get a feel for what the code is currently doing (understand the logic) so that you can proceed with making the changes required for the new version. 
    Another approach might be to simply get an understanding of the Quickviewer code and start your own ABAP Report from scratch (using your own preferred style of coding).
    Have fun!
    Regards,
    James Gaddis

  • QuickView, Preview.. etc. Can't Display PSD files

    I've been having this problem for some time now - as far back as can remember with OS X.
    When I try to view a psd file, (prior to Lep) in Preview or Xee, all I get is the transparent Alpha Channel - ie usually a solid blank neutral gray or checker board white and gray.  And as of Leopard (and Snow Leo), this situation now includes Quickview.  I get no actual image, or sometimes part of an image displayed, but never the full image that is displayed in PS or PSE.
    The ONLY exceptions to this problem I have found is an ancient app called ACDSee v1.6.9 (2001) and Quicktime Player.  Both display psd files perfectly.
    The preferences to save Image Previews: Always Save, Icon, Full Size, Mac Thumbnail, Windows Thumbnail.
    Am I saving psd files wrong somehow so that the default system apps can not display psd files properly?
    BTW - this problem is completely consistent on EVERY system I have tried it on regardless of the OS X version (Tiger, Leo, Snow Leo) and Photoshop version (PSE 2, 4, 5, 6; PS 7, CS1, CS2).
    Any help or suggestions would be greatly appreciated.  This is a very irritating problem..
    TIA

    This isn't an issue or something you are doing incorrectly, PSD is an Adobe format that is not widely supported.  You need to open it within your Adobe application, such as Photoshop.

  • Assign a transaction code to a Quickview in SE93

    Hi,
    I created a quickview using t-code SQVI. I want to assign this quickview to a transaction code using t-code SE93.
    In SE93, I maintained:
    Name of screen field: D_SREPOVARI-REPORTTYPE   Value: AQ
    Name of screen field: D_SREPOVARI-REPORT  Value: ????
    Which value to I have to maintain for D_SREPOVARI-REPORT  ?
    Thanks a lot for your help.
    Julien

    Hi ,
    chek this one.
    D_SREPOVARI-REPORTTYPE 'AQ'
    D_SREPOVARI-REPORT  'HR          G'
    D_SREPOVARI-EXTDREPORT  ' E2'
    Here ..
    AQ meant for ABAP Query.
    HR is user group and G mean for Global. It has to be after 10 chars( It depends on the filed length of user group tech info).
    E2 is Query name(in SQ01).
    Regard's
    SHAIK.

  • QuickView uses EXIF data for preview, even when bogus. A plist to turn that off?

    We moved to MBPs with SnowLeopard recently and just found that many downloaded images  usually from publicity or stock-photo sites - give distorted or no preview when we use QuickView (tapping the space-bar) on them in the Finder.
    Some investigation showed that the distorted images have EXIF data tha has either been corrued or purposefully messed with. Here's an example where the QV preview widget opens to the width of the screen but at minimum height:
    Image width          : 4992
    Image height          : 6666
    Number of bits per component          : {8,8,8}
    Compression scheme          : uncompressed
    Pixel composition          : RGB
    Orientation of image          : 1
    Unknown tag (0)          : 0,0,3,0
    X resolution          : 0.0 ppi (pixel per inch)
    Y resolution          : 300.0 ppi (pixel per inch)
    Image data arrangement          : 1
    Resolution unit          : inch
    Software          : Adobe Photoshop CS3 Macintosh
    File date and time          : 2009:02:20 15:47:58
    -- Exif IFD --          :
    Color Space          : Uncalibrated
    Valid image width in pixel          : 2250
    Valid image height in pixel          : 3000
    -- Thumbnail IFD --          :
    Compression scheme          : JPEG
    X resolution          : 300.0 ppi (pixel per inch)
    Y resolution          : 300.0 ppi (pixel per inch)
    Resolution unit          : inch
    Offset to JPEG SOI          : 394
    Bytes of JPEG data          : 3933
    The EXIF data says the X resolution is 0.0ppi.
    These files all open fine in Photoshop or Graphic Converter. Sometimes GC's resolution tool shows that the horizontal & vertical resolutions are different (300 x 0.3 for example) and I can correct it, re-save the jpeg image. and QV then previews them just fine in the Finder.
    Most, however only have this bogus resolution in the EXIF data and evidently QuickView preferentially uses that info.
    There are tools that can be used to simply carpet bomb the EXIF data of a batch of files, but most of it is useful to us so we'd rathr not rsort to that. Is there a QV plist where clever folks can edit it so QV uses the actual image resolution rather than what's in the EXIF data?
    Incidentally, QV in Leopard ignored this data which is why we only now began to encounter images where QV is useless. Bogus EXIF resolutions have probebly been in image headers for years and we did not realize it until we found SnowLeopard's Finder payed attention to them.

    We moved to MBPs with SnowLeopard recently and just found that many downloaded images  usually from publicity or stock-photo sites - give distorted or no preview when we use QuickView (tapping the space-bar) on them in the Finder.
    Some investigation showed that the distorted images have EXIF data tha has either been corrued or purposefully messed with. Here's an example where the QV preview widget opens to the width of the screen but at minimum height:
    Image width          : 4992
    Image height          : 6666
    Number of bits per component          : {8,8,8}
    Compression scheme          : uncompressed
    Pixel composition          : RGB
    Orientation of image          : 1
    Unknown tag (0)          : 0,0,3,0
    X resolution          : 0.0 ppi (pixel per inch)
    Y resolution          : 300.0 ppi (pixel per inch)
    Image data arrangement          : 1
    Resolution unit          : inch
    Software          : Adobe Photoshop CS3 Macintosh
    File date and time          : 2009:02:20 15:47:58
    -- Exif IFD --          :
    Color Space          : Uncalibrated
    Valid image width in pixel          : 2250
    Valid image height in pixel          : 3000
    -- Thumbnail IFD --          :
    Compression scheme          : JPEG
    X resolution          : 300.0 ppi (pixel per inch)
    Y resolution          : 300.0 ppi (pixel per inch)
    Resolution unit          : inch
    Offset to JPEG SOI          : 394
    Bytes of JPEG data          : 3933
    The EXIF data says the X resolution is 0.0ppi.
    These files all open fine in Photoshop or Graphic Converter. Sometimes GC's resolution tool shows that the horizontal & vertical resolutions are different (300 x 0.3 for example) and I can correct it, re-save the jpeg image. and QV then previews them just fine in the Finder.
    Most, however only have this bogus resolution in the EXIF data and evidently QuickView preferentially uses that info.
    There are tools that can be used to simply carpet bomb the EXIF data of a batch of files, but most of it is useful to us so we'd rathr not rsort to that. Is there a QV plist where clever folks can edit it so QV uses the actual image resolution rather than what's in the EXIF data?
    Incidentally, QV in Leopard ignored this data which is why we only now began to encounter images where QV is useless. Bogus EXIF resolutions have probebly been in image headers for years and we did not realize it until we found SnowLeopard's Finder payed attention to them.

  • Preview/QuickView of HP Scan Pro PDF Files Causes System Crash in 10.5.5

    Ever since upgrading to 10.5.5 on my iMac Core 2 Duo 2.4GHz, I have been having problems with PDF files created by scanning documents using HP Scan Pro. Prior to 10.5.5, the PDFs from HP Scan Pro worked fine and behaved like any other PDF. Under 10.5.5, however, opening one in Preview or trying to view it in the Finder using QuickView causes the whole system to hang. Processor usage jumps to >100% and everything on the system becomes unresponsive. Every app causes a spinning beach ball, the Dock will not display, menus will not pull down, and I can't even call up the Force Quit dialog via the keyboard. There is nothing to be done but force-restart the system by holding down the power button.
    Looking in the system.log, it seems that ATSServer is the process that is causing this problem. A dump of the relevent log entries is at the end of the message. The "Non-aligned pointer" and "Incorrect checksum" errors just continue forever until the point when I force a reboot.
    Is anyone else experiencing this? Does anyone have knowledge of what changed in ATSServer or PDF handling in 10.5.5 that could be causing this? What is unique about the PDF files created by HP Scan Pro?
    Thanks,
    Drew
    Sep 26 17:38:35 Work-iMac /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[172]: FOExceptionMainHandler caught a fatal exception at 0x000f1f02
    Sep 26 17:38:35 Work-iMac /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[172]: FOExceptionMainHandler caught a fatal exception at 0x000f1502
    Sep 26 17:38:36 Work-iMac /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[172]: FOExceptionMainHandler caught a fatal exception at 0x000f1f44
    Sep 26 17:38:36 Work-iMac /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[172]: FOExceptionMainHandler caught a fatal exception at 0x000f1502
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xb0081000) malloc: * error for object 0x305f30: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[172]: FOExceptionMainHandler caught a fatal exception at 0x000f1693
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x35b020: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[172]: FOExceptionMainHandler caught a fatal exception at 0x913cce78
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x356da0: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c0c0: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36: --- last message repeated 5 times ---
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x351fd0: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x350850: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x34ec60: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c0c0: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36: --- last message repeated 3 times ---
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x32c5e0: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0x347d10: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c0c0: incorrect checksum for freed object - object was probably modified after being freed.\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c0c0: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c140: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c1c0: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c240: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c2c0: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c3c0: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c540: pointer being reallocated was not allocated\n* set a breakpoint in mallocerrorbreak to debug
    Sep 26 17:38:36 Work-iMac ATSServer[172]: ATSServer(172,0xa023bfa0) malloc: * error for object 0xd2c540: Non-aligned pointer being freed (2)\n* set a breakpoint in mallocerrorbreak to debug

    Thanks to everyone who has contributed to this thread that I started. I am glad to know it's not just me having these problems.
    I have run through all the usual suggestions related to ATSServer problems and problematic fonts: I've cleared caches, checked all the fonts for broken ones, haven't installed any new ones since this problem began, etc., etc.
    I've been able to make a few more observations about the problem in my case:
    1. I don't get any crashes while using the HP Scanjet software. I can successfully create a PDF file.
    2. The problem for me only exists on PDF files that I have had HP Scanjet do OCR on and save the text with the image in the PDF. If I scan to create an image-only PDF, it does not cause a problem.
    3. I have now noticed that the problem comes not only when trying to open problem PDFs using Preview or QuickLook, but it also happens when mdsworker, the Spotlight indexer, tries to access the file for indexing. The computer then hangs. I have now had to turn off Spotlight until I can eliminate all the problem PDFs. (The problem only happens with PDFs created since the upgrade to 10.5.5. Older PDFs created with HP Scanjet that were in the Spotlight index earlier do not cause problems.)
    4. These problem PDFs will open correctly in Adobe Acrobat or Acrobat Reader if Spotlight is off, but if Spotlight is on opening the file causes it to be indexed and the system hangs.
    In Googling for solutions, I've found that people have sometimes been having problems with interaction between ATSServer and mdsworker since as far back as 10.2.x:
    http://forums.appleinsider.com/archive/index.php/t-58103.html
    http://www.macheist.com/forums/viewtopic.php?id=7406
    http://blog.thebleacher.com/2008/01/02/the-runaway-atsserver-process/
    http://installingcats.com/2008/05/06/mac-high-cpu-after-copying-pdf-books-atsser ver-mdworker/

  • Why does Quickview stop showing previews when I scan through a folder of .eps files?

    I have an Adobe Illustrator folder with a bunch of my .eps files that I browse through, and after about 20 or 30 files the quickview preview stops showing me the artwork and shows the generic eps image.  Is this a limited feature or is something wrong here?
    Any advice, help. or

    Try downloading this: http://www.eternalstorms.at/utilities/epsqlplg/
    You place it in ~/Library/QuickLook
    Source.

  • Photoshop PSD files won't show in Quickview

    The thumbnails all show and allow to be rescaled to maximum size, but when i hit the spacebar for quickview they only show as a white image.
    Matt

    Oh, and when I try to Manage Referenced Files it crashes every time - I suspect the files are in fact referenced, but given it crashes when I try this its hard to know

  • SAP Quickview: converting to Query

    Hi,
    I've created a quickview, and this quickview can be used for other users, and I want to convert this quickview to a quey.
    If I go to the query screen (SQ01), there's the 'convert quickview' functionality (Menu: Query --> convert quickview). But this function is grayed out in my system, as well as the IDES sytem. I think I'm missing a step which hinders me in creating the query.
    Can anyone help, will award points!
    Kind regards,
    Mark

    Mark,
    It is simple you need to change the "Query area" to "Standard area - Client Specific". Currently you are checking in "Global area - Cross Client".
    In SQ01 transaction, you need to use menu path Environment--->Query Areas. Select "Standard Area - Client Specific". Now try the menu: Menu: Query --> convert quickview.
    Hope this resolves your problem...Reward your points,
    Regards,
    Prasobh

  • Can't see, quickview or open email attachments...

    iPad 2-I can receive emails fine, but cannot see, quickview or open email attachments. I've been sent PDFs and can see a paper clip icon in email list view, but no PDF icon in the email.
    Why?
    Thanks.

    How about something really crazy and unheard of? 
    I have two email accounts with Google Mail.  Both are the only ones set up in the Mail app inside my iPad2.  One would load everything: .jpeg, .docx, .pdf, and everything.  The other would not. 
    I tried hard reset multiple times, deleting both email accounts and hard resetting.  I cut all processes using SBSettings and killed all processes related to mail.  So I have nothing running now, and I deleted all of the readers, Doc to Go, Quick Office, and other apps I had added.
    Now I have nothing running and no apps installed.
    Then I set up mail again from the bottom, as if the iPad came in the mail today.  One gmail account still automatically opens and previews .jpg attachments, and show .doc, .pdf attachments with their respective icons.  THE OTHER GMAIL ACCOUNT IN THE SAME iPAD MAIL APP DOES NOT OPEN THE SAME MESSAGES I HAVE FORWARDED TO BOTH.  I would see an arrow pointed down in the icon inside that "faulty" mail account, and the name of the attachment below the icon.  I have pressed my finger a gadzillion times on those icons, only to see the spinning wheel briefly and nothing.  Holding them down would do nothing, and i can't open in other apps.
    The wackiest thing is... when I hit forward (by tapping the curved arrow at the top), I get a drop-down choice list: "INCLUDE" and "DON'T INCLUDE" attachments.  When I tap on INCLUDE, .jpg files immediately load and show in the reply message, only two of four .pdfs load and open, but no .docx attachments would.
    How would we be supposed to troubleshoot or fix something like this?

  • How to get QuickView as the main PDF viewer in browsers?

    I have uninstalled Adobe PDF reader as it is UGLY and SLOW. I want to use Apple Quickview app that was initially prebuilt in OS. But wen I deleted Adobe Reader browsers fail to open pdf documents as association still on Adobe Reader.
    How to return it back to Quickview?

    I would delete and re-add adobe reader then - make sure u have the 10.8 versioning instead of general mac - that could be issue  http://get.adobe.com/reader/otherversions/      Ive been able to use adobe and set it as defualt 
    https://startit.artic.edu/kb/software/adobe/acro_reader_default.html   also make certain adobe is in applications
    (global)

  • How to remove leading zeros for an item number within quickviewer

    how to remove leading zeros for an item number within quickviewer. Pls help

    ask your abap guy to do  it. not portal guys business.

  • Adding a Structure in SAP QuickView

    Hi,
    I have to make a report in QuickView using the tables VBRK, VBPA, VBFA. Also, I need information from Structure KONV (Condition records), but I cannot join it as a table. How should I proceed?
    Thanks for your help!
    Cristiana

    Hi,
    actually, with SQVI, you can choose the logical database : VFV.
    Another solution to use directly KONV, you can add an ABAP code by using SQ02 to create your own infoset.
    Regards,
    Lionel

  • QuickViewer - logical DB PNPCE.  Same person on multiple lines in result

    Hi
    I have created a Quickviewer using SQVI.  Logical DB PNPCE is used as data source.
    When I create the quickviewer I first has to build up the infoset by selecting info types to be included.
    I select several info types.
    When I build up the report I select fields also from several info types.
    Next is to execute the report.
    When I get the result list it is several lines for each person.  I may look like one line is displayed for each info type (included in the infoset) that the person has info in.
    This is even that I have build up my report with only line.
    Content is more or less the same on all lines for the person.
    How can get only one line for each person?  Even when I select info from several info types.
    Best regards
    Tom

    HI,
    check the infotypes used in the infoset with ONE personnel number that gives you several line items.
    There must be some infotypes where there is more than one data record stored for one personnel number (eg many infotypes have time dependent entries (begin-date / end-date) thus moe than one entry exists for the same personnel number if tthere are more begin / end time intervals.
    If you have identified the infotypes causing the multiple line items, define your selectioncriteria in a way that only ONE record is selected.
    best regards, Christian

  • QuickView: How can I change the default full screen width of PDFs and JPGs

    Hello,
    I am very happy with the changes on the new OSX Lion.  But I have a disappointment form QuickView.  On Snow Leopard I will hit the "Option+Space" to QuickView files (mostly pdf and jpg) on full width and just scroll up and down with the mouse or the arrow keys.  Now in Lion, when I press "Option+Space" I get the file on full height.  This does not work for me because the information on screen is too small and I end up having to open the file on Preview.
    How can I change this settings so they are like on Snow Leopard?
    Thanks in advance.

    Not only can you set global values for each of the three columns, but you can also set unique column widths on a per community basis like this:
    .ptCommunity-1234 .columnOne { width: 635px; border-right:1px solid #CCCCCC; padding-top: 10px; padding-right: 20px; }
    .ptCommunity-1234 .columnTwo { width: 240px; padding-top: 10px; padding-left: 8px;}
    You can see here my community #1234 has a wide first column and a more narrow column two and even puts a little solid line between them.
    It's all in the stylesheets on your imageserver at the path I mentioned earlier. Again, look at the experience definition object in your admin portal and look at the stylesheet name in the dropbox. The stylesheet name you see is mapped to the .css file using the community-themes.txt file in the same ...yadayada/common/public/css folder on the imageserver.
    If you have, lets say, a mainstyle1-en.css that only has about a dozen lines dictating only the few items you mentioned before - then it has been stripped at one time because the default that comes w/ an original install is huge and a great starting point. It even has style tips and snippets in comment blocks to tutor you through its gargantuan variety of options.

  • Quickview displays wrong "time" format of Excel document

    Here's an odd one. I have an excel document that has a row who's number format is time. Data entered and save the document. Look at the document in the finder under quickview and all the times are +3 hours. This happens in both Excel 2004 and 2008. It also happens on both my Powerbook and G5 tower. Both PPC. Both 10.5.1
    Can anyone re-create this, or is it just me?
    Stacy

    Hi,
    There is no error from the CRM functionality. If you SAVE the excel,instead of opening it directly and then " open with "
    word pad or notepad, you can see the phone no.s and fax no.s are properly transported to excel.There is a default format setting of
    excel from the Microsoft, so you are getting the default format after opening the excel.
    Steps:
    1.Export to excel.
    2.Choose the BP,PHONE and FAX columns holding the 'CTRL'key.
    3.Right click on the chosen columns and choose "format cells".
    4.Under the tab "number" choose 'number' and and reduce the decimal
    place to '0' and click "OK".
    5.Now you will be able to see the expected format.
    If you are using IE then the excel file that is being generated should be an XML file which would help with the formating issue. But when there is a problem in the generation of the XML file a CSV file is created instead.
    The kind of problems that can cause this could be :
    - Wrong version of Excel (professional needed)
    - Error in encoding (note 1560243 corrects this)
    - Active X Settings on browser are not properly setup or disabled
    - Other problems (some fixed in note 1457261)
    I hope this helps.
    Br,
    Lloyd

Maybe you are looking for

  • Lion and "powerPC applications no longer supported" with hp Office jet printer

    I have an HP office jet 5510 all in one printer that is no longer compatible with my recent installation of Lion.  The "powerPC applications are no longer supported" prompt comes up when I try to open the app on my dashboard.  Do I need to buy a new

  • Swing and Skelmir VM

    Hello Everyone, I'm using a proprietary VM (from Skelmir) on a Linux/XScale board, and I'm having problems setting up the proper Swing classes my app needs to use. Has anyone dealt with this issue yet ? Any direction is appreciated. Regards, Andre

  • PANTCH CRUX PIECE OF CRAP......

    This has to be WORST phone i have ever had.  I got this in August of last year 2011  3 DAYS after i got  i was in the store compalining About the duplicate texts messages...  Since then I have had trouble with it powering off. dropping calls. sending

  • Is missing oratab file causing this issue?

    OS Version : AIX 5.3 DB Version : 10g Release 2 I've just finished installing Oracle 10g R2 software(without a starter database). I want to create a database using a CREATE DATABASE script.But when i tried to log in as SYS i got the following error S

  • Disk read error when booting Windows 7 / White screen / Screen frozen

    Hello, I installed Windows 7 and Mac OSx on Dual boot. 1) A problem arose when starting up. Sometimes the screen freezes after i have selected Windows 7 boot on BootCamp. 2) Second problem, when booting the screen is white and doesn't change. 3) Thir