Debugging and preview screen

Hello Gurus,
While I am debugging a report, is it possible to view the window that is building or the alv that is showing step by step according I am debugging the report?
Thanks for your help.

Hello Enrique,
Yes, you can see what is in the internal table before it is passed over for output.
Just identify what internal table is passed to output.
( Attach the source code, then we will help in identifying the internal table.)
If the report is using the function module REUSE_ALV_GRID_DISPLAY, check what is assigned to t_outtab.
If the method SET_TABLE_FOR_FIRST_DISPLAY is used, then check what is assigned to it_outtab.
Assigned to any of the above is the internal table you can view in debug mode.
Cheers,
John.

Similar Messages

  • Text in layout and preview screens are different and CSS changes are not registering

    I am new to designing web sites and I am using GoLive CS. Things have been going pretty smoothly, but now I have noticed a problem. When laying out my site pages, I am having problems with the text. I have inserted a layout text box and created a general CSS for my main content.
    I have selected 11 px for my font size and 14 px for my line height. But when I make any changes to these values, the chages appear in my layout view, but when I preview the spacing is off (the line height is extremely tight). Why is this and how can I fix it? Also no matter what text I type, the layout view and the preview view are always off, is there any way to fix this?

    Hi Kim - layout view is there just to give you an approximation of where things are in your layout, not a reliable representation of how it will be rendered in the browser. Actually, same goes for Preview. In your layout/design, you have to allow for some variance in font size and presentation since the site will be viewed on multiple platforms, browsers, environments, etc. You can get close by specifying font and line height in pixels, as you have, but it's still just "close".
    If your layout relies heavily on absolutely positioned elements (Layers, Grids, etc.) then this can become a problem... one of the big reasons to avoid both.

  • Normal and Preview toggle?

    Is there a keyboard toggle between (View/Screen mode) Normal and Preview
    screen modes?
    Dan

    -- although you can redefine it to just about anything you want, to prevent 'w's appearing all over your texts. Look at the bottom of the Edit menu, there's an extensive Keyboard Shortcuts option.

  • Camera video preview - Random crashes and green screens

    Hello everyone,
    I am currently working on a Windows Phone 8.1 app and I need to preview video from the phone's back camera. For quite some time I've been struggling with random crashes and green screens. When these green screens appear, all camera apps become affected and
    the device needs to be restarted. Occasionally the phone freezes and only recovers after battery removal. I test the app on my Lumia 620.
    After some web search, I found references to the same problem by many users/developers of different apps. I'm really frustrated as I've tried many possible solutions with no avail.
    Here is part of my code:
    //in App.xaml.cs:
    MediaCaptureInitializationSettings settings;
    public static MediaCapture captureMgr;
    public static bool UnableToInitializeCamera = false;
    public async Task InitializeVideoCapture()
    DeviceInformation backWebcam = await GetCameraDeviceInfoAsync(Windows.Devices.Enumeration.Panel.Back);
    if(captureMgr!=null) captureMgr.Dispose();
    captureMgr = new MediaCapture();
    settings = new MediaCaptureInitializationSettings();
    settings.StreamingCaptureMode = StreamingCaptureMode.Video;
    settings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
    settings.AudioDeviceId = "";
    if (backWebcam != null)
    settings.VideoDeviceId = backWebcam.Id;
    else
    var _messageDialog = new MessageDialog("Back panel camera not found");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    try
    await captureMgr.InitializeAsync(settings);
    captureMgr.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    UnableToInitializeCamera = false;
    catch
    UnableToInitializeCamera = true;
    Debug.WriteLine("HANDLED EXCEPTION: camera could not be initialized");
    var _messageDialog = new MessageDialog("Unable to initialize camera");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    protected override async void OnLaunched(LaunchActivatedEventArgs e)
    //.... other app initialization code
    await InitializeVideoCapture();
    Window.Current.Activate();
    private async void OnResuming(object sender, object e)
    AppIsResuming = true;
    FinishedCameraInitialize = false;
    await Task.Delay(TimeSpan.FromSeconds(0.5));//this makes crashes less frequent
    await InitializeVideoCapture();
    FinishedCameraInitialize = true;
    if(WasPreviewingCamera)
    WasPreviewingCamera = false; //the following line allows time for SetupPage._captureElement to be assigned before video preview starts while (!SetupPage.CaptureElementSourceAssigned) await Task.Delay(TimeSpan.FromMilliseconds(1));
    SetupPage.CaptureElementSourceAssigned = false;
    try
    Debug.WriteLine("trying to restart video preview");
    await captureMgr.StartPreviewAsync();
    SetupPage.PreviewingCamera = true;
    catch
    Debug.WriteLine("HANDLED EXCEPTION: unable to start previewing");
    SetupPage.PreviewingCamera = false;
    GC.Collect();
    AppIsResuming = false;
    private async void OnSuspending(object sender, SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    while (AppIsResuming) await Task.Delay(TimeSpan.FromMilliseconds(1));//prevents crash when app is suspended right after it is resumed
    await CleanupCaptureResources();
    TimeOfLastSuspend = DateTime.Now;
    FinishedCameraInitialize = false;
    GC.Collect();
    deferral.Complete();
    public async Task CleanupCaptureResources()
    if (SetupPage.PreviewingCamera)
    await captureMgr.StopPreviewAsync();
    WasPreviewingCamera = true;
    SetupPage.PreviewingCamera = false;
    else WasPreviewingCamera = false;
    if (captureMgr != null) captureMgr.Dispose();
    //in SetupPage.xaml.cs
    void OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    _captureElement.Source = null;
    CaptureElementSourceAssigned = false;
    GC.Collect();
    deferral.Complete();
    private async void OnResuming(object sender, object e)
    ProgressRing2.Visibility = Visibility.Visible;
    ProgressRing2.IsActive = true;
    while (!App.FinishedCameraInitialize) await Task.Delay(TimeSpan.FromMilliseconds(1));
    App.FinishedCameraInitialize = false;
    captureElement.Source = App.captureMgr;
    CaptureElementSourceAssigned = true;
    GC.Collect();
    ProgressRing2.Visibility = Visibility.Collapsed;
    ProgressRing2.IsActive = false;
    Any help towards a solution will be greatly appreciated.
    Thank you

    I will also advice that you start by following the
    Windows Store app sample.
    Is this a Windows Phone app?
    The crash/green screen only manifests itself when I suspend my app and switch to the default camera app (could be any other camera app perhaps). It happens roughly 1 out of 8 times. That's why I posted the suspension and resuming handlers, which I wrote
    according to the msdn instructions.
    I found
    this page with a sample that demonstrates the MediaCapture API for Windows Phone. Some developers have reported problems similar as mine. Has Microsoft dealt with this issue?
    I've spent quite a few weeks trying to investigate this problem, without actually knowing if it is my code that needs to be debugged. That's why I'm asking if other developers are facing similar problems.
    Thank you
    Edit: It seems that the crash/green screen can appear when suspending/switching to any app (regardless if it uses the camera or not). Also, all works fine when the app is running on the debugger.

  • I want to uninstall Acrobat reader. I got support in the community to access my HD and to send to trash the internet plugs in for PDF viewer, but when I try to download a PDF from internet a black screen appears and preview doesn't open

    I want to uninstall Acrobat reader. I got support in the community to access my HD and to send to trash the internet plugs in for PDF viewer, but when I try to download a PDF from internet a black screen appears and preview doesn't open

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • How to get the preview and edit screen on the same size?

    Hi!
    I have a question about Adobe Premiere Pro cs6. When I import a video, the size is normal in the preview screen (the actual video's size), but when I insert it into the edit screen, it zooms in a little bit and I don't see everything in the video.
    Though my settings are 'fit' and '1/2' for the preview window and also 'fit' and '1/2' for the edit window.
    Does anyone what could be wrong? Or does anyone know how I can reset the settings to the factory defaults?
    Thanks in advance,
    Lotte

    When I drag clips from source to timeline, they automatically are zoomed in. What do I do?

  • Imove preview and full screen will not playback on one of my monitors

    I have two 23" Apple Monitors, I can view all the videos on one, i.e. thumbs and preview. However if I move to the other screen, I lost the preview, It's black and mirrors the menu bars if you pull them down. I have a powerful mac, also with two Graphic Graphics in, installed by Apple. Can anyone help, if you can understand the above.

    Thank you so very much, I didn't know what to do,  I could not return it to Amazon as I was just past the 60 days and I only used it for a total of 5 hours... THANK YOU

  • Preview screen and all black turned to green

    Hello, so far I've been more than happy with my Adobe production suite. However today something funky is going on. I have a new macbook pro running lion, and have made several videos successfully. I'm currently traveling and opened my laptop in the airport terminal to do some editing and first noticed the default preview screen was green, when it's normally black. I started to play through some video and the darkest sports were also turning green. All black turned green. This hasn't happened before. Did my computer get bumped too hard or is this something fixable? If chicago-o'hare offered free internet id post a screen shot.. ill try when I get home. Any leads on this matter would be greatly appreciated!
    Thanks!

    This is the Premiere Elements forum.
    The Adobe Production Suite would be discussed on this forum.
    http://forums.adobe.com/community/premiere

  • Crashing and preview problems

    Hi Folks,
    I had purchased the Premire Elements 8 pack a month ago and I find myself struggling with it on a daily basis and I will appreciate your help.
    H/W Environment: Windows 7 Ultimate (32 bit), Intel Core Duo CPU T8100 2.1 GHz, 4GB RAM, 120GB free on my HDD
    S/W Environment: Premiere elements 8.0 + Photosop 8.0 Elements + ProDAD plugins
    Error message:  "Sorry, a serious error has occurred that requires Adobe Premiere Elements to shut down"
    Problem description:
    1) While working with the Premiere Elements 8, (even without ProDAD plugins) the system crushes again and again and its almost impossible to with it.
    2) If I am lucky and I managed to create a basic project (few pictures with ProDAD transition effects) the Premiere is unable to run a preview show, the time bar is moving forward but the preview screen is freezing. in order to overcome this issue I had to save the project as a clip and than evaluate it.
    3) Saving the project as a solution for #2 is taking approximatly 1.5 hour.
    Thanks in advance,
    Ofer

    Hi Steve,
    1) I am using SONY Handycam DCR-SX30E and the video format is .mpg
    2) I turned off the program's intrusive background processes and install the latest updates as you recommended.
    Unfortunately the problem was not resolved.
    I would like to emphasize that the problem that I am facing is not related to video at all, its happening even without any video (only jpg files)
    After all the updates:
    I created a small project contain of 10 jpg files( 3.5 MB each), NO video in it
    I added 6 transition effects (Premiere effects) and 3 transition effects by ProDAD Adorage plugin
    While trying to see the preview clip some transitions didnt appear at all
    I tried to save the project as AVI like I used to do, the project couldn't complete the saving process An Error popup indicate that an "Error compiling movie. unknown error. "
    After closing the Premiere completely and after several attempts I managed to save the file on my PC as an AVI format (it took 20 min to complete the process), but the result was an AVI with partial data on it ( only with the first effect and first jpg)
    I would like to mention also that the main problem was not resolved and I am still facing severe crushes very frequently.
    Regards,
    Ofer

  • Video not showing up in preview screen on iMovie & Photobooth not working

    Its like all of a sudden a bunch of video programs on my Mac have stopped going.
    I am running OSX Lion 10.7.3
    I have recently installed Elgato Video Capture and have been recording old VHS tapes and editing in iMovie. Was having no problems at first. Then the picture in the preview screen disappeared, the sound was still going, then that went too. I am wondering if Elgato video capture has something to do with it..
    When I go to old videos, they play fine.
    I also noticed the camera wont load in photobooth anymore.
    If anyone has any information on this or knows how to fix it, that would be great! Thanks

    Had same problem on iPad. Go to settings. Look under privacy. Make sure you turn on iMovie under the photos heading. Might also need to enable location services for iMovie. Now I can see camera roll from iMovie.

  • How do I create custom field in MDM shopping cart preview screen (srm-mdm)

    Hi
    Am on SRM 5.0 MDM 2.0.
    Requirement is 'temp labor'. i have a price form a specific supplier for a specific service is $80 in SRM_MDM internal catalog.
    But i talked to supplier and they have agreed on a new price of $75. After I select this catalog item, and view the shopping cart preview screen i see "Price information and total price". I want to add a custom field to the shopping cart preview screen called "new price" to enter $75 as the new price and click recalculate to recalculate the new total price and send this to SRM for follow on functions...
    is there standard functionality in SRM7 for this requirement?
    cheers
    alex
    Edited by: Alex Waiyaki on Jul 23, 2010 10:04 PM
    Edited by: Alex Waiyaki on Jul 24, 2010 2:51 AM

    I have resolved the issue
    thanks
    alex

  • Running Safari 6.0.3  When trying to print files using Adobe Reader 11.0.02, print preview screen is all black.  If files are attached to an email, receiver can't open it.  It does work OK in Firefox 19.0.2  Any ideas?

    Running Safari 6.0.3  When trying to print files using Adobe Reader 11.0.02, print preview screen is all black.  If files are attached to an email, receiver can't open it.  It does work OK in Firefox 19.0.2  Any ideas?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Safari 7.0.6, using Adobe Acrobat 11.0.10, aren't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Safari 7.0.6, using Adobe Acrobat 11.0.10, isn't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Figured it out.  It had nothing to do with the software levels of Safari or Adobe Acrobat.  Here's the fix:
    Open Finder/Applications
    Search "Internet Plug-Ins"
    Move any Adobe plug-ins to the trash
    Quit Safari
    Launch Safari
    Your pdf document should now render in Print Preview and print properly.

  • Eprocurement Requisition upon "save and preview Approval"

    Hi,
    We have implemented eprocurement module 9.0 ver and found a strange problem.
    After creating a requisition,while we click the button -"Save and preview Approvals" it shows the approval path.
    If we happen to edit the requisition twice or thrice and again click the button-"Save and preview Approvals" its not showing the approval path.
    would like to know:
    1>if the changes to the requisition are saved ?
    2>Why is there no approval path on clicking button--"Save and preview Approvals" after we edit a requisition more than twice ?
    is it a delivered bug?
    Thanks.

    No problem Niesa. When you do get permission to post a screen image use the camera toolbar icon as indicated below. It is much quicker as the attachment method has to be moderated before we can see it.
    Incidently we found that the only way around this was to rearrange the content inside the d-d.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.

  • How do i create a custom field in SRM_MDM shopping cart preview screen

    Hi
    I on SRM 5.0 MDM 2.0.
    Requirement is 'temp labor'. i have a price form a speciific supplier for specific service is $80 in SRM_MDM catalog.
    But i talked to supplier and they have agreed on a new price of $75. After I select this catalog item, and view the shopping cart preview screen i see "Price information and total price". I want to add a custom field to the shopping cart preview screen called "new price" to enter $75 as the new price and click recalculate to recalulate the new total price and send this to SRM for follow on functions...
    is there standard functionality in SRM7 for this requirement?
    cheers
    alex

    Hi Alex.
    I totally agree with Sudhanshu's comments. If you create a custom specific field it will always be a read-only.  you can also use EForm for such usecases. Also in case of SRM-MDM Scenario, the price information field holds a standard behaviour which can't be manipulate for custom specific fields.
    But if you want to achive this through the exisitng repository schema and the BADI. then you can follow the steps given below:
    1. If you want to hold the value for the new price, you can create a new custom field (New Price)of type "Text" in the repository and store the price information in that field.
    2. In the configuration screen, you can add the "New Price" to all the views(Result Set, Shopping Cart Preview etc).
    3. In the "Shopping Cart Preview", now you can view the existing standard price information column and the newly created "New Price" column. Now you can change the quantity based on your need. Now when you click "Recalculate"  button the standard price column will change and not the "New Price" column.
    4. Now you can map this newly created field to any of the custom fields which were provided by default. (like NEW_ITEM-CUSTFIELD1).
    5. You can make use of the BADI   BBP_CATALOG_TRANSFER to perform the remaining calculations.
    6. The BADI will hold all the catalog related data in its OCI structure. Before transferring the data to shopping cart you can modify it by multiplying the quantity with the "New Price" value and send the updated price in the OCI standard structure "NEW_ITEM_PRICE".
    Now SRM shopping cart will hold the updated "New Price" for the item shopped through catalog.
    Let me know in case you need more information.
    Regards
    Bala

Maybe you are looking for

  • Logic goes crash when i play El Piano Scarbee R.S.P. '73 on EXS24

    Hi! My problem is - "Logic Pro unexpectedly quit" when i start play Scarbee R.S.P. '73 on EXS24 But there is one thing strange ! All work fine when i just playing on my midi contrllr Logic go crash when i hold keys for about 6-8 seconds Exeption:EXCB

  • Removing Attachments in iChat Transcripts

    I am using iChat to save transcripts of my conversations. I got a 150MB file transfer from a friend today, and I would like to keep the conversation without the file attachment. I don't mind hand editing the file if it comes to that, but I want to ge

  • Query to solve

    I have employee table and salary table. Employee table Empno ename 101 a 102 b 103 c Salary table empno salary ename 101 50000 102 60000 103 40000 Now i want to update ename in salary table.Ename should be ename of employee table for the correspondin

  • Disable autostart of middle tier whily patching OAS

    Hi, I have an OAS installation of 10gR2(10.1.2.0.2) with Bussiness Intelligence Middle Tier and ready to install patch 5983622 10g Release 2 Patch Set 3 (10.1.2.3.0). The readme says that only the database, listener and infrastructure should be runni

  • No Sun One Directory Server Installables at the Sun Site

    Hi All, I'm trying to download Sun One Directory 5.2 for LINUX box. But in the download link http://www.sun.com/download/products.xml?id=3ee79e69 it says Sorry, no download available now, please contact the administrator. Does anyone knows from where