Report is not showing a prompt for a Charactorstic Filter Drill Down..!!

Hello Experts,
Recently my project was enhanced with some more new project and mixed it with my project.
Now my issue is before my new project was mixed into this project. We have the option..when a material drill down we come to see the Filter window.
In that my old project, for the users comfortability and for knowing to users that there are more than 200 materials avaialble like that..in that filter they put one prompt message " has more than 200 values ".
But after mixing up the enhanced new project, now..we are unable to see the above prompt message in Filter window..when material drill down.
User requirement is to again users need to see that kinf of prompt in the materils drill down filter window.
Requesting you , please reply me if any body faced this kind of issue in your projects or come to know from ur end.
Thanks,
SN.

Hi,
This Prompt message would have been set in WAD(XHTML Coding section) in your old project. Now , you cross check your Web template for the same. Your issue will be resolved.
Regards,
Suman

Similar Messages

  • Crystal Report does not show the webelement for SAP System

    Hi all,
    I have added web element in Crystal report for SAP system (BI or R/3) . But it does not show the control. It shows only scipt.It does not render the HTML.
    But if I add the webelement for Excel sheet ,It shows the control.
    How can I add web element for SAP System? Can't we use web controls in SAP system ?
    Help me in this regard.
    Regards
    Hemalatha J

    Hi,
    We have the same problem, did you find the final solution?
    Thanks in advance
    Regards.

  • Report S_ALR_87012357 not showing VAT amount for directly entered FI items

    Hello experts,
    In our system, the VAT and sales amount are calculated in another system (not ERP)
    The VAT amount together with sales amount is transferred to FI via the standard iDoc ACC_DOCUMENT03
    The problem that occur is that the report S_ALR_87012357 cannot calculate/display the VAT for such FI documents.
    When posting FI document in FI, this is not a problem, then VAT is displayed correctly in S_ALR_87012357
    How can we get around this problem?
    Is is even possible with iDocs?

    I'm not sure this is still an opne issue:
    You need to to use:
    This works with deductible VAT
    first:
    E1BPACTX09 to create VAT item
    fields for EU on USA diferent fields are used
    ITEMNO_ACC
    GL_ACCOUNT
    TAX_CODE
    TAX_RATE
    and
    E1BPACCR09 for values
    ITEMNO_ACC
    CURRENCY
    AMT_DOCCUR
    AMT_BASE

  • WT reporter does not show split for tax authorities!

    Dear all:
        I need to report for all employees some WTs of taxes, but wt reporter does not show the splits for them (to distinguish federal from statal authorities payments), it is like summarises all the same WTs... I tried payroll recon. report but this one does not output the data in ALV format (im in 4.6 version) so it is not useful to run in bulk
    Do you have any work around for this?
    I would appreciate any tip or workaround on this,
    Thank you!

    Hi
    1. Allocated costs are always treated as Fixed costs, unless you have booked the expenses in FI using Activity Type as Aux Account assignment object
    2. Check whether these costs are included in Inventory valuation in your Cost Comp Str in OKTZ... If not relevant for inv valuation, these costs wont show up for Variance calculations
    br, Ajay M

  • BI publisher report is not showing all the data

    Hi All,
    I have created a report using BI Publisher in R12. The report is not showing all the records.
    I have checked the result XML it is also not having all the data. My query returns 846 rows but my report only has 662 rows.
    what might be the issue.please give me some idea to resolve this issue.
    Thanks in advance.
    Regards,
    P.Kalidoss

    Hi Arun,
    In the following code: public SelectItem[] getAllPrinters() {
    if (allPrinters == null) {           // allPrinters is not defined. what type of object it is
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    allPrinters = new SelectItem[printers.length];
    for (int i = 0; i < printers.length; i++) {
    SelectItem printer =
    new SelectItem(printers.getName(), printers[i].getName());
    allPrinters[i] = printer;
    return allPrinters;;;
    Variable allPrinters is not defined. what type of object it is?
    And also the same variable is referenced here <af:selectOneChoice label="Available Printers" partialTriggers="cb1"
    value="#{pageFlowScope.applicationPrinterBean.selectedPrinter}"
    id="soc1"
    autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.applicationPrinterBean.allPrinters}" id="si1"/>
    </af:selectOneChoice>.
    Thanks.

  • Report does not show Quotation price

    Dear friends,
    What may be the reason, that my report does not show the quiotation price, though Sales order price, revenue price shows normal?
    Please give some probabilities.
    Rao

    check your plan profile OPSB if automatic rev planning for both Quotation and Sales order is ticked

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • After upgrading to iOS 8, the weather app does not show up results for any of the Indian States/cities

    After upgrading to iOS 8 on my iPhone 5, the weather app does not show up results for any of the Indian States/cities. Can Apple look into this or does anyone have a solution to this.

    Swipe from bottom of days listed ("Wednesday, Thursday, Friday, etc")  upwards.  I thought it was gone too but it's still there~just takes different way to access it.

  • Crystal report Viewer Not Showing Control Bar Button Icons

    Hi
    I am using Crystal report along with .net 2003 in web application.
    While executing, the report  its not showing any errors,but the control bar buttons(print, export, next page last page, previous page, first page, etc ) are showing without there icons.
    These invisible buttons can be found by placing the mouse over the specified area, then it shows the tool tip like print etc.
    Please give me solution.

    Would you like to have a look at these:
    [1.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303336333633373339%7D.do]
    [2.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133383333333933313333%7D.do]
    [3.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303332333533323337%7D.do]
    [4.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333733363334%7D.do]
    [5.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313336333333303335%7D.do]
    [6.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393338333833393338%7D.do]
    Hope this helps!
    AG.

  • My mini with IOS 7.0.6 is not showing an option for wish list in the options. What is happening?

    My mini with IOS 7.0.6 is not showing an option for wish list in the options. What is happening?

    The three Rs to IOS, try them in order until the issue is resolved;
    Restart - Press and hold the Power button until the red Power Off stripe appears. Swipe to power off. Press and hold the Power button to turn the device back on.
    Reset - Press & hold the Power and Home buttons simultaneously, ignoring the red power off slider, until the Apple logo appears. Then release both buttons.
    Restore - Connect the device to the Mac or PC with which it is usualy synced and use the iTunes app to restore the device to the factory settings. You can then restore the device with a previously made backup or set it up as new.

  • Listener not showing the instance for informix.

    Hi All,
    I am using oracle gateway 11g and here I just discovered that the one of the database listener not showing the instance for the informix gatways, though it has already configured. whereas on other database , the listner is showing the instances for informix database. it was running fine few days back though.
    would appriciate , if you coule let me know that why it suddenly stop responding ?
    ----------------- OK Listener ----------------------------
    ptmsap> lsnrctl status LISTENER_PTMSAP
    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 29-JUL-2012 05:07:07
    Copyright (c) 1991, 2011, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=10.222.68.34)(Port=1621))
    STATUS of the LISTENER
    Alias                     LISTENER_PTMSAP
    Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date                19-JUL-2012 10:25:25
    Uptime                    9 days 18 hr. 41 min. 41 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /db/ptmsap11/oracle/product/11.2.0/network/admin/listener.ora
    Listener Log File         /db/ptmsap11/oracle/diag/tnslsnr/tbx4new/listener_ptmsap/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.222.68.34)(PORT=1621)))
    Services Summary...
    Service "MSCARD4" has 1 instance(s).
      Instance "MSCARD4", status UNKNOWN, has 1 handler(s) for this service...
    Service "as400" has 1 instance(s).
      Instance "as400", status UNKNOWN, has 1 handler(s) for this service...
    Service "db2test" has 1 instance(s).
      Instance "db2test", status UNKNOWN, has 1 handler(s) for this service...
    Service "ptmsap" has 1 instance(s).
      Instance "ptmsap", status UNKNOWN, has 1 handler(s) for this service...
    Service "tg4ifmx" has 1 instance(s).
      Instance "tg4ifmx", status UNKNOWN, has 1 handler(s) for this service...
    Service "tg4trai" has 1 instance(s).
      Instance "tg4trai", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LISTENER_PTMSAP =
      (ADDRESS_LIST =
            (ADDRESS =
              (PROTOCOL = TCP)
              (Host = host_ip)
              (Port = 1621)
    SID_LIST_LISTENER_PTMSAP =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = ptmsap)
          (ORACLE_HOME = /db/ptmsap11/oracle/product/11.2.0)
          (PRESPAWN_MAX = 10)
       (SID_DESC=
         (SID_NAME=tg4ifmx)
         (ORACLE_HOME=/db/ptmsap11/oracle/product/11.2.0)
         (PROGRAM=dg4ifmx)
       (SID_DESC=
          (SID_NAME=tg4trai)
          (ORACLE_HOME=/db/ptmsap11/oracle/product/11.2.0)
          (PROGRAM=dg4ifmx)
       (SID_DESC=
         (SID_NAME=db2test)
         (ORACLE_HOME=/db/ptmsap11/oracle/product/11.2.0)
         (PROGRAM=dg4db2)
       (SID_DESC=
         (SID_NAME=as400)
         (ORACLE_HOME=/db/ptmsap11/oracle/product/11.2.0)
         (ENV="LD_LIBRARY_PATH=/db/ptmsap11/oracle/product/11.2.0/dg4db2/driver/lib:/db/ptmsap11/oracle/product/11.2.0/lib")
         (PROGRAM=dg4db2)
      (SID_DESC=
        (SID_NAME=MSCARD4)
        (ORACLE_HOME=/db/ptmsap11/oracle/product/11.2.0)
        (PROGRAM=dg4odbc)
        (ENVS=LD_LIBRARY_PATH=/opt/minisoft:/db/ptmsap11/oracle/product/11.2.0)
    +++++++ Not OK Listener++++++++++++++++++
    LISTENER_SMI =
      (ADDRESS_LIST =
            (ADDRESS =
              (PROTOCOL = TCP)
              (Host = host_ip)
              (Port = 1821)
    SID_LIST_LISTENER_SMI =
      (SID_LIST =
         (SID_DESC=
         (SID_NAME=SMICAN)
         (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
         (ENV="LD_LIBRARY_PATH=/pdsdev/ptmqa/oracle/product/11.2.0/db/dg4db2/driver/lib:/pdsdev/ptmqa/oracle/product/11.2.0/db/lib")
         (PROGRAM=dg4db2)
            (SID_DESC=
            (SID_NAME=SMIINTL)
            (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
            (ENV="LD_LIBRARY_PATH=/pdsdev/ptmqa/oracle/product/11.2.0/db/dg4db2/driver/lib:/pdsdev/ptmqa/oracle/product/11.2.0/db/lib")
            (PROGRAM=dg4db2)
            (SID_DESC=
            (SID_NAME=SMIMEL)
            (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
            (ENV="LD_LIBRARY_PATH=/pdsdev/ptmqa/oracle/product/11.2.0/db/dg4db2/driver/lib:/pdsdev/ptmqa/oracle/product/11.2.0/db/lib")
            (PROGRAM=dg4db2)
            (SID_DESC=
            (SID_NAME=SMIMRKTS)
            (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
            (ENV="LD_LIBRARY_PATH=/pdsdev/ptmqa/oracle/product/11.2.0/db/dg4db2/driver/lib:/pdsdev/ptmqa/oracle/product/11.2.0/db/lib")
            (PROGRAM=dg4db2)
    LISTENER_PTMQA11 =
      (ADDRESS_LIST =
            (ADDRESS =
              (PROTOCOL = TCP)
              (Host = host_ip)
              (Port = 1521)
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = ptmqa11)
          (ORACLE_HOME = /pdsdev/ptmqa/oracle/product/11.2.0/db)
          (PRESPAWN_MAX = 10)
       (SID_DESC=
         (SID_NAME=tg4ifmx)
         (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
         (PROGRAM=dg4ifmx)
       (SID_DESC=
          (SID_NAME=tg4trai)
          (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
          (PROGRAM=dg4ifmx)
       (SID_DESC=
         (SID_NAME=db2test)
         (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
         (PROGRAM=dg4db2)
       (SID_DESC=
         (SID_NAME=as400)
         (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
         (ENV="LD_LIBRARY_PATH=/pdsdev/ptmqa/oracle/product/11.2.0/db/dg4db2/driver/lib:/pdsdev/ptmqa/oracle/product/11.2.0/db/lib)
         (PROGRAM=dg4db2)
      (SID_DESC=
        (SID_NAME=MSCARD4)
        (ORACLE_HOME=/pdsdev/ptmqa/oracle/product/11.2.0/db)
        (PROGRAM=dg4odbc)
        (ENVS=LD_LIBRARY_PATH=/opt/minisoft:/pdsdev/ptmqa/oracle/product/11.2.0/db)
    )Regards
    Edited by: 937853 on Jul 29, 2012 2:10 AM

    thanks all, I was able to solve the issue. it was indeed a port no , which caused this issue.

  • Chess.app runs OK on my MacBookPro under OS 10.6.8. Under the same OS on my Mac Pro Chess.app will not show the hint for the next move.

    Chess.app runs OK on my MacBookPro under OS 10.6.8. Under the same OS on my Mac Pro Chess.app will not show the hint for the next move. The detail on the desktop MacPro is 
    Model Name:    Mac Pro
      Model Identifier:    MacPro1,1
      Processor Name:    Dual-Core Intel Xeon
      Processor Speed:    2.66 GHz
      Number Of Processors:    2
      Total Number Of Cores:    4
      L2 Cache (per processor):    4 MB
      Memory:    1 GB
      Bus Speed:    1.33 GHz
      Boot ROM Version:    MP11.005C.B08
      SMC Version (system):    1.7f10
      Serial Number (system):    G87212BJUPZ
      Hardware UUID:    00000000-0000-1000-8000-0017F20A3C06

    Hello
    did the keaybord shortcut work ?
    For info chess app come from system install
    HTH
    Pierre

  • Onlive TV listing does not show HD listing for series when I try to create a recording

    It happened now already several times the the "Online TV Listing" does not show HD listing for series when I try to create a recording. Instead, it will show two series options in SD. Is this to make people use less bandwidth?
    Here is what I am doing:
    I go to this link  https://www.verizon.com/fiostv/myservices/members/fiostv.aspx
    Then to ...........DVR Manger
    select  ...........Record A Show
    I type search e.g. Nathan for You
    I click on ........Search
    and I select ......Click here to Show Details
    Then I get to chose from 2 (the same) SD channels.
    Nathan for You
    190 Comedy Central
    Tue, Jul 29 10:30 PM
    Record Show Record Series
    Nathan for You
    190 Comedy Central
    Tue, Aug 05 10:30 PM
    Record Show Record Series
    But there is the same on channel 690 HD!
    This happens not only to this particular channel!
    I remember it used to show also the HD channels.
    The only way to schedule in HD is to find the listing in the TV schedule, at the right time and there you will get the
    correct choices for both SD & HD.
    Can this be fixed?
    Thanks!

    On the right click on HD under video quality to filter it. 

  • Device not showing in iTunes for 'Wi-Fi Sync' and 'Sync Now' on phone only works(appears dark) when plugged in via USB so kinda defeats object. Any ideas please?

    Device not showing in iTunes for 'Wi-Fi Sync' and 'Sync Now' on phone only works(appears dark) when plugged in via USB so kinda defeats object. Any ideas please?

    Had the same issue. Tried everything that was posted for troubleshooting bye apple and on the discussions.
    Finally, tried something that solved it and it works flawlessly now. I changed my wireless router.
    I was using my ISP's supplied ZyXEL PN660 ADLS2+ with Wireless N. Swtiched to an older Linksys WRT160N and it is working beautifully now.
    Take a look at your router, make sure the firmware is up to date, and that UPnP is enabled, and if all is correct, and you have done everything else, try another Wireless router if you can.

  • Bex report does not show loaded data at once

    Hi experts,
    Why Bex report does not show loaded data at once after loading is finished but after some time?
    Could be the reason of it:
    a) huge amount of data in infocube.
    b) there are no deleting/creating indexes before/after loading, because it takes too much time
    c) anothe reason?
    Thank you,
    Tigr_Z

    Hi Tigr,
    A and B both can be the reasons behind, but normally in case of B option the results on report output can be wrong like duplicates sort of showing you double figures.
    C - it can be resource issue, so please look into all and double check with basis if thats the case.
    Regards
    Sunny

Maybe you are looking for