Regarding information message

Hi,
I've created a user exit for the transaction fb60 that is triggered when the user clics save. The exit is working just fine but the problem is that because im sending an Error message every field in the screen gets blocked and it does not allowed to correct their values. So you just have to cancel and reenter all the information again.
My question is how to avoid that, is there maybe a way to send just an information message and stoping the transaction so that the document wont be saved?
Regards,
Roberto

when I had a similar problem I went for a BADI I used a raise error message exception....
BADI's for ur Tr.
FAGL_AUTHORITY_CHECK
FAGL_PERIOD_CHECK

Similar Messages

  • Information message in submitted report

    Hi Folks,
      I am Submitting a report in another report. But submitted report is throwing a Information Message, which is coming as a pop-up. I want to suppress the popup.
      Please help.
    Thanks in advance,
    Punit

    Hi,
    SUBMIT
    Calls an executable program of type 1.
    Syntax
    SUBMIT <rep> [AND RETURN] [VIA SELECTION-SCREEN]
                              [USING SELECTION-SET <var>]
                              [WITH <sel> <criterion>]
                              [WITH FREE SELECTIONS <freesel>]
                              [WITH SELECTION-TABLE <rspar>]
                              [LINE-SIZE <width>]
                              [LINE-COUNT <length>].
    Calls the program <rep>. If you omit the AND RETURN addition, the current program is terminated. Otherwise, the data from the current program is retained, and processing returns to the calling program when <rep> has finished running. The other additions control the selection screen and set attributes of the default list in the called program.
    Ex.
    SUBMIT REP1 VIA SELECTION-SCREEN
    WITH PARAMET EQ 'Selection 1'
    WITH SELECTO IN SELTAB
    WITH SELECTO NE 3
    AND RETURN.
    Regards,
    Bhaskar

  • HOW TO SKIP AN INFORMATION MESSAGE

    hi Gurus,
    while posting data using BDC, i am getting an information message at an instance "delete". without skipping this message i am unable to move forward. Can any one help me in this regard.
    i would be very greatful to you, Thanks in advance

    Hi Santosh,
    If it is an information message, it would not be any problem for the BDC when run in NO Screen mode. It would also not get recorded when you do a recording in SHDB. Don't worry about that information message.
    Regards,
    Ravi

  • Can we show information messages after triggring IDOC's in background

    Hi friends,
    Iam executing one custom transaction for sales cycle in background, in that iam trigging IDOC's, user are getting the messages like
    1. Idoc No: 0000014254 despatched to client -
    2. 1Output  were processed.
    3. 1 IDOC's selected.
    user has to enter 3 times while the transaction is running in background.
    But requirement is "can i set all 3 information messages after trigging IDOC's to background.
    any body suggest the solution.
    regards,
    vamsy krishna.

    Nope nope, I don't work for Apple - I'm just a Level 3 Discussions pleb...! ;-))
    I'd been in touch with the senior tiers of Apple Support on the phone to diagnose the chkdsk incidents of 2004-2005.
    Following that, I also negotiated (part-)resolution to the Smart Playlist issue.
    Since Updater 2006-01-10 (part-)fixed the Smart Playlist problem, but seemed to introduce some other issues for folks, I've been continuing to pass feedback from my Level 2 contact who is handling investigation of the latest problems. In turn, he is working with US Engineering to handle this issue.
    So no, I'm not Apple, but I (and some others) pass commentary to and fro between Discussions and Level 2 Support, and by by-passing Front Line phone support, it helps us to get serious issues investigated and resolved more quickly. I find that such an approach for serious problems works well to help the Community.
    I'm not sure if my message gives hope - but I do hope that having reported this on up to Level 2, and having been told that US Engineering have teams watching Discussions, that maybe we can expect some attention from Apple R&D on this matter. However, the official line is for individuals to contact Apple directly themselves via the phone and website feedback, so US Engineering have an idea of the number of people affected. The more people who report to Apple directly, the more likely the problem is to be noticed, and hence the priority for investigation and resolution increases. I can start an unofficial ball rolling, as I have done, but we cannot keep the momentum up unless users use these official routes to let Apple know they are affected.
    Sorry it's all a bit foggy, but it's the best I've got! Hope this little explanation helps to clarify things a bit more. Feel free to post back if you'd like to discuss this further. Best for now.
    Kind regards,
    Gopha.

  • "Error reading reporting point information" message no. RM111

    Hello friends,
    I am doing the Reporting point backflush for a material and getting the error "Error reading reporting point information", message no. RM111.
    i have given the milestone confirmation for the last operation in the rate routing for that material.
    Even in REM Profile, Mandatory Reporting time backflush is activated.
    In the production version of that material i have given the group of rate routing created for that material in Rate Routing field.
    I have created the product cost collector for that material and production version. With costing lot size 1, even i have calculated the cost for that product cost collector. Though regarding costing couple of errors came, than also i saved it.
    I am not sure whether system has created the reporting point while creating the product cost collector.How to check it?
    Now for that material we have created the planned order.
    Now when i am doing the backflush in MFBF t.c  by giving the material code,plant and production version, system is throwing the error " Error reading reporting point information.
    Thanks and Regards,
    Jitendra

    Hello siva,
    i executed the transaction MF30 as suggested by you, there system displayed following costing errors:
    "No control record for Activity type PLVD/1301/ASBY in version 000 / 2010 activity planning/qty planning
    Message no. KL023
    Diagnosis
    No activity planning or quantity planning has been carried out for Activity type PLVD/1301/ASBY in version 000 and fiscal year 2010.
    Procedure
    Activity Type Planning for cost centers or
    Planning Quantities and Prices for business processes.
    Even system is not picking the component prices, system throwing the error NO price could be determined for the material and  batch so and so.
    We are using the Preliminary cost estinmate.
    is because of this system is not able to create reporting point in product cost collector?
    Please Replay

  • Problem with information message in User exit

    Hi All,
    Iam using the below code in MV45FZZ to check the customer(sold to party) entered in VA31 with a Ztable and popup a message if it exist in the Ztable.
    select single * from zcust into zcust where kunnr = kuagv-kunnr.      
    if sy-subrc = 0.                                                      
    call function 'POPUP_TO_INFORM'                                       
         exporting                                                        
    titel   = 'INFORMATION'                                               
    txt1    = 'Calender day orders for this customer have been blocked'   
    txt2    = 'Please contact [someone] if this block should be removed'  
            TXT3    = ' '                                               
            TXT4    = ' '                                               
         exceptions                                                       
              others  = 1.                                                
    if sy-subrc = 0.                                                      
    leave to screen 101.                                                  
    endif.                                                                
    endif.                                                                
    <b>The problem is, the message needs to be in logon language based.</b>
    I tried to give it in a text element, however it is asking me a access key to enter it in a text element. Also I tried to give just a information message box like this message I088(z2). But this is comming like a success message .  Letme know how to overcome this.
    Regards,
    Senthil

    Hello,
    I have gave similar kind of info message in the same exit like this
    <b>          message i082(Z48SD) with l_r_xvbap-posnr
                                       l_r_xvbap-matnr
                                       text-302.</b>
    <b>Text-302 is created for the same program SAPMV45A</b>
    U could try like this.
    If useful reeward.
    Vasanth

  • Information message

    When I start my program I will show an information message about what the program does. Where in my program should I write this message and how?

    Write this information Msg. after
    Start-of-Selection.
    Message "ABout Your Program" type 'I'.
    If it is a dialog Program
    Then write the same in PBO of the screen.
    Hope it works 4 u
    Do rewards...if it helps.
    Regards
    Sachin Dhingra

  • BDC Recording doesn't proceed after Information Message

    Hi,
    I need to upload Vendor Master Data. I've recorded a BDC transaction and I came across an Information message in the final stages of the transaction.
    The activity I recorded after the information message is saving the transaction. However hen I processed the recording it stops at the place where  the Information message popped up.( though the SAVE action( okcode =UPDA) is recorded). Spo each time I need to Save manually though I recorded it.
    How can I make the recording to proceed even after the Information message is displayed( Note: Information message is not seen when processing the recording).
    Any immediate inputs in the regard will be of great help.
    Regards,
    Siva

    Rich,
      Thanks for your reply.
      The real scenario is like this.
      There is an error before the Information message expecting a Tax code value which we need to live with. During recording we fill the required field where the error occured and proceed by pressing ENTER. All these are recorded. The Information Popup is very next screen after pressing ENTER. So I beliecve all these were recorded and still it is not executing the final SAVE Process.
    A piece of code for your reference.
    ('KNVI-TAXKD' is the place where error occured. We entered a value and proceed with ENTER key.)
    The point to be noted is though the OK Code is there for SAVE (=UPDA)it is not getting saved. Please resolve this if you could able to.
    perform fill_bdc_data using:
                 'X'      'SAPLWR09'        '0320',
                  space    'BDC_CURSOR'      'KNVI-TAXKD',
                  space    'BDC_OKCODE'      '/00',
    <b>              space    'KNVI-TAXKD'      '0'.</b>
    perform fill_bdc_data using:
                  'X'      'SAPMF02K'        '0310',
                  space    'BDC_CURSOR'      'LFM1-WAERS',
                  space    'BDC_OKCODE'      '/00'.
    perform fill_bdc_data using:
                  'X'      'SAPMF02K'        '0320',
                  space    'BDC_CURSOR'      'RF02K-LIFNR',
    <b>              space    'BDC_OKCODE'      '=UPDA'.</b>

  • Remove Information message for maximum rates check program

    When we set a maximum rate, we put that a business reason is required. This is working correctly but I am getting an information message u201CIf necessary, split up the receipt to not exceed the maximum rateu201D . The customer would like to remove this as it gives the employee a work around which should not be given.
    Please could you advise how I deactivate this message?
    THanks and regards
    Linda Harris

    I may have figured it out. I called apple (which you may want to do rather than try this alone). I had them stumped at first but then he had me force the phone into recovery mode. I held down both buttons until I got the apple logo and it went black at which point he said it is completely off.
    Then he had me unplug it which it already was. Then I held down the home button and plugged it in until I saw the usb plug again then I let it go. As I say, you may want to call them and tell them what I did to fix mine. I am sitting here watching it as it restores from my backup. Good luck and reply back if you have questions. I will try to answer them but I am no expert.

  • Information message "Down Payment more than invoice amount"

    Hi Experts,
    After creating down payment request while making down payment,one information  message shows in status bar "Down Payment amount is more than invoice amount"
    can anyone tell me why that message popup everytime?
    Thanks in advance
    Sanjay

    Dear,
    Ideally this message should appear at the time F-54 transaction when down payment is greater or lesser than invoice amount.
    But as you said it is appearing at time of F-48 so please check purchase order is entered and invoice has been done for that invoice with variances.
    If query does not belong to any of above, please elaborate the scenario and also provide message number.
    Regards,
    Chintan Joshi

  • Information message in infoset query.

    hi all,
    i have added a field into the infoset query adn im using s_pho_48000513 . my probelm is when ever im opennig the query im getting information message as some selection fields are not available.does any have idea why im getting this message ..where i went wrong in ading the field to infoset.what check should i do.please suggest.and another thing when im doing switch off object selection from extras im not getting this information message but this field is comming in selection fields from infoset with default selected with enable mode and all other fields selected with disable mode.
    any inputs is apreciated..
    regards,
    suha

    Remove those fields/Infotypes from the infoset with the help of SQ02 from that infogroup
    Thanks
    Jaydeep jadhav

  • Regarding error message.. very urgent

    HI guys,
    I am using an information message if any error..
    IF sy-subrc <> 0.
        MESSAGE i002 WITH iv_path.
    ELSE.
    iv_path contains the file path.. '//pmiasfvdev.aap.com/pmiasfvdev/sign_apo/SCIPIO/outbound/fplp1234.csv'
    and message no002 = "The file '&' you are trying to write is open. Please close the file!!."
    but when the error occured I am getting the information error as
    <b>The file ''//pmiasfvdev.aap.com/pmiasfvdev/sign_apo/
               SCIP' you are trying to write is open. Please close the file!!."</b>
    But I need to get the full path in the information message..
    <b>The file ''//pmiasfvdev.aap.com/pmiasfvdev/sign_apo/SCIPIO/outbound/fplp1234.csv'
              you are trying to write is open. Please close the file!!."</b>
    How can I do that,,its very urgent
    Points will be rewarded..
    thanks in advance!!
    regards,
    nazeer

    Hi Nazeer ,
    It is quite simple.Your problem is with the message qualifier .
    Try this.
    IF sy-subrc <> 0.
    MESSAGE i002 WITH iv_path1 iv_path2
    ELSE.
    in the above statements no change.
    change the message in 002 as
    002 = "The file '&&' you are trying to write is open. Please close the file!!."
    --Split your messages(iv_path) into 40char each as iv_path1 and iv_path2..
    could be enough in your case but to satisfy all cases
    002 = "The file '&&&&' you are trying to write is open. Please close the file!!."
    Regards,
    Raghav

  • Information message in USEREXIT_XKOMV_BEWERTEN_END

    Hi,
      We have a logic that displays an information message in the user exit USEREXIT_XKOMV_BEWERTEN_END . There is an IDOC output that  gets triggered with timing 4 when the order is saved, and the processing FM of this output ( standard code) calls pricing(which invokes the pricing procedure and triggers the code in  USEREXIT_XKOMV_BEWERTEN_END0.
    When the mesage is issued it causes the update to terminate.
    Are information messages also forbidden in modules called in V1 mode?
    Regards,
    Hari.

    Hi,
    I think it will work for deliveries tooo..
    My requirement is to update the delivery through the Inbound IDOC user exit custom segment value....
    after exporting the value in IDOC user exit and importing the value in this user exit to update the value in delivery ...
    so i need parameters to export and import ..what do you say it could be ?
    regards
    Vishnu

  • Information message to Error Message  -HCM standard Leave Workflow

    Hi ,
    I am configuring leave management for a demo purpose.
    The leave application workflow used is ws20000081.
    There are few scenarios configured in system for  not allowing leave applications for  the employees .
    Example:-paternity leave u2013 maximum days which employee can apply through one application is 3 working days
    This validation is working fine as we directly using IT2001 application through tcode- PA30 .more than 3 days it giving an error message.
    But issue is
    When we are applying the leave through ws20000081, system is allowing more than 3 working days and allows a successful application. Then its allows a successful approval for employer. After approval system fails to update the data in system and forward the application to administrator where as in ideally system should not be allowing the employee for a successful application.
    When we are applying the leave through ws20000081 and clicking on the u201Cchecku201D button system is giving the actual error message as an INFORMATION MESSAGE.
    As it is an information message on ws20000081 application page, system is allowing successful application.
    How can I change this information message as an error message u2013any STANDARD settings apart from  taking the access key and change it     (similar behavior as application as PA30)?
    Regards
    Thomas
    Edited by: Thomas Padiyara on Jun 2, 2011 11:23 AM

    Thomas,
    The validation can be even done prior to the workflow called.  You may have to implement the BADI BADI - PT_GEN_REQ and inside the using the class - method IF_EX_PT_GEN_REQ~CHECK_IF_ACTOR_ABSENT can be used for the validation of this 3 days and generate an error message to portal.
    Hope this helps...
    Cheers,
    Thomas.

  • Suppressing Information Message in BDC

    Hi all,
    I want to avoid the Information Messages comming during Recording while doing a BDC in no-screen mode.
    Please help me.
    Thanks & Regards
    GK

    Hi ,
    Thanks for he quick response.
    The information message is comming in the form of a pop-up window. I can for now do write a line of code to avoid this.
    In case in future if that pop-up message does not come, then my output will again get effected.
    Thanks
    GK

Maybe you are looking for

  • 1:1 FSB:Memory ratio on 865pe fisr (250+Mhz)

    Does anyone have memory that is capable of running 250mhz and over? I was interested in knowing whether the bios changes your ratio to 5:4 when you select 250mhz FSB and over like mine does. I don't know why it changes the ratio when the ram is capab

  • Aperture 3.1 takes incredibly long time to start

    Since after the upgrade from 3.0.x to 3.1 Aperture takes a long time to start up. I click on the Aperture icon in the dock, the icon bounces for almost a minute, then it stays still for more than a minute, doing nothing and without the "light bulb" i

  • Since the last update to iTunes 11.0.3 (42) the airplay connection is not working properly , keeping breaking up

    since the last update to iTunes 11.0.3 (42) the airplay connection is not working properly , keeping breaking up, while the airplay works fine with my iPad and iPhone. Anyone has experienced the same? any fix available?

  • How to use css in servlet

    out.println("<link rel='stylesheet' type='text/css'"); out.println(" href='style_shop.css' />"); i typed above statement in a servlet but still doesn't show the style how i can fix it? Message was edited by: takamai

  • My ipod just doesnt want to work on my pc

    So I just fixed my ipod, by replacing the broken hard drive. The ipod itself was out of warranty so I figured I take a crack at it. Anyways the transplant was successful and I got it up and and running. The problem is I cant get my pc to recognize it