How to supress dialog box in SUBMIT (Program_name) clause

Hello Experts,
statement like this:
SUBMIT RKACOR04  using SELECTION-SET 'TEST' EXPORTING LIST TO MEMORY
              AND RETURN .
but during the process there is a dialog box which prevend automatic processing. is it possible to supress the dialog box via additional clause?
Thanks

Are you sure you want to use this report, it is not intended for a regular/periodic use, this program adjusts total and detail records in CO tables in case of difference
Use RKACOR04 only with support from the SAP Hotline service or from an expert consultant for CO data structures.
also
SAP recommends running the report in the background.
You should correct the cause of dysfunction, and then only run once this report when actually needed, also read the OSS notes on this report.
Regards,
Raymond

Similar Messages

  • How to supress dialog box when calling smartforms and just create a spool..

    Hello Experts,
    I want to supress the dialog box where you can print preview or print your smartforms. What
    I want is to just create a spool file for this one. Think of it as smartforms running in background.
    Thank you guys and take care!

    Hi again Vishwa,
    I modified my code according to your last reply but it still wouldn't work. The dialog still pops up without the print and print preview buttons. Below is my code:
    MOVE 'X'    TO ltyc_control-no_open.
        MOVE 'X'    TO ltyc_control-no_close.
        MOVE 'X'    TO ltyc_control-no_dialog.
        MOVE 'X'    TO ltyc_options-tdnewid.
        MOVE 'X'    TO ltyc_options-tdnoprev.
        MOVE 'X'    TO ltyc_options-tdnoprint.
        MOVE 'LOCL' TO ltyc_options-tddest.
        MOVE space  TO ltyc_options-tdimmed.
        CALL FUNCTION 'SSF_SHOW_DIALOG'
          EXPORTING
    *        ARCHIVE_PARAMETERS         =
            user_settings              = ''
            output_options             = ltyc_options
            control_parameters         = ltyc_control
    *        OK_BUTTON                  = ''
          IMPORTING
    *        E_ARCHIVE_PARAMETERS       =
            e_output_options           = ltyc_options
            e_control_parameters       = ltyc_control
          EXCEPTIONS
            formatting_error           = 1
            internal_error             = 2
            send_error                 = 3
            user_canceled              = 4
            OTHERS                     = 5.
        IF sy-subrc <> 0.
    *      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname                 = lcc_z2574ffi_ra_cimb
    *        VARIANT                  = ' '
    *        DIRECT_CALL              = ' '
          IMPORTING
            fm_name                  = ltyc_function
          EXCEPTIONS
            no_form                  = 1
            no_function_module       = 2
            OTHERS                   = 3.
        IF sy-subrc <> 0.
    *      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL FUNCTION ltyc_function
          EXPORTING
            control_parameters = ltyc_control
            output_options     = ltyc_options
            user_settings      = ''
            im_adrnr           = gtyc_adrnr
            im_name1           = gtyc_name1
            im_name2           = gtyc_name2
            im_str_suppl1      = gtyc_str_suppl1
            im_str_suppl2      = gtyc_str_suppl2
            im_str_suppl3      = gtyc_str_suppl3
            im_post_code1      = gtyc_post_code1
            im_city1           = gtyc_city1
            im_vblnr           = gtyc_vblnr
            im_zaldt           = gtyc_zaldt
            im_swnes           = gtyc_swnes
          TABLES
            im_regup           = gt_regup
          EXCEPTIONS
            formatting_error   = 1
            internal_error     = 2
            send_error         = 3
            user_canceled      = 4
            OTHERS             = 5.
        IF sy-subrc <> 0.
    *      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    Edited by: Viraylab on Nov 26, 2008 10:55 AM

  • How to disabel dialog box in os x

    how to disabel dialog box in os x

    "Network connection is lost" is an iChat stuff, but I still have challenges with Flash AIR...

  • How can a dialog box close itself?

    I have a dialog box which displays a little form for some extra information.  I have some non-standard buttons which are under my control.  The form is created as a view in a window which is launched by CREATE_WINDOW.
    I want the window to be able to close itself.  The concept is easy - get a ref to the window, then call close( ).
    But I cannot find a way to get a reference to the window from inside the window.
    Here is my current solution which I do not like, but it works.
    I create a context node 'POPUP' which has an attribute ME of type ref to if_wd_window.
    When I create the window, I do this:
    lo_window         = lo_window_manager->create_window( ... )
    lr_node = wd_context->get_child_node(   'POPUP'   ).
    lr_node->set_attribute( exporting name  = 'ME'
                                          value = lo_window ).
    lo_window->open( ).
    In the window, it gets ME out of the node, and does a lr_me->close( ).
    But there is a better way, right?  How does a dialog box close itself under program control?
    I should add that the dialog box is displaying a view from a used component, so POPUP is defined in the used component and mapped into the context of the using component. I don't think this changes the problem, though.

    Hi
    Try this following code in method of button you have created for popup i.e  method for example  ok,cancel etc in the view which you have emebedded in ur window for popup.
    Close the popup
      DATA:
        lo_api         TYPE REF TO if_wd_view_controller,
        lo_window_ctlr TYPE REF TO if_wd_window_controller,
        lo_popup       TYPE REF TO if_wd_window.
      lo_api         = wd_this->wd_get_api( ).
      lo_window_ctlr = lo_api->get_embedding_window_ctlr( ).
      lo_popup       = lo_window_ctlr->get_window( ).
      IF lo_popup IS BOUND.
        lo_popup->close( ).
      ENDIF.

  • How to disable dialog box for ending document display

    I have a wf item that has a pdf attachment.  Every time the attachment is opened, a dialog box appears stating:
    1. Switch to the window of your PC application to display the document
    2. Close your document
    3. Press "Continue" in the R/3 window
    I've tracked it back to screen 0300 in LS025002.
    It's only informational and shows up after the attachment has already been opened and closed.
    How do I stop this dialog box from appearing?

    Those little popup boxes are called tooltips and they are programmed into the page. As iBod says, they cannot be disabled.
    There are a couple of things you can do on pages you know have tooltips. There is a time delay of a couple or three seconds before the first tooltip appears. So one way to keep their appearance to a minimum is to make up your mind before you move to an item to click on it and to not hover on items with tooltips for any amount of time. Also, if a series of menus or items all have tooltips, the time delay only exists for the first one. If you immediately move to the next item, the tooltip appears instantaneously. So with such a series, if you move completely off the series, the time delay will be reinstated.

  • How to prevent dialog box asking how to handle PDFs while Protected Mode is disabled?

    Hello,
    So I must be missing a Registry Key setting somewhere or something (I hope).  We have Adobe Acrobat Reader 10.1.4.  When we install Adobe Acrobat Reader we disable Protected Mode due to some issues with it.
    My problem is, when you launch Reader or try to view a PDF embedded in a web page (or anywhere else for that matter) it will pop up a dialog box asking you how to proceed.  You are given three options:
    Open PDFs while Protected Mode is disabled this one time.
    Always open PDFs while Protected Mode is disabled.
    Never open PDFs whle Protected Mode is disabled.
    I need to configure it so that option 2 is how Reader behaves.
    We are a small shop, I have only 4 people on my team (excluding me).  We have over 1500 machines as public kiosks that need to get this configured when 10.1.4 is installed.  Reader is currently out of date in our deployment, apparently because of this issue holding back pushing newer versions.
    If anyone has any ideas I'd love to hear them.  I set it manually and looked at the registry hive for Adobe and didn't see any changes to existing keys or any new keys created so I'm not sure this is something that can be done via the Registry...

    Well, this didn't come up in Google Searches initially and I'm not finding the search feature here at Adobe.com to be very useful.  Actually, I can't even seem to see one for the forums...
    Anyways this seems to cover the issue: http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to- a-problem-with-your-system-configuration/
    Which helps explain why it became a problem for my deployment.  I'm suspecting that its a problem with Kaspersky Anti-Virus 2010 needing to have an exception for AcroRd32.exe.  I hate to do it given its an infection path but we do what we must.  I will update this post once I have verified that this is what the issue is.

  • How to copy dialog box

    Under Safari-Preferences-Passwords, there is a list of my online passwords. How can I copy the contents of that dialog box and paste it into a printed document that I can put away in a safe place?

    That means you cannot copy the information. You could make a screen snapshot of it:
    To post screen shot do this:
    Press COMMAND-SHIFT-4 which will change the cursor to crosshairs.
    Hold down the mouse button and use the crosshairs to select the part of the screen you wish to capture.
    Release the button and the image will be saved to your Desktop.
    Click on the Camera icon in the toolbar of the forum message editor.
    Drag the image onto the Choose File button and click on the Insert button.

  • How to create dialog box in jsp

    I want to call dialog box from jsp.
    how it possible.
    any one give somecode sample

    Hi,
    you can use 'javascript'
    alert
    confirm
    prompt
    --Karthik                                                                                                                                                                                                   

  • How to display dialog boxes

    How do I make dialog boxes to appear in itunes so I can finish my sync?

    sauljaffe wrote:
    Except that the instructions in that article won't work:
    Step 3 says: "When your battery gets low, the low battery warning dialog appears on the screen."
    No such dialog box appeared when the battery got low.
    Step 4 says: "when the battery gets very low, the computer will automatically go to sleep."
    No, the computer shut off completely.  It did not go to sleep.
    Based on steps 5&6 the battery should be "calibrated" when it finishes recharging, no?
    By the way, the "Tip" is wrong too: the computer doesn't go into sleep mode, doesn't save an image, and doesn't restart from that place when the computer is turned on again.
    If you charge it all the way up after it shuts down, that's almost as close to calibrating as you're going to get in your situation. I say "almost" because you can go one step further and let it go without charging overnight (5 hours is the number that I've heard) before charging. Some people have also suggested letting it completely charge before booting it.
    The tip is correct for a properly functioning MBP, OS, and batt (unless this has changed on the newer models), unless you have disabled safe sleep in Terminal.
    All the symptoms you mention are signs of a dying batt (whether due to one or more bad cells, or the on-board microchip).

  • How to supress dialog window "missing fonts"

    Hi, i place a RTF file using scripting. When the RTF uses fonts, which are not available a dialog windows appears "missing font: ... substitute fonts..." and the script stops.
    How can i supress/disable this dialog window?
    Is there are general mechanism to supress dialog windows, when scripts are running?
    Thanks!
    Gerd

    Hi Gerd,
    suppress the message with
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
    But dont't forget to reset the interaction level before finishing the script:
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    Otherwise you will miss some dialogs in future.
    Martin

  • How to supress dialog pop

    Hi,
      I am displaying the error message with pop-up window in 3.1i version from F4 help.The window is not closing properly, when i click on enter button in pop-up  window. Still it is showing with small icon of the
    pop-up.
    Can any body let me know the how to supress pop-up window?
    Regards,
    Suresh KUmar.

    Hi,
    I am not using any "POP UP" function module. Simply using the message "E". As i mentioned in my thread (Using 3.1i version).
    Regards,
    Suresh Kumar.

  • How fix lost dialog box for typing in wanted web site url after installing security update 20110811165603 into Mac OS 10.6 snow leopard today 6.04.2011.

    Today, was prompted to install new security update. Did so. Now when click on + to open new tab the words New Tab appear in the tab. But, no dialog boxes appear to type in wanted new URL and no google dialog box appears in the tab area.
    Every thing was fine before installed this new security update 20110811165603 into Mac OS 10.6 snow leopard computer.

    Thanks for your reply and sorry for the delayed response - have been away for a few days over the holidays.
    I understand your point about backups and disk permissions. I do have a back up copy and will adopt using the 'verify disk' step in future; so, for me the loss shouldn't amount to any more than the time I have spent, as frustrating as that is. However, I think the point I'd like to make is that doing a disk permissions check is fine for those like me [or others on this forum] since I work in a hi-tech industry, and have worked in a Unix/Linux environment for the last ~20 years so understand about permissions etc. , but I know people with Macs for whom the key advantage is that the they largely 'manage themselves' seamlessly. So, if the verify step is simply a pushbutton check-then-repair step and omitting it can lead to such fatal errors, then why can't it be built into the update script as the first automatic step ? What I mean is; my computer reached this unusable state simply by pressing 'ok' on a planned update, so to the average-Joe user it looks like a 'stop and catch fire mode'.
    For info: I have now used Disk Warrior, which is reporting a disk malfunction, but can recover the user data. It seems to be a remarkable coincidence though, because there were no system problems exhibited before the update.

  • Adding a Warning dialog box when submit button click

    Having troubles figuring out how to add a warning dialog when user click submit asking if he would like to proceed if a column field is null.

    Umm is it possible to do this with validation on submit and cancel the process mid way. if they hit cancel.
    Because data may be deleted in the database or change if i don't do it upon submit.
    E.G i kind of want to achieve something like this but i'm very unsure if it's even possible call a validation?
    boolean isValid
    isValid = call validation_name
    If isValid = false THEN
    javascript:if(confirm('Are you sure?')){doSubmit('P5_SUBMIT');}
    else
    javascript:doSubmit('P5_SUBMIT');
    END IF;Edited by: PandaOracle on Jan 24, 2012 10:19 AM

  • How to supress dialog while ALV Grid output is send to Spool

    Hi,
    I need to get the ALV grid output in spool.But when i am executing my program using ALV grid function module with print parameter passed,first its giving a popup with default printer and number of copies and when i press ok for the popup ,spool request is created.But i dont want this popup to come while executing my program.It should create the spool request directly. How to solve this issue.
    Regards
    Shibin

    Hi Shibin,
    Try the below parameter in IS_PRINT Structure:
    is_print-print = 'N'.
    This will Supress the Dialog and create a Spool with no Immeadiate Output.
    Hope This Helps you..
    Thanks & Regards,
    Suresh Karri

  • How to open Dialog Box by using webutil

    Hi all,
    I am using webutil in 9i(9.0.2)
    as in the user manual i did the changes..
    except one..when i set
    baseHTMLjinitiator=d:\webutil\server\webutiljini.htm
    it gives the
    Duplicate Parameter on Command Line..
    when i commented the above baseHTMLjinitiator=d:\webutil\server\webutiljini.htm
    and run the form ..that time formd gives the following error
    oracle.forms.webutil.file.FileFunctions...
    How to solve ..this issue ?
    any help ..
    with anticipating the reply
    Regards
    A meet

    Thanks Phuong. I try it, but still does not work. I have tried the followings:
    CLIENT_HOST('CMD/C START "editor" C:\Program Files\Windows NT\Accessories\wordpad.exe D:\temp\out.txt' );
    CLIENT_HOST('CMD/C START "editor" wordpad.exe D:\temp\out.txt' );
    WEBUTIL_HOST.NONBLOCKING('CMD /C C:\Program Files\Windows NT\Accessories\wordpad.exe D:\temp\out.txt');
    --trang                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Standard Nokia Files On Memory Card

    Hi I was just wondering whether there was any way of me getting the standard files that nokia put on your memory card? The reason is, is that i lost my memory card and have jsut bought a new one, which obviously doesnt come with the nokia files i nee

  • Fill Field 'Header text' in FB01

    Hi, Now: documents (FB03) in field header text have date from documents date from invoices. I would like to have another date which automatic print here. For example one date 01.01.2000 . Can change it in tcode or it's more advance setup. Thanks

  • ABAP dump analysis

    HI all Pl let me know ABAP Dump analysis .which type of abap dump problems arrived every time. pl explain explain more than two or three  examples recently u face abap dumps and solutions hoe u resolved that problems [removed by moderator] I really a

  • Row totals in datagrid

    Hi, I have a datagrid with 5 rows and 3 columns and i am able to load data into it using http service but i want to calculate totals of each row and i have to print them on the labels placed below the datagrid for each column i want to calculate the

  • The left side of my iMac screen is greyed, like a shadow

    The left side of my iMac screen is greyed, like a shadow.