How to get the input screen?

HI friends i have got a problem in displaying the initial screen in screen painter.
in process after input i am having one push button(display) where when i click that push button it has to call  a program for that program i am having one input screen like empid.
I am working like in PAI
when 'display'.
submit <program name>.
Here it is displaying the direct output rather than displaying the initial screen where we have to give the input(empid).
Can anyone give me solution for this.

Hi Venkateswar,
Use the SUBMIT statement with addition
USING SELECTION-SET  to pass the values to the selection screen of the called report. Just press F1 on submit. It will show various additions. U can use any one which suites ur requirement.
Thanks,
Vinod.

Similar Messages

  • How to get the input details on the output screen in T code KCR0

    Hi All,
    How to get the input details on the output screen in T code KCR0, the issue is that we need to get the input details like Company code and payment date on the output screen while executing the report painter via t code KCR0.
    I tried to chane the settings via t code KCR6 but still didn't get the required output details.
    Regards,
    Ajay

    This is the asset accounting forum.  You should post your question in the proper forum.

  • How to Get the Debugger Screen in WEB Front end of SRM

    Hi Gurus,
    I have couple of questions for SRM.
    1. How to Get the Debugger Screen in WEB Front end of SRM so i can debug the application which is running in EBP system??
    2. How to set the flag for external debugging (HTTP)??
    3. Using SICF how to set the ITS services ( Like BBPSC01 )for internal ITS so as soon as i place the order it should stop at the break point which i have set in the application.
    Thanks.
    Regards,
    Manoj Tiwari

    Setting up Debugging for Integrated ITS
    Tcode SICF.
    Select service (e.g. default_hostàbcàguiàsapàitsàbbpsc01).
    Change service settings and insert parameter ~GENERATEDYNDPRO=1.
    Find program to debug. E.g. SE93. Enter bbpsc01 à Display and get Program field (SAPLBBP_SC_UI_ITS)
    Execute SE38 and enter program name.
    Turn HTTP Debugging ON. UtilitiesàSettingsàDebugging. Click Actv and username.
    Add HTTP Breakpoint. Display source code and select Utilitiesàbreakpointsàset.
    On “External Debugging” select ‘HTTP Breakpoint’.
    Remember to remove breakpoints, deactivate debugging and remove parameter GENERATEDYNPRO.
    Can run program RSBREAKPOINTS to find which programs you have breakpoints set in.
    Have fun with EBP
    If you have any more questions i would be happy to help you. Send me mail on [email protected]

  • How to get the actual screen size

    Hi,
    I have to get the actual screen size of the cliend in an applet, if i use method
    Dimension dmx = Toolkit.getDefaultToolkit().getScreenSize();
    it does not gives the actual screen size, like the screen size will be different if the application bar ( where we have start button on windows ) is Auto hide, and will be different it is not Auto Hide, or some users ike to keep the application bar on right or left of screen or on top..
    So how do we get the actual display size of screen

    Hi,
    I got how to do if using applet
    in screen object of java script we have methods to get the available width and availabe size
    screen.availWidth
    screen.availHeight
    here is the link for more info
    http://developer.netscape.com/docs/manuals/js/client/jsref/screen.htm
    http://forum.java.sun.com/thread.jsp?thread=275329&forum=57&message=1063410

  • How to get the input value as a columns headings of the kye figer

    Dear all,
    the senario is i have keyfiger heading like DESPATCHES MADE ON (0CALDAY) and CUMMULATIVE DESPATCHES FOR (0CALMONTH), the 0CALDAY is the input value of the report. so how to get the value of the 0CALDAY and 0CALMONTH in the heading name of the key figer.
    I really appreciate for any help on this.
    wil assign pts for sure...
    thanks
    regards
    Mohan

    Dear  Venkat Ambati,Sumit Singn,Masi dandavate,
    thanks for reply.....
    ya got u r value able inputs but i don't no how to get the variable value to the column heading, if u guy's having any doc's means plz send me the same, my mail id is <u><i>[email protected]</i></u> or <i><u>[email protected]</u></i>
    thanks n regards
    Mohan

  • How to get the inputs in different language

    Hi,
    I have a typical scenario in which I have a thin client (web browser).
    And I need to display a word in a input text box, followed by many text boxes for getting the inputs from the user in different languages.
    But I am not sure about getting the inputs from the user in different languages in the same screen and update the same in the database.
    If you have idea about the same. Please share it accross.
    Thanks
    Karthick

    Hi One_Dane
    I'm trying to bring a hindi text from one jsp to another. As i've installed all the IME n stuff, I'm able to get the display in hindi whenever i'm typing something in my textbox . But the same text is not displayed in hindi when i'm doing a request.getParameter() on that textbox.
    I tried printing the UTF-8 unicode charsets like
    "\\u0904\\u0904\\u0904". This does print fine. I can see the hindi appearing in these kinds of text. Also i tried out converting them to code points n stuff, and it works fine. Infact all the values that are not coming up from the request parameter are working fine.
    So i concluded that in the previous page where-in i'm giving the inputs, probably they might not be wrapped up in the UTF-8 charset. But i've specified the charsets to be UTF-8 in the meta info for both the pages.
    Kindly help regarding what might be the issue. Please tell if i missed out any point while explaning.
    thanx in advance
    Nagraj

  • How to get the input data on the arbitrary draw event ?

    Hi all,
    I'm trying to draw a histogram on a arbitrary parameter (just like the "Levels" effect). The draw part is well, but I have a problem with the input layer data (param[0]).
    All I have to do now is read the input data on the arbitrary draw event. But there's not the input pointer on the draw event. So I called the PF_CHECKOUT_PARAM() function to get the input data, and it works!
    When I test in AE, I created a layer A, and added some color correction effects to the layer A before added my effect to the layer A. The problem is the input layer my effect read is not the result of previous effects I applied before.
    Has anyway to read the latest input data in the arbitrary events ?
    Thanks.

    Hi shachar, nice to meet you!
    In another way, I created a sequence data like this:
    typedef struct {
        bool didRender;
        <some histogram data>;
    } Histogram;
    typedef struct {
        Histogram*  histograms;
    } my_sequence_data, *my_sequence_dataP, **my_sequence_dataH;
    my_sequence_data.histograms is an array with in_data->total_time / in_data->time_step items initialized during the sequence setup.
    During the render call, I cached  the calculated histogram at this current_time to the sequence->histograms[in_data->current_time / in_data->time_step], set the didRender = true.
    In this way, I have another problem with the AE cached image. I disabled a random previous effect on the effect panel, then the AE re-rendered my effect, the histogram changed (good). I enabled the effect again, and nothing change (bad )
    I try to force the AE re-rendering after the custom UI changed ( I tried with the event_extraP->evt_out_flags = PF_EO_HANDLED_EVENT; and params[HISTOGRAM_UI]->uu.change_flags |= PF_ChangeFlag_CHANGED_VALUE; on the click, drag events...) but it seem not works!
    Am I on the right way ?
    Thank you so much!

  • How to get the input payload passed to the BPEL Process using java.

    Hi all,
    I am working on an application in which, if some fault occurs in the flow I need to insert the input payload that is being sent to the BPEL process into a Queue using Java. I have gone through the FaultHandling framework and failed to find the method by which we can get the input payload. Can someone kindly help me in getting the input payload. using the java.
    Regards

    Hi,
    Use method getVariableData with your input variable.
    Object getVariableData(String name, String part, String query)
    For example: getVariableData("input", "payload", "/");
    http://docs.oracle.com/cd/E17904_01/integration.1111/e10224/bp_java.htm
    Cheers,
    Vlad

  • How to get the latest screen value (of input field in VA01)

    Hi Experts,
    I have a problem that when I am in VA01 (create sales orders) I see the (old) default value of the Req.Deliv.Date
    (in Item Overview tab). I don't see the latest entered value.
    This is screen field RV45A-KETDAT.
    Eg When I enter VA01, I first enter the order type.
    In the next screen you will see that the Req.Deliv.Date has already an intial value (current date).
    Now when I change this field to Nov 14 2011, I will still see the delault current date (in PAI).
    Only much later, the program will adopt the new value (but this is too late for me).
    (I actually need the value in FM SD_PARTNER_ABLAD_SELECTION)
    How come and how can I retrieve the latest value?
    (I already tried FM DYNP_VALUES_READ but this didn't help)
    Please advice.
    Thanks very much!
    Guido

    Did you try DYNP_VALUES_READ like this
          PERFORM DYNP_VALUES_READ USING 'SAPMV45A'
                                   '4001'
                                    'RV45A-KETDAT'
                           CHANGING RV45A-KETDAT
                                    SY-SUBRC.
    try writing this where you need your values. This oerform already exists in VA01 code and is used in teh PAi for another field. So just try callign this with these values and see if it helps.

  • How to get the input values when create shpping cart(FPM_OIF_COMPONENT)?

    We want to remote other applications when create a new SC(neither ordered nor saved).
    We must transport the screen data which entired by users.
    Do you have a methord to get the screen value of SC in the FPM component FPM_OIF_COMPONENT?
    Thank you very much!
    I am looking forward to your reply!

    Solved,use the BADI BBP_DOC_CHANGE_BADI

  • Does anyone know how to get the notification screen in iOS 7 to show the weather?  Not showing on my phone, and the weather app doesn't show in the notification dialog.

    I am not seeing the weather in the notifications for 'today'.  The weather app doesn't show up in the notifications dialog either.  What to do?

    Pappasbike wrote:
    First make sure that Weather is listed in Notification Center, mine is a the very end of the list. If it's not go below to the Do Not Include list and see if it's there. If it is manually turn it on to appear in the main list.
    Now when I swipe down from the home screen I get the date and any Today events, and below that a weather forecast stating the high and low for the day. If none of that is showing try shutting down and restarting your phone and see if that appears also make sure the Weather app is on one of your home screens, launch it from there and that alone may set everything up.
    The weather app is just not listed.  I did a soft reset, no improvement.  I'm at a loss for anything else to try.  Since the app is a system app, I can't delete and reload it.
    This is hardly an earthshattering problem, but it bugs me.

  • My touch screen isn't working so I can't use my iPad.any ideas how to get the touch screen working again?

    My son has done something to his ipad2 and now his touch screen does not work so he can't get from the lock screen as the screen isn't responding to touch. Any idea I can't even switch it off to restart.

    Try a Reset...
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    If no joy... Try a Restore...
    1: Connect the device to your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the steps in this article to force the device into recovery mode.
    From Here
    Unresponsive iPad
    http://support.apple.com/kb/TS3281

  • CProjects - How to get the logon screen?

    Hello!
    I've started the cProjects Web-Dynpro Application in our future production system for the first time. The strange thing is that the logon screen doesn't appear (I've got "logged in" as Anonymous ), althougth in development system the logon screen appears and works!
    I use the SICF-Path /default_host/sap/bc/webdynpro/sap/cprojects; login procedure is in both systems 'Standard' with no logon data.
    I appreciate any advice!
    Regards
    Wolfgang

    Hi Neil!
    In this case a SAP-user account was definied in the logon data section of the root SICF-node 'default_host'. This overruled the logon data configuration of the cprojects node. So check if a superior node of cprojects contains logon data!
    Regards
    Wolfgang

  • On an Ipod 4th Gen, I get a blank screen in the apple apps screen.  Any suggestions on how to get the blank screen off?

    On the app store app, I only get a blank/white screen.  If I search for an app, nothing happens, only the blank/white screen.  Does anyone have any suggestions on how to fix this?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • How to get the connected screen off when connected

    When I connect my iPod nano (4th gen - I believe) to both my car (through the AUX jack with a USB cord) and to my computer, the screen that says "Connected Eject before disconnecting" comes up and won't go away - even after it syncs and everything. In the car, it will plays some music but since I can't see my screen or any of my playlists I can't change the song or anything from the iPod. On the computer, I can click the eject button and the screen goes away and all if fine except that it obviously isn't connected and then won't sync. When the iPod isn't connected to the computer or the car it works fine. HELP!

        Hello, ghost3947-
    I am sure this would be quite frustrating! Let's take a look at that! Please ensure there is no debris in the HDMI port on the device. If dust, lint, etc get in that port, it can cause these sort of glitches. After you verify the port is clear, and it continues, please move on to a factory hard reset (http://tinyurl.com/9bgrztr) to resolve the concern. After the reset, the phone will walk you through activation and signing back into Google services. Keep me posted!
    Thanks,
    AdamE_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Adobe Creative Cloud will not uninstall

    I bought a new macbook last week, so I used the Migration Assistant to transfer all my stuff from my old macbook to my new one. Now, Adobe Creative Cloud doesn't work and neither does Photoshop CC. (Photoshop CC is a free trial) 1. Everytime I turn o

  • Exprees document update was terminated received from author "laxman"in miro

    Hi MM experts My user trying to create invoice wth reference po no  in miro t.code during saving system showing error Exprees document update was terminated received from author "laxman"i have checked in transaction OMRJ t.code ,there is  no overlap

  • Won't display image

    Hi, I've been trying to get this code to show an image for quite some time and just don't understand why it isn't. I run the program and it just shows a black square on my marker. Is there something wrong with it? package {     import flash.display.B

  • How can I make new Pages the default without deleting old Pages

    I have installed the new Pages, but all my mac keeps trying to open stuff in the old Pages, even though the new Pages is set to the default.

  • Travel & expenses: Remove User settings option

    Hi, we have implemented Travel & Expense module in Portal using ABAP web dynpro. We are at EP 7.0 EHp2. Navigation : ESS -> Travel & expenses -> My Trips and Expenses Here If the User perform Right Click option then he get the option for : " User set