Help needed :How to Supress Standard pop-up messages in an ABAP program ???

Hi All,
A particular function module i use in my program gives pop ups with information messages when the program runs.  There is not returning parameter which throws this message.This is not desirable.  Is there a way to supress these pop ups?
Regards,
Venkat.

try adding IN BACKGROUND TASK to the FM
i want to give an example as well...
see
CALL FUNCTION 'POPUP_TO_INFORM' IN BACKGROUND TASK
  exporting
    titel         = '123123'
    txt1          = 'here'
    txt2          = 'there'.
This FM actually show give an popup.. but it runs in bg mode so wont give an popup....
hope this helps.
Vinod,
i dint see ur post before i posted..
Edited by: Soumyaprakash Mishra on Dec 24, 2009 6:36 PM

Similar Messages

  • Help Needed - My BB 8520 Curve has this message-CRTranRec::GetLinkedRecordID:Invalid linked record id while sychronisation using the desktop software

    Hi!
    Need some help with the same:
    Help Needed - My BB 8520 Curve has this message-CRTranRec::GetLinkedRecordID:Invalid linked record id while sychronisation using the desktop software

    Hi sameer197301 and welcome to the BlackBerry Support Community Forums!
    To clarify, are you seeing this message displayed on your BlackBerry® smartphone or on your computer?
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How i can acces to web ( with login) from abap program?

    Hello.
    I need to acces to web that have user/password from abap program. Is there any function to do this?
    And, is it possible, to do this in background process?
    Regards.
    Antonio.

    Hi Antonio,
    Yes this is possible. Check out class cl_http_client, particularly method IF_HTTP_CLIENT~AUTHENTICATE in which you can provide the user credentials. Here's some example code:
    DATA:  client    TYPE REF TO if_http_client,
                 l_url       TYPE string,
                 l_content TYPE string.
    CALL METHOD cl_http_client=>create_by_url
      EXPORTING
        url    = l_url
      IMPORTING
        client = client
      EXCEPTIONS
        OTHERS = 1.
    client->request->set_header_field( name  = '~request_method'
                                       value = 'GET' ).        "#EC *
    CALL METHOD client->authenticate
      EXPORTING
    *    proxy_authentication = ' '
    *    client               =
        username             = 'user'
        password             = 'password'
    *    language             =
    ****Make the call
    client->send( ).
    ****Receive the Response Object
    CALL METHOD client->receive
      EXCEPTIONS
        http_communication_failure = 1
        http_invalid_state         = 2
        http_processing_failed     = 3
        OTHERS                     = 4.
    ****Get the response content in Character format
    l_content = client->response->get_cdata( ).
    Hope this helps you!
    Cheers, Roel

  • How can we create the error log in a ABAP program

    Hi all,
    How can we create the error log in a ABAP program
    Thanks,
    srinivas.

    Hi,
    Refer to FM's in the Function Group SBAL. For a change most of the FM's have been well documented. Also have a look at the DEMO pgms. Se38---->SBALDEMO & F4.
    Regards
    Raju Chitale

  • How to generate an OUTBOUND INVOICE IDOC from the ABAP Program?

    How to generate an OUTBOUND INVOICE IDOC from the ABAP Program? Any Function Module that can be used for this?

    Hi
    This is more of configuration
    (1) Create a Output type with Medium 6 ( Check with your functional consultant)
    (2) Maintain Partner Profiles using WE20 transaction
           Idoc type - INVOIC02
           Message type - INVOIC
           Process Code - SD09
    Regards
    Madhan D

  • 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.

  • Urgent help need:How inventory system and fulfillment system work

    Hi Every one ,
    I have an requirement to work on inventory and fulfillment system,below are my questions,
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    2)There are few orders are completed(if some are orders are having quantity available in stock some or backorders)
    here how the fulfillment system understand those orders and how it will update the inventory.
    Could you please any one help me how to work on above requirements or else give me some other solutions to full fill above .
    Regards,
    Jyothi Chidurala
    Edited by: Jyothi.mj on May 22, 2013 5:08 AM
    Edited by: Jyothi.mj on May 23, 2013 4:28 AM

    >
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    you can always call InventoryManager.AVAILABILITY_STATUS_IN_STOCK to check whether the item is available in inventory , It is the business call if item not available how they want to handle this .
    hope this helps

  • How to configure a pop up message when creating an appraisal?

    Hi All,
    I have a question.
    When the supervisor creates an appraisal for an employee, the supervisor is obligated to create Objectives for the employee but creating Competencies are only optional for executives (people group). When the supervisor has finished creating the appraisal and wants to review it, he will need to click on a Continue button.
    When the continue button is pressed, a warning pop up message will appear if the competencies created was null. As it is only a warning pop up message the supervisor can just click ok and continue to the review page.
    Now I am needed to configure this pop up message for the appraisal creation page and I would like to know how do I go about in searching for it? Should it be in the OAF java files or is the pop up message can be configured using personalization? I just want to know how to search for the configuration of this pop up message. Thank you
    regards,
    Ilham

    Hi Sheela,
    Though you made 'Dataline' field as mandatory, system will throw an error message and will put MOUSE CURSOR on that missing field. So ultimately user would come to know that a particular field is missing.
    And in SAP there would be lots of mandatory fields and it's really not feasible to put pop-up messages for such requirements and that too in transactions like CMR. 
    Tell user that system will automatically put MOUSE CURSOR on a particular mandatory field anytime anybody misses to maintain it. As a SAP consultant, your job is to convince the user with such standard functions.
    If at all you want to put pop-up message for it, then you need to go for User Exit development.
    Revert back if any further issue.
    Regards,
    Anup

  • How to Configure a Pop Up Message in Sales Orders

    Hi,
    How can I display a message when creating or changing sales orders? I need the configuration steps for 4.6.
    Thanks,
    Sai.

    Hi,
    First you need to make an entry of your pop up message in the sales text view of the material master and when the user enters that material, he will be able to see that message. The Config part is in spro/sd/basic func/text control. You need to define the text types, access sequences and the text determ procedures.
    You have to maintain the desired text in the material master sales text editor and turn on the indicator 'Display texts during transfer' under Text control in configuration for the sales order-item for the material sales text. This will display a Pop-up message when booking orders
    Reward points if found helpfull...
    Cheers,
    Siva.

  • How to get a pop up message in the portal??

    Hi experts,
    I am implementing the Objective setting and appraisals and I am trying to display a pop up message when they press the review button.
    Does anyone have the code for this because it is not working as it does in R/3.
    ( I have succesfully made error messages but I need a pop up with yes or no)!!
    Thanks,

    Hi, try by doing a custom html page based on the page you're using for Performance Mgmt, then add the html+javascript code for a popup display through SE80.
    Regards

  • How to prevent the pop-up message that displays the printer is printing? Deskjet F4280

    The pop-up message is kind-a annoying when it shows because it switches my window, i was runnig a fullscreen application then it acts like pressing ALT+TAB which interrups the fullscreen application, anyone knows how to change these settings?

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/Troubleshooting+plugins
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    Please scan with all programs because each program detects different malware.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to read Production Order Long Text data in ABAP program

    Hi friends,
      I have the issue in reading the ' Long Text '  tab view data of production order
    in CO03 transaction.Please can some body help me out to get this in ABAP program.
    Regards,
    Rajesh Akarte

    ok goto the long text, double click it, or use the small pencil, so that you proceed to the text editor.
    Once you are there, use the menu: goto->head
    a small popup will come up, stating the information you need.
    what you need is OBJECT, ID, Language and NAME.
    with those information you can feed the FM READ_TEXT.
    and woooohooo there you go

  • How can I get role configuration key in an abap program?

    Hello there!
    In a abap program I would like to get which configuration key it is running.
    The idea is, our abap program will decide which instruction execute depend on the current configuration key, but, we donu2019t know how to get this information.
    Does anybody know a BAPI, BADI or something like that to do this?
    Regards,
    Laercio

    Hi,
    Threre is no standard API provided for this however you can use following code snippet do get your jobe done.
         data: LV_PROFILE type ref to IF_CRM_UI_PROFILE.
         data: LV_ROLE type string.
         LV_PROFILE = CL_CRM_UI_PROFILE=>GET_INSTANCE( ).
         if LV_PROFILE is bound.
            LV_ROLE = LV_PROFILE->GET_PROFILE( ).
         endif.   
    Now, the LV_ROLE will contain the ID of the Business Role.
    If you're interested in the role config key you might add the following lines of code.
           if LV_PROFILE is bound.
             RV_RESULT = LV_PROFILE->GET_COMPONENT_PROFILE(
                           CL_CRM_UI_PROFILE_ROLE_CONFIG=>GC_PROFILE_ID ).
           endif.

  • How can I retrieve the inbound XML messages (invoices) by ABAP program?

    Where are the inbound XML messages (invoices) saved in XI box?
    How can I retrieve the inbound XML invoices in XI box by ABAP program?
    Is there any method/BADI/function module to retrieve these XML invoices, so I can output these XML invoices in an ABAP report?
    Thanks in advance for your help!

    Hello Fisher,
    This Webblog will help you.
    /people/alessandro.guarneri/blog/2006/02/14/super-message-monitor-for-sap-xi
    From this blog you will understand the code behind SXMB moni .. which performs the selection from database. You can write a report as well.
    Cheers,
    Himadri

  • How to retrieve modeinfo[n].context_id_uuid from inside an ABAP program ?

    If you login to an SAP session and then create another session via the system menu option (not a second login), transaction SM04 will show two different values for the parameter:
    modeinfo[n].context_id_uuid
    I need to know how to retrieve the value of this parameter from inside an ABAP program.
    This question is related to the one Rich and Naren and I were discussing - about how to create a unique shared buffer memory id that will distinugish between a two sesssions of a single user who happens to be "MIGO'ng" twice.
    Thanks for whatever answer anyone can provide ...
    djh
    Note: also posted in ABAP General ...

    Rich answered in ABAP general:
    REPORT ZRICH_0001 .
    type-pools: thfb.
    data: context_id type THFB_CONTEXT_ID.
    CALL FUNCTION 'TH_GET_CONTEXT_ID'
    IMPORTING
       CONTEXT_ID       = context_id .
    write:/ context_id .

Maybe you are looking for

  • Image Capture + Rotate per EXIF + iPhoto = Bad

    My image intake workflow starts by importing with Graphic Converter, then renaming withi 'A Better Finder Rename' (rename images to a "datedescriptionimage#"), then review and major edits in GC then import into iPhoto. A recent release bug in GC, how

  • Fields from 2 different Subject Area via inner or outer join

    Hi All I have a requirement where I have to pull columns which are available in 2 different Subject Areas. For eg. Col1 and Col2 in one SubjectArea1/Report1 and Col2 and Col3(obviously not available in SubjectArea1) in second SubjectArea2/Report2. Th

  • Discoverer-Internal EUL Error ExprParseNodeType - Invalid type in canonical

    Hi, Once of our report which has been out in production for quite sometime has suddenly started giving the following error message. Internal EUL Error: ExprParseNodeType - Invalid type in canonical formula Please let me know if anyone has come across

  • Get error 66, when try to make labview program communicate with arduino uno+ wifi shield.

    I have a sever VI, keep sending data use TCP VIs. The client side is my arduino board (uno+ wifi shield), which can receive data wirelessly. I run both, they can successfully communicate once. At the 2nd time, the sever VI will close itself, because

  • カメラによる線と3Dのエラー

    エフェクトの線を3Dにしてカメラレイヤーで線を方向を変えて見ようとするとエラーが出て 『最後にログされたメッセージ : <140735110869776> <ae.blitpipe> <2> Making New Context』こうゆうものが出ました 線は3Dにしてはいけないのでしょうか?次回も起こさないようにするにはどうすればよいのでしょうか?