Edit title of the Information Message

Hi,
Is there a way to edit the title of a information message? Message i00...
Regards,
Marc

Hi,
by title do you mean the "Title thats coming in the popup of Information message" .
if yes in that case don't use "Message i00....."
instead use FM "POPUP_TO_INFORM" where you can pass the title you want , and in that you can pass the message you want.....
Regards,
Neha

Similar Messages

  • I can't understand how to edit titles on the spine of books. Could anyone help me? Thanks.

    I can't understand how to edit titles on the spine of books. Could anyone help me? Thanks.

    the trouble is that on the spine of the book the title is cut off and I don't know how avoid it.
    I don't think you can, Fred. Pick a shorter title. And add the additional information by adding a subtitle on your title page. You can always add a second text box, using the "edit layout" panel.
    Regards
    Léonie

  • Supressing the information message in ALE

    Hi All,
      I created a report which will call this bd10 based on the selection screen parameters. it is executing correctly, but this tcode should be given to end users.
    generally after execution of BD10 , it will give the information message 1 master idoc is setup and after entering this it will show another information message like 1 communication idoc is setup for this. I dont need to display these two messages. <b>how to supress this information message.</b>
    Is it possible?
    Regards,
    vinoth.

    Hi,
    This can be possible,but its beyond a developers rights,this information message will be displayed always.
    if you want to avoid it run in background.
    regards,
    pankaj singh

  • Deactivating the information messages

    Hi
    Is it possible to deactivate the information messages (Not error or warning messages) in SAP?
    Is there any enhancement to deactivate it, Is it possible. Does it involve changing the standard SAP code.
    Thanks for your time
    Best regards
    Ameen

    Hi Ameen,
    this depends on the application.
    Artilce and material master can be controlled via OMT4
    regards
    Björn

  • SD: Change the Information Message to Error V1-406 Material Marked for Del

    How can we change or supress the infromation message, I am using the exit MV45AFZB already, but the information message is not suppressed.
    I have tried to look for this on the forum, but I havent found the right answer.
    Best regards,
    Hamid

    Hi Hamid
    Why do you want to suppress or change this message? Business Requirment ??? - This Error message ensures that such of those Parts which are not to be used any further and have been marked for deletion are not forming part of Order management.
    If you still want to, then remove the deletion indicator in the material master.
    just for information - following SAP std programs check for validations of this requirement and you are not supposed to change this condition.
    FV45CF0C_CVBAP_FUSSZEILE_PRUEF
    FV45PF0M_MAAPV_SELECT
    FV45PF0M_MAEPV_SELECT
    FV45PF0M_MAKT_SELECT
    <b>The above 4 programs are meant for your (& forum members) information & all cautioned from tampering these std programs</b>.
    cheers
    nandu
    FV45PF0M_MT61D_SELECT

  • Suppress the Information message during BAPI Call

    Hi, I am getting the information message pop up during the BAPI Call "BAPI_BUS2054_CREATE_MULTI". Is there any possiblity to suppress the message?

    Hi,
    use call function with destination. Here is a short example:
    REPORT  zhabitest.
    DATA:
      et_return LIKE bapiret2 OCCURS 0.
      CALL FUNCTION 'ZTEST'
        DESTINATION 'NONE'
        TABLES
          et_return = et_return.
    DATA:
      ele_return LIKE bapiret2,
      rc LIKE sy-subrc.
    CLEAR rc.
    LOOP AT et_return INTO ele_return.
      IF ( ele_return-type = 'E' )     "error
         OR ( ele_return-type = 'A' ). "abort
        rc = 8.
        EXIT.
      ENDIF.
    ENDLOOP.
    IF rc IS INITIAL.
      WRITE: / 'Call OK'.
    ELSE.
      WRITE: / 'Call error'.
    ENDIF.
    And the function is here:
    FUNCTION ztest.
    *"*"Lokale Schnittstelle:
    *"  TABLES
    *"      ET_RETURN STRUCTURE  BAPIRET2 OPTIONAL
      MESSAGE i208(00) WITH 'Separate I/O and processing!'.
      GET TIME.
      DATA:
        ele_return TYPE bapiret2.
    * return error randomly
      IF sy-uzeit+5(1) CA '13579'.
        ele_return-type = 'E'.
        APPEND ele_return TO et_return.
      ENDIF.
    ENDFUNCTION.
    Pay attention to the documentation of call with destination (db commit).
    Regards
    Walter Habich

  • How to display the information message in the end in BDC

    Dear All,
    I have been submitting a BDC for FB01, in a dialog program of mine.
    The BDC gets executed successfully but it does not display the 'Documnet No....generated' information message in the end.
    I have even written the following code in the BDC, after call transaction, to accomplish this, by assigning the value of genno (variable) to sy-msgv1, but it's not working.
    call transaction 'FB01' using bdcdata1 mode 'E'.
      message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      genno = sy-msgv1.

    Hi,
    try this its easy .
    create an internal table e_report for sucess with the fields you want to display .like the same for F_tab for failure .
    so finally u will be having the success record in e_report and the failure in f_itab.
    call transaction 'FB09' using bdcdata MODE 'N' MESSAGES INTO IT_ERROR.
    IF sy-subrc eq 0.
      E_report-status = 'Sucessfully Updated'.
      e_report-belnr = itab-belnr.
      e_report-year = fiscalyear.
      APPEND E_report.
    else .
       F_tab = itab.
       F_tab-year = fiscalyear.
       F_tab-status = 'FAILED'.
       APPEND F_tab.
    finally print this
    sort e_report by  belnr ascending.
    LOOP AT E_report.
        at FIRST .
           WRITE:/'**********SUCCESSFUL RECORDS ARE **********'.
           FORMAT COLOR 6.
           WRITE:/ 'Document Numer',20 'Year',35'Status',54 ''.
        ENDAT.
        FORMAT COLOR 3.
        write:/ E_report-belnr,20 E_report-year ,35 E_report-status.
        FORMAT COLOR OFF.
       at LAST.
         write:/ 'Total No.Of Successful Records:',sy-tabix.
         FORMAT COLOR OFF.
       ENDAT.
       RESERVE 20 LINES.
    ENDLOOP.
      IF F_tab is initial.
           FORMAT COLOR 1.
           WRITE:/ ' NO Errored Files'.
           FORMAT COLOR OFF.
      ENDIF.
    WRITE:/ SY-ULINE.
    new-PAGE.   " to display in a  new page
    sort f_tab by  belnr ascending.
    LOOP AT F_tab.
        at FIRST .
           WRITE:/'**********FAILED RECORDS ARE **********'.
           FORMAT COLOR 6.
           WRITE:/ 'Document Numer',20 'Year',35'Status',54 ''.
        ENDAT.
           FORMAT COLOR 5.
           WRITE:/ f_tab-belnr ,20 F_tab-year, 35 F_tab-status.
        at LAST.
         write:/ 'Total No.Of Failed Records:',sy-tabix.
        ENDAT.
    ENDLOOP.
    ENDIF.
    if they want to display in the excel sheet pass the internal table to the F.M.
    plz motivate me.
      by rewards.
    thanks
    vinoth

  • Not getting pop up the informative message in BADI

    Hi All,
    Am working on me21n Transaction, and implementing ME_PURCHDOC_POSTED Badi in that method i raised an informative message but it was not getting pop up. any body help me out

    Hi Sangeetha,
    In that ME_PURCHDOC_POSTED  View the Method 'CHECK'
    they given some standard validation  for me21n, Check it, it will helpful for your requirement.
    Regards,
    Venkat.

  • Information Messages while creation of the sales order thru EDI 850

    Hello All,
    I am trying to create a Sales Order using EDI 850. When i am doing the same i am getting the information messages and the Sales Order is not created and the IDOC is in 51 status. I am using the ORDERS05 Idoc Type.
    Following are some of the messages i get:  1. Oldest of open items overdue; 2. Document Complete 3. ISO Country code not found.
    some are valid message and i have already fixed them. But when i create the sales order manually it gives me the sales order number even though i get the information messages.
    Please let me know is there any setting that i have to make for EDI process to counter the information messages.
    Thank You,
    Suresh

    whats the final message you got? that will give you what is the issue.
    in you look at IDOC_INPUT_ORDERS, it does some basic validations first, and collect those errors in ERRTAB and set the status to 51. for manual reprocessing of the IDOC, it doesnt care about those pre validations, and goes directly into VA01 processing

  • Subsequent documents already exist for item - information message

    Hi All,
    Once a sales order item is rejected post creation of subsequent document, the information message in quetion appears for every item repeatedly.
    I have cases were there are thousands of items (in RRB billing drafts for instance), and the reason for rejection is set via the menu: Edit --> Fast Change Of --> Reason For Rejection. The problem is that the message pops-up for every item separately and the users are obliged to press Enter thousands of times.
    Is there any solution for disabling this message under defined circumstances?
    Appreciate your assistance.
    Amit

    Hello,
    Once a sales order item is rejected post creation of subsequent document,
    the information message in quetion appears for every item repeatedly. I have
    cases were there are thousands of items (in RRB billing drafts for instance),
    and the reason for rejection is set via the menu: Edit --> Fast Change Of -->
    Reason For Rejection. The problem is that the message pops-up for every item
    separately and the users are obliged to press Enter thousands of times.
    My suggestion would be why not reject the Sales Order at Header Level. The second option will be try out the transaction code "MASS" and for any list of Sales Order, you can easily reject at a single shot !!
    Regards,
    Sarthak

  • How to display the error message on screen in display mode

    Hi all,
    How to display error message as as status message on the screen(module pool).
    The requirement is if I call the screen, it should get with the error message in the status bar. If I write with error message 'E' error mesage information displays and when I click on exit, it lives the current transaction.
    Thank you!
    Prasad

    Hi,
    Try as below.
    MESSAGE IXXX DISPLAY LIKE 'E'.
    LEAVE TO SCREEN XXXX.
    After displaying the information message like E, leave to the screen you want to navigate or can also navigate to the transaction required.
    Regards,
    Nangunoori.

  • Want to show an information message in PA30 screen

    Hi ABAP gurus,
       For Infotype9000,subtype RHUB(newly configured) ,I want to show an information message in PA30 initial screen for operations 'Create','Copy' and 'Delete'. For that , I have used a BADI (hrpad00infty) , written code in PBO method of the BADI.
    The problem is this, we cannot show the message in PA30 screen,else it is showing a pop-up dialog box (information msg. is missing in the dialog box) in the next screen.
    Our Requirement:
      1. For the above mentioned operations , we want to show the information message in the PA30 initial screen.
    Please post your valuable comments.

    Hi
    What you're trying to do is not really obvious for someone that's familiar with  the usual USER-EXITs and BADIs in HR but there's a possible workaround using the BADI HR_F4_GET_SUBTYPE and its GET_SUBTYPE_TEXT method for your 9000 IT
    METHOD if_ex_hr_f4_get_subtype~get_subtype_text.
    *SUBTY  Importing Type  SUBTY
    *PERSNR Importing Type  PERNR_D
    *TCLAS  Importing Type  TCLAS
    *BEGDA  Importing Type  DATUM
    *ENDDA  Importing Type  DATUM
    *LANGU  Importing Type  SPRSL
    *MOLGA  Importing Type  MOLGA
    *FLT_VAL  Importing Type  INFTYPA
    *STEXT  Exporting Type  SBTTX
      FIELD-SYMBOLS <rp50g> TYPE rp50g.
      ASSIGN: ('(SAPMP50A)RP50G') TO <rp50g>.
      IF sy-subrc EQ 0.
        IF <rp50g>-infty EQ '9000' AND
           <rp50g>-subty EQ 'RHUB'    AND
         ( sy-ucomm      EQ 'INS'  OR
           sy-ucomm      EQ 'COP'  OR
           sy-ucomm      EQ 'DEL' ).
          MESSAGE i398(00) WITH 'Your message'.
        ENDIF.
      ENDIF.
    ENDMETHOD.

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

  • 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

  • Suppressing Information messages

    Hi,
    I need to suppress the information messages which I was getting while creating the sales order in VA01 with reference to the Billing document.
    VA01 >> Order number >> CREATE WITH REF >> BILLING DOC NUMBER >> CLICK COPY >> getting Information Msg (Needs to suppress)
    Getting Information messages saying that  copying Items from Billing to Sales order is not defined.
    This is a copy control procedure . in VTAF transaction no line items were mentioned for the specific Order.
    I just want to suppress the messages which I was getting while copying the line items
    Thanks
    Abdul.

    Why are you doing this via BDC, since you can delete several tables in one go via the repository information system (SE90)?
    Thomas

Maybe you are looking for