Informative message to be displayed in WAD template

Hi,
I am executing a process chain on the click of a button in WAD template.
This process chain has an ABAP variant that gives an informative message on completion.
When i execute this program independently, I am able to see the message but when i execute the process chain through WAD template i cannot see that message.
Can you please help me to show the message in WAD template.
Thanks very much,
Prateek

if you are calling the FM in AT Selection-Screen...
then just use
MESSAGE struc-abcd type 'I'.

Similar Messages

  • Suppress Messages/Warnings to display In WAD Template

    Hi Friends
    I do not want to display to user this messages or warning in WAD Application or Web Template . I want to suppress this. Where to configure for the same but Data Saved message is needed. (Only Data Saved is reqd.)
    Rgds
    Sri G

    Hi Sri,
    you can either show the message box or not show it.
    Maybe you can hide some messages by a script item.
    also you can disable some messages for queries in RSRT.
    regards
    Cornelia
    PS: please close your question and all the others you have opened as soon as they are answered or reply to our / my suggestions if they did not solve the problem.

  • 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

  • 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

  • MIME object/Image(JPG) not displayed in the WAD template

    Hello all,
    I uploaded a .JPG file to mime repository. I used that object my WAD template. When i excute the Temapate, image file is not displayed just showing X mark.
    But i am able to open/see the file from the mime repository.
    What could be the problem? please let me know.
    Reagards
    Ravi

    Hi Anil,
    Thanks for your reply. I have found the problem.
    Imaage that i have kept in mime belongs to https protocol. BSP application with SSL, needs https to execute in the browser.
    when i execute the template, by default WAD is using http protocol, so the image is not displaying, when i use https, the image is being displayed in the WAD output.
    Regards,
    Ravi

  • I have a speedometer in wad template sometimes displays as barchart

    We just installed 3.5 and I created a simple wad template to display a speedometer. When I execute, it sometimes comes up as speedometer, sometimes as barchart. If I collapse it, and expand it again it will flip back and forth between a barchart and speedometer? I would really appreciate any advise. Thanks, Tom

    Hi Friends,
    This is really urgent.Can you please suggest me a way out.
    Regards,
    Gaurav Jasoria

  • Not able to Display Information message fully

    Hi Gurus,
    Here I hav some problem in displaying a information message in the output.
    My requirment is to display a information message--->
    MESSAGE i008(zmsgkc1) with 'Chapter Id is not updated Please log a complain with IBM Helpdesk with ChapterID no'.
    fully in the output of program
    BUT
    while we r executing it it is showing information message in the  o/p like with below fragmented text
    'Chapter Id is not updated Please log a complain wi'
    As we know maximum character limit for displayin info messge is 72 but if it is more than 72 like my case how should i approach to solve the problem.
    Is there any other way to display my full message what i mentioned above ???
    pls hlp
    Regards
    Saifur Rahaman

    Hi Saifur Rahaman.
    Try the following code and Function Module.
    CONSTANTS: c_msg1 TYPE string VALUE 'Chapter Id is not updated',
               c_msg2 TYPE string VALUE 'Please log a complaint with IBM',
               c_msg3 TYPE string VALUE 'Helpdesk with ChapterID no'.
    CALL FUNCTION 'C14Z_MESSAGES_SHOW_AS_POPUP'
    EXPORTING
       I_MSGID             = '0'
       I_MSGTY             = 'I'
       I_MSGNO             = '000'
       I_MSGV1             = c_msg1
       I_MSGV2             = c_msg2
       I_MSGV3             = c_msg3.
    You'll get a pop up with the information message. If you click on the information message you can see the entire message.
    Hope that this helps you with your requirement. Reward accordingly.
    Thanks and Regards,
    Maddineni Bharath.

  • Problem with Javascript in WAD Template

    Hello,
    I have placed zdate_functions.js  in /sap/bw/Mime/Customer/JavaScript/ with the following function...
    function getDateMMDDYYYY()
    {var curdate = new Date();
    var month = curdate.getMonth(); var day = curdate.getDate();var year = curdate.getFullYear();
    var display = month + "/" + day + "/" year;
    return display;
    In the WAD Template I placed the code to 'register'  zdate_functions based on a view source of the original template...
    script src="/sap/bw/Mime/Customer/JavaScript/zdate_functions.js" /script
    Then later I placed this code to get a date in a fiormat I need it in...
    script document.write(getDateMMDDYYYY()); /script
    However, I am not getting anything.  What I am I missing or do you see a mistake in my code?
    Thank you in advance for any assitance.
    Regards, Dean.
    Edited by: Dean Hinson on Apr 24, 2008 5:36 PM
    Edited by: Dean Hinson on Apr 24, 2008 5:45 PM
    Edited by: Dean Hinson on Apr 24, 2008 5:48 PM
          Having trouble posting code to message.

    Cancelled

  • Error while executing WAD template and publishing it to Portal

    I get an error message when i try to execute WAD template and publish in portal
    //start of error message
    Error while loading query metadata
    check the query and portal settings
    RSBOL   018    Java system error:Exception in method process Function.
    //end of error messagge
    But when i click "ok" then the template gets executed and published in portal
    I want to know why is this error message getting displayed.
    BW is at SP14 level (template is created in BI 7.0)
    EP is at SP13 level.
    Is there any compatibility issue between BW and EP.If so, please let me know.
    Please solve this issue.
    Thnaks and Regards,
    Pradeep

    Hi,
    take a look:
    Note 916090 - RFC-error messages in Web Application Designer 2004s
    Hope this helps...
    Regards
    Andreas

  • Java.lang.UnsupportedOperationException Error in WAD Template

    Hi Frnds,
    My WAD Template and the default template to execute Query is working fine for all the Query. But there is only one Query For which when am trying to execute it in portal it's working fine for some selection(when there is no data) and for some selection criteria it's showing "500 Internal Server Error - java.lang.UnsupportedOperationException" error. But the Query is working fine in the TCODE-RSRT.
    500 Internal Server Error
    Information for Administrator:
    To avoid this exception see the steps below. To help SAP better investigate this issue, you will need to provide the diagnostic information from these steps.
    1. Most likely, the issue you are experiencing has already been corrected. Please make sure that the most recent patch level is deployed on your system according to notes 1033246 and 1011241. Starting with SAP NetWeaver  7.0 Support Package Stack 16 patch level 30, BI Java is delivered according to the synchronized delivery process described in the note 1164789.
    2. Please ensure that NetWeaver  Business Intelligence Diagnostics & Support Desktop Tool  does not report any issues on your server according to note 937697. You can start it by clicking here (administrator permissions are required).
    3. When opening any customer message on this issue, please attach:
    Support Desktop Tool support info ZIP  file according to note 937697,
    Required information for reproduction  according to note 948490.
    Error Summary
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause:
    The initial exception that caused the request to fail was:  
    java.lang.UnsupportedOperationException
    java.lang.UnsupportedOperationException
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.selection.ComponentList.getSingleMembers(ComponentList.java:987)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.MemberAccessComparator.prepare(MemberAccessComparator.java:91)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxisTupleElementComparator.prepare(RsAxisTupleElementComparator.java:43)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QvSorting.prepareForTupleElementSorting(QvSorting.java:317)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.sortTuples(RsAxis.java:2013)
    So please help

    Hi,
    please implement the ABAP correction of note:
    1413377 :    java.lang.UnsupportedOperationException
    Import Support Package 22 for SAP NetWeaver 7.0 BI Java into your
    BI system.
    The Support Package is available when Note 1404367 "SAPBINEWS 7.0
    BI JAVA Support Package 22", which describes this Support Package
    in more detail, is released for customers.
    In urgent cases, you can implement the correction instructions by
    applying BI Java patches:
    Apply the BI Java patch Support Package 20 Patch 30 for SAP
    NetWeaver 7.0 BI Java to your BI system.
    Support Package 20 Patch 30 is available when Note 1404370
    "Released -  NW 7.0 Support Package Stack 20 Patch 30 note for BI
    Java", which describes this patch in more detail, has been
    released for customers.
    See Note 1033246 for the planned delivery dates of all BI Java
    patches.
    Regards,
    Venkat
    Edited by: Venkadesh S on Sep 23, 2011 5:12 PM

  • How to suppress all the warning/information messages on BEx & Web (BI 7.0)

    I have already checked all the options using "Messages" option in RSRT.  Still the query execution throws warnings/information messages when run through BEx and Web (through BEx query designer and not WAD).  Users absolutely do not want these messages displayed (error messages are OK though).  Anyone has any inputs?  Thanks!

    i had the same problem and after reading all answers here, i apply what you said about RSRT , it suppose to work because you choose what warrning you want to supress but it did not work
    but you will never believe what i found , i went icon by icon in BEX and in setting icon next to the question mark where you have the option to connect and disconnect from the BW server
    i found this option before "Trace" which is "suppress warning from server" , so i try this and it work, this setting also stay on as much as you want, and it will be applied for all queries you run
    but it will supress all warnings, ok this good for all quieries that you know that they run well , but if you will create a new query , you better put this setting off , until you finalize the query and tested ........it is important to see all warnings when you develope new quieries,   
    i am not sure about the wad but i am sure there is something like that in server setting.
    this is my frist message here, i hope i helped, let me know
    Cheers

  • Values in comboboxes in WAD template

    Hello,
    I have a question about behavior of comboboxes in WAD templates. When I use combobox in WAD template I see after expand combobox all values of relevant characteristic. Is it possible by some setting reduce values only for values which I selected in selection screen or which I receive from customer exit or from workflow.
    Do you have any advices???
    Thank you very much.
    Best Regard.
    Petr

    Hi,
    I can suggest you to do some ABAP coding for the respective links of 1 characteristics to 2nd one. You probably know what the link is - you just need to put it in the code for the variables.
    You can check by using various i_Steps in the customer exit.
    Please refer below for further information about I_Steps.
    SAP Note Number: 492504 - Dependent customer exit-type variables
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/ca10d858c2e949ba4a152c44f8128a/content.htm
    BW Variable Customer Exit I_STEP 3
    /people/surendrakumarreddy.koduru/blog/2009/02/26/using-text-variables-with-customer-exits-in-report-headings
    https://wiki.sdn.sap.com/wiki/display/stage/CustomerExittoRestrictaCharacteristicwithValuesContainingCertainPattern
    Hope this helps.
    Regards
    Raj

  • How to use one WAD template for all the available queries

    Hi,
    I have created a WAD template... Now we have close to 25 queries which will use that template for displaying their output at Portal...
    Is there any way that i don`t have to create multiple copies of my WAD template...
    I.e. all queries would call that same template through portal...

    Hi,
    The Bex report uses the Standard Template 0ANALYSIS_PATTERN while it is executed.
    So if your sure that the look and feel of all the Reports is going to remain same, you don't need to even attach all these Queries to Templates in WAD.
    When you execute the BEx query, it would pick up the standard template and run it in portal.
    But if you want to customize the Report Template:
    1) You can change this standard template 0ANALYSIS_PATTERN  and customize it according to ur requrement in WAD.
    2) Or you can create a copy of this standard template and change it as required. Then change the template in spro (transaction RSCUSTV27) to point to this Z template.
    Let me know if you need more details.
    Regards,
    Forum

  • How to show a WAD template in Portal

    Hi ALL
    How can i show a WAD report (WAD template) in Portal. what are the steps need to followed.
    Like for Bex Application Iview we create it by using a Query String(combination of infocube name and Query name), like wise what should be done from Portal end to get a WAD template in to portal as Iview.
    Regards
    Vijay kumar

    Hi,
    Regarding your issue your template is not active.
    In the first place you need to check if the template is activated in the backend BW system. 
    After activated and launch it from the backend system. Once the BW template is
    active, kindly launch the template from the backend system, please try
    to launch the template in browser version as we can determine the URL
    being launched. If you're able to succesfully launch the template from
    the backend and still you're encountering an error while testing it from
    the iview. Then it should be a problem with the system object configured
    for the iview. There is a need to check if the system alias SAP_BW is
    properly configured to the destination BI content system.
    Please refer the note:
    1048857 - Activating the default Web templates
      In RS_TEMPLATE_MAINTAIN_70 you can choose the version of the
      template to be displayed ("A" per default).
      Please compare and attach the A- and D-version of 0ANALYSIS_PATTERN.
      If the activation from business content was successful, the versions
      are equal. I assume, that they are not equal.
      If they are different it means that the activation was not successful.
      Another indicator would be, that the activation only takes one or two
      seconds. Normally it takes several seconds (up to a few minutes).
      As mentioned in note 1048857 it might happen that the checkboxes, to
      mark the objects for activation, are not checked and therefore nothing
      is activated. For this case note 1070452 is mentioned, which is
      available  in english since today: If the checkboxes are not checked
      and you are unable to do that manually, please use the context menu
      on the object on top to select all objects below. The activate the
      objects again (  > how long does it take, A- and D- version are the
      same afterwards ?)
    It should resolved your issue.
    Thanks,
    Venkat

  • How to Create authorization WAD template for BW3.5?

    Hi All
    How To create Authorization for a Web template in Bw 3.5 ?
    I have a requirement to restrict a particular Web templated in bw 3.5 So that all the end users should not be able to access that template only a particular user should be allowed to view the template?
    I cant find any authorization object for the WAD template in bw 3.5 ?
    Can anyone tell me the procedure to include the WAD template authorization?
    Should i include the authorization template in the Menu - in pfcg??? . i have added the template in the Menu in the PFCG but still it didnt work.
    Thanks

    As you said, the authorizations for the WAD templates should be given in PFCG roles.
    But you have to include the access/authorization details in the authorization objects. WAD templates have been created with including info/multiprovider, info cubes right.. first you have to include these objects inside the Role in PFCG.
    S_RS_COMP,S_RS_COMP1,S_RS_MPRO,S_RS_ICUBE.
    just assigning WAD template in the menu of the roles is to display when you login with the userid.
    Please request your BASIS folks to do the same.
    Hope this would help you.

Maybe you are looking for

  • Tecra A9 - Connecting two external displays using Express Port Replicator

    Hi, I have a Tecra A9 and Express Port Replicator. I'm trying to connect 2 external displays, one connected on the notebook output and the other connected on the docking station (notebook lid closed, not using the notebook display). I can only get on

  • I'm receiving Yahoo emails with an unusual delay

    During the last few months I've been receiving my emails from Yahoo with a 15-30 minutes delay. Something extremely unusual as they previously seemed to be sent almost instantaneously to my phone. I also have a Gmail account configured in my phone an

  • Why doesn't the editor open in Photoshop Elements 12?

    I right click on picture in the organizer and select edit with Adobe Photo shop elements or I select the editor button on the bottom tool bar and it just asks me to log into my adobe ID every time I try but it never opens the editor.

  • OS 10.1MR - 10.1.0.416​0 or .4181. Which one is the correct one?

    Hi - yesterday I received the update notification that a new OS version *.4160 is available from my carrier (Optus Australia). I downloaded and installed but but aside from the white calendar (which I hate) and the Unread shortcut in the hub, I didn'

  • Edit FLVPlayback skin

    I am creating my own skin for the FLVPlayback component. I coped an existing one, renamed it and made some changes very easily. However, I want my player to have fewer buttons. I had a go at removing some buttons from the layout_mc but when I publish