How to view interactive demandplanning screen when a planning bookisdeleted

hi
i am new to sap scm/apo,learning stage.
while practicing i just deleted the planning book which i created.
when i returned back to //SDP94-interactive demand planning screen....its saying the Planning book does not exist(SERIOUS INTERNAL ERROR ON SELECTION TOOL).
can anybody tell me how to open the interactive demand planning screen again.
thanku
santosh

Santosh,
The system remembers the last book/view you used, and tries to re-open.  You need to assign a new book view to your userid.  This is a config setting, and I will assume you are working in a sandbox or dev client (you should never delete a planning book in a productive client unless you have fully tested the consequences).
Transaction /SAPAPO/SDPPLBK.  Find your userid and make changes accordingly. 
Best Regards,
DB49

Similar Messages

  • TS2755 How can I lock my screen when I'm on the phone? My cheek keeps hitting the mute button.

    How do I lock my screen when I'm on the phone so my cheek dosen't hit the mute button accedently?

    The screen should be automatically locked by the proximity sensor when you put the phone in speaking position. Make sure that there is nothing blocking this sensor (like a case for example).

  • How do I block my screen when I take a call or make a call?

    each time I take a call my ear touches the screen and either places my caller on hold or places them on speaker phone.  How do I block my screen when I take a call or make a call?

    In addition to Teaboy1748's suggestion, do a search in BlackBerry World for an app called TalkLock.
    Cheers.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • LCCS Screenshare-How to view the shared screen?

    Hi all,
                        Im new to LCCS,doing lccs screen sharing application using Flash Builder 4.I have used session.streamManager.maxP2PStreamPublish = 20;    session.streamManager.streamMulticast = true to publish my screen,How can i view the shared screen from another system?Do i need to use the subscriber in another system to view the shared screen?Can anyone plz help me...
    .Thanks in Advance
    Duva

    Hi Duva,
    Have you tried using the Screen Sharing SampleApps? You can download them from our SDK Navigator. Within the "ScreenShareExample" folder has "ScreenSharePublisherExample.mxml" and "ScreenShareSubscriberExample.mxml" which I think might help
    Here is the info from the Readme about these examples:
    ScreenSharePublisherExample:This example shows how to publish one's screen and share with other subscribers in the same room who has its publisherID. When invoke this publisher, Adobe Screen Share Addin will appear and a sharing dialog will pop up for asking which application/view to share.  Upon confirmation,
    both streamID and publisherID will be displayed on the center textfields.  Use the publisherID on the screenshare subscriber to see the screenshare.  (Please verify account information and roomURL before using the publisher)
    ScreenShareSubscriberExample:With right account information and roomURL, this application will connect to the first screen share publisher in the room (you don't need to specify the publisherID).
    Here are some good pages with ScreenSharing info that you might find helpful as well:
    http://learn.adobe.com/wiki/display/lccs/08+Audio%2C+WebCam%2C+and+Screen+Sharing
    http://learn.adobe.com/wiki/display/lccs/8.3+Screen+Sharing
    JG
    LCCS Quality Engineering

  • HT204291 How does one get full screen when using air play on my tv from my iPad,thanks in advance

    How does one get a full screen when using air play on my tv when I'm mirroring,.? Thanks in advance

    The iPad's display is 4:3, so it cannot fill your TV screen, which is 16:9
    The only way is to change your TV settings and stretch the image.

  • Satellite A660-11M how to turn off the screen when I'm downloading?

    i just want to know how to trurn off the screen for save energy and protect the screen,someone tell me please! thanks a lot !

    If you are ready to switch off, put to standby/sleep mode you laptop by pressing alt-F3-F4 or through menu, then I recommend you set in power options "when I close the lid-do nothing". In that case closing the lid will switch off the screen for downloading time.

  • How to display the output screen when I use bdc.

    hey expert,
    I want to display the output screen when i use bdc without using mode 'A'.
    thank you.

    Hi,
    You can go for mode 'E'.. it will display the output screen directly and if there is any error in the transaction you would get that particular screen and you can correct and continue after which you will get the final screen if anything goes fine...
    check this sample code....
    I had a program if you execute below program it automatically creates a new zprogram.
    REPORT  zprogram_create_recording.
    PARAMETER:
      p_prog    TYPE sy-repid OBLIGATORY,
      p_shtxt TYPE repti OBLIGATORY,
      p_pack  TYPE devclass DEFAULT '$tmp'.
    DATA:
      t_bdcdata LIKE
       STANDARD TABLE
             OF bdcdata.
    DATA:
      wa_bdcdata LIKE LINE OF t_bdcdata.
    REFRESH t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-program    =  'SAPLWBABAP'.
    wa_bdcdata-dynpro     =  '0100'.
    wa_bdcdata-dynbegin   =  'X'.
    wa_bdcdata-fnam       =  'RS38M-PROGRAMM'.
    wa_bdcdata-fval       =  p_prog.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam       =  'BDC_OKCODE'.
    wa_bdcdata-fval       =  'NEW'.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-program    =  'SAPLSEDTATTR'.
    wa_bdcdata-dynpro     =  '0200'.
    wa_bdcdata-dynbegin   =  'X'.
    wa_bdcdata-fnam       =  'RS38M-REPTI'.
    wa_bdcdata-fval       =  p_shtxt.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam       =  'TRDIR-SUBC'.
    wa_bdcdata-fval       =  '1'.
    APPEND wa_bdcdata TO t_bdcdata.
    CLEAR wa_bdcdata.
    wa_bdcdata-fnam       =  'BDC_OKCODE'.
    wa_bdcdata-fval       =  'CONT'.
    APPEND wa_bdcdata TO t_bdcdata.
    IF p_pack EQ '$TMP'.
    *local object
      CLEAR wa_bdcdata.
      wa_bdcdata-program    =  'SAPLSTRD'.
      wa_bdcdata-dynpro     =  '0100'.
      wa_bdcdata-dynbegin   =  'X'.
      wa_bdcdata-fnam       =  'KO007-L_DEVCLASS'.
      wa_bdcdata-fval       =  ' '.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'BDC_OKCODE'.
      wa_bdcdata-fval       =  'TEMP'.
      APPEND wa_bdcdata TO t_bdcdata.
    ELSE.
    *package assignment with request
      CLEAR wa_bdcdata.
      wa_bdcdata-program    =  'SAPLSTRD'.
      wa_bdcdata-dynpro     =  '0100'.
      wa_bdcdata-dynbegin   =  'X'.
      wa_bdcdata-fnam       =  'KO007-L_DEVCLASS'.
      wa_bdcdata-fval       =  p_pack.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'BDC_OKCODE'.
      wa_bdcdata-fval       =  'ADD'.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-program    =  'SAPLSTRD'.
      wa_bdcdata-dynpro     =  '0300'.
      wa_bdcdata-dynbegin   =  'X'.
      wa_bdcdata-fnam       =  'KO008-TRKORR'.
      wa_bdcdata-fval       =  ' '.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'KO008-AS4TEXT'.
      wa_bdcdata-fval       =  ' '.
      APPEND wa_bdcdata TO t_bdcdata.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam       =  'BDC_OKCODE'.
      wa_bdcdata-fval       =  'LOCK'.
      APPEND wa_bdcdata TO t_bdcdata.
    ENDIF.                                 " IF P_PACK EQ '$TMP'
    CALL TRANSACTION 'SE38' USING t_bdcdata MODE 'E'.
    Hope this would help you..
    Regards
    Narin Nandivada

  • How to switch off laptop screen when you connect external LCD?

    Hello, being new to Mac I'd like to ask if it is possible to completely switch off the laptop screen when you connect an external LCD screen and use it as your main desktop. My MacBook Pro does that automatically when I launch a full screen game, say World of Warcraft, but I would like to be able to do it manually.

    If you have it connected to a keyboard and mouse, you just shut the lid and use it that way. Of course, I'd be curious why you wouldn't want to use the screen. Having two screens can be extremely useful. The only problem with it is that then you may miss it when you are away from your second screen!

  • How to dismiss Mail Full Screen when composing a new message

    OK, so in iOS you can simply pull down the message you are composing to access your inbox, but how can you do this in Yosemite when using full screen?
    Here is the scenario: I open Mail in Full Screen mode and start composing a message. I middle of it I realize that I need some info from another mail, but I cannot minimize the new message that I am composing or exit full screen mode. My only option is to the cancel the message I am composing and save it as a draft. Surely there has to be something that I am missing? And don't tell me not to use full-screen mode...
    Screenshot attached?

    The work around is to open a New Viewer Window.
    If you want to create a new window in Full Screen, expose the Dock while in Full Screen and select New Viewer Window, then navigate to the email that you need information from. You can then swipe between the the two as you require
    If you don't want the new instance of Mail to be in full screen, first swipe to another desktop and then open a New Viewer Window

  • How to remove/skin white screen when loading StageWebView

    Hello all,
    I'm facing a very tricky issue with StageWebView into a mobile View.
    I'm using this example -> http://soenkerohde.com/2010/11/air-mobile-stagewebview-uicomponent/
    BUT, my application has a black background and when i'm loading an HTML (wich also has a black background) the StageWebView components it's white when loading, and that i dont like.
    On viewActivate handler for StageWebView component i've put the stageWebView.stage = null; and created an event handler.
    The event handler has the command stageWebView.stage = myStage;
    In this way i can show a loader (busy indicator) and when the page is fully loaded in background,it will pop on view.
    When the StageWebView pops in view i get a flashy white screen. I have tested it on Samsung Galaxy S2 (Android).
    How i can get rid of it?
    Any sugestions will help a lot.
    Regards,
    Daniel

    If you are using the Music App (playing music) - and you lock the iPad - As soon as you slide to unlock the iPad - the album cover will disappear. Is this what you are asking?

  • How to view fields on screen but make non-printable?

    I have a text and fillable field that I want to view on screen but not print.  I selected the presence as 'Visible (Screen Only)' but when I print the fields also print.  Any idea how I can make fields in my form both visible on screen but not printable.

    How are you printing the document? If you're printing from the design screen or doing a screenshot, all the fields will show up.

  • Remote app on iPhone to view/control Logic screen when in iso booth?

    When in my recording booth, I can't see my Logic Pro screen that is in my control room.
    I need to be able to see and adjust my mic level to get it right, press record, stop, etc... i.e. just very basic tracking functions.
    I could bring my MacBook Pro into the recording booth, but I don't want the noise of the computer even if it's not that loud.
    Is there an app I could use from my iPhone to view/adjust these basic settings? Any other suggestions?
    Thanks.

    I've been in your situation and here are my experiences.
    For the Iphone I tried ProRemote ( http://www.folabs.com/proremote.html ). Visually, it works well with Logic, and the interface is nice, but it became frustrating trying to control it via the touchscreen while recording.
    Before the ProRemote I tried the MoccaVnc. The redraw was too slow and again it was a pain trying to control it. The screen of the iphone is too small to display what I needed.
    Both are also vulnerable to drops in the wifi connection too.
    The best solution for me was buying the Tranzport ( http://www.frontierdesign.com/Products/TranzPort ). Even though it costs $200 and doesn't display the Logic screen, it's easy to control the parameters you mentioned and the doesn't cause any problems. You can just plug it up and it works.

  • How can I brighten my screen when on the internet?

    Under most usage, the screen on my S III is quite bright.  However, when I go to the internet, the screen brightness dims dramatically and I can barely see the images or text.  I have turned off the auto-brightness, but it doesn't do a thing for my internet screen.  Does everybody else have this problem, or is it just me?  Any ideas how to fix my problem?

    First, make sure you have any available updates by going to Settings->About Phone->Software Updates.  Then, while in the Internet browser (the default one on the Galaxy SIII), hit the Menu button and then click Brightness & Colors.  Uncheck Automatic Brightness, and then you can control the brightness with the slider underneath that.  Also make sure the radio button for "Default" is checked below that.

  • How to view the key mapping when viewing Hierarchy in Data Manager

    Hi! I previously posted a question on doing value mapping using the hierarchy code rather than the name. I have got that working now using concept of remote key. When I first loaded the hierarchy with remote key and check in Data Manager, I can see the hierarchy structure with the key mappings. However, when I subsequently went back to the hierarchy to have a second look, the keys are gone. Does anyone know how I can view hierarchy in Data Manager with the key mappings?
    Cheers!
    SF

    Hi,
    Go to Record mode, and open Hierarchy table. Now to select click on any hierarchy node record and then right click and select "Edit Key Mappings". This will show you existing keys as well as allow you to manually modify keys. You can only Check Remote keys on hierarchy in Record mode and in Hierarchy Mode "Edit Key Mappings" option will be disabled.
    Please revert if you face any issue.
    Regards,
    Shiv

  • How  restet field-content selection-screen when I return to screen 1

    Hi!
    My case!
    0) Abap report pgm with selection-screen fields.
    1) I have a screen where the user send in information in
       X fields.
    2) The content is shown as an ALV list.
    3) Table will be updated.
    4) Return to first screen where screen-output has been
       set to zero. 
    5) <b>HOW DO I CLEAR THE REAL CONTENT OF THEESE FIELDS?
       WHERE CAN I SEE THE CONTENT?</b> When I debug they are ' '.
    Please give me some input. The content is somewhere but I don't know where ...
    Regards Christina

    For example, see this progam,  I enter values in the selection screen, and execute, after displaying the list, I hit Back, and the selection screen comes with no values.
    report zrich_0001.
    parameters: p_chk1 type c,
                p_chk2 type c,
                p_chk3 type c.
    start-of-selection.
      write:/ p_chk1, p_chk2, p_chk3.
      free memory.
    Welcome to SDN!  Please be sure to award points for helpful answers and mark your post as solved when solved completely.  Thanks.
    Regards,
    Rich Heilman

Maybe you are looking for

  • User settings lost

    Hi, I have a user who sets up the Vibe plug in but at several times during the week these settings disappear. Same applies to settings for Filr. The server info and password get removed. Now the user has a local profile which in theory should remembe

  • FlushBuffer Servlet

    is flushBuffer() of HttpServletResponse flush contents of respose to client immedialty when it is called ?. My problem is like this, I am uploading files from an application to a servlet throgh Httpurlconnection. In the servlet i m reading the conten

  • The hoverover actions are not playing back correctly always

    Hello, I am developing manual test scripts using MTM2013. I see that hover over actions doesn't always play back correctly. The application has two levels of hover over levels in the sense i have to click on main hover over link which has multiple ho

  • Video Messages Stored Location in Mac

    I would like to ask, where are the skype video messages under Mac OS X stored? Is there a specific temporary or not folder where skype saves the received and delivered video messages?It would be really helpful if someone knows. Thanks in advance.

  • Deleting unwanted apps after being hacked

    Someone hacked my account and tried to download items. Now those items are in my downloads and I can't delete them. Anyone know how to delete pending downloads? Thanks!