How to find the hidden objects in Webi Rich client  report 4.0 sp 04 ?

Hi,
How to find the hidden objects in Webi Rich client  report  at BI 4.0 sp 04 ?
Best Regards,
ASR

Hi Sai,
Go to Report Element Tab-->There you have a Tab Cell Behaviors.
When you flip between 'With Data' and 'Structure Only' under 'Design' Tab,you can see the some cells will be hide/Un hide behavior,if hiding of cells applied.
Select that cell and then Under 'Cell Behaviors'-->'Hide' Tab-->and choose Show Option.
Regards,
Venkat P

Similar Messages

  • How to find the BADI'S in Web Dynpro ABAP

    Hi Experts,
    I'm new to Web Dynpro ABAP. Can any one tell me, how to find the BADI'S for standarad components like i.e DEMO_ROADMAP .Please tell me, steps/procedure to find the BADI'S in WDA.
    Thanks ,
    Chaitanya
    Moderator message: wrong forum, please have a look in the "Web Dynpro ABAP" forum.
    Edited by: Thomas Zloch on Jun 18, 2011 4:30 PM

    Hi Nagaraju,
    There is another fool-proof method to find BADIs while executing a transaction -
    1. Goto transaction SE80
    2. Select "Class / Interface", type in the class name CL_EXITHANDLER and 'Enter"
    3. On the method GET_INSTANCE, create a Breakpoint just after the call to cl_exithandler=>get_class_name_by_interface at the following line - 
    <i>CASE sy-subrc.</i>
    Once the breakpoint has been set, call the transaction you wish to find the BADI for and you will notice that the debugger opens everytime a BADI is about to be called. You could get the name of the BADI from the the value of the variable "EXIT_NAME".
    CL_EXITHANDLER is a service class that is called by standard SAP code everytime a BADI is about to be called. So, setting a breakpoint here should let you know exactly which BADIs are called.
    Hope this helps!
    Thanks,
    Rohini.

  • How to find the current state in web dynpro

    Hi,
       Can any one tell me how to find the current state of system (idle /not idle).
    Thanks,
    Krishna..

    Please explain further.  I don't understand how you are expecting to test for idle.  If ABAP code is being executed, then you know that the application is not idle. Only a server event could trigger code execution. Only a timedTrigger would be able to tell you that a certain amount of time has passed without activitity - although the event of the timer itself will be a server event that constitutes activity.

  • Web rich client -- report tabs missing in edit mode

    Hello,
    A report was created in web Rich client and then  was exported in the BO repository. In view mode, we
    see all tabs, but in edit mode,only two tabs are displayed.
    any idea please?
    Thanks a lot.

    hi,
    I also faced the same issue.
    I could replicate the issue suceessfully on a consistent basis.
    STEPS to replicate the issue
    1.     Create a new webi report using Island Resorts Marketing Universe
    2.     Query Panel Objects
    a.     Country, Resort, Service, Number of guests
    3.     Run query  (Tab 1 is created automatically)
    a.     Report 1 u2013 Table containing above objects
    4.     Right Click Report 1 - >Insert Report -> rename it to u2018Crosstabu2019
    5.     Move the report tab to Left such that Crosstab appears as first tab
    6.     Drag Crosstab from Templates.
    a.     Pull Country and Resort objects as rows to Crosstab
    b.     Pull Service as Column to Crosstab
    c.     Pull Number of guests as measure to Crosstab
    7.     Select Country -> Insert Break
    8.     Select Resort -> Insert Break
    9.     Select Resort First and Country Second -> Click on Merge Cells button
    10.     Select No
    11.     Now again click on Merge Cells button
    12.     Select Yes this time.
    13.     Save the report.
    14.     View the report from Infoview. You will see both tabs
    15.     Edit the report. (You cannot edit the second tab - Report 1. Edit the first tab u2018Crosstabu2019)
    16.     only one tab is visible. Other tab u2018Report 1u2019 is missing.
    Observations:
    Report Footer appears as the top section in Map -> Structure
    So my conclusion is when a reverse merge is applied on Crosstab with breaks, this issue occurs.
    But i don't know how to recover the tabs in Edit mode.
    Please let me know how to recover the missed tabs in Edit Mode. Also let me know the other scenarios which might lead to the same issue.
    Regards,
    Vamsee

  • How to find the local objects in the system

    Hi experts,
    How can i find what are all the local objects i created and transportable objects i created in the system.
    Thanks in advance.
    regards,
    Gopalakrishnan Ulagajothi

    Hi
    check in table TADIR you will get all kind of developments done in system just filter as per your requirement for local objects, give Package  (DEVCLASS) equals to $TMP.
    and for transportable object you have a request that you can check in same table as well as you are able to check in SE09 all transporatble objects.
    hope this will help

  • How to find the URL of deployed Web services?

    Hi,guys. I have created a Web service, and deployed to WAS.But where is the accessing URL? WAS has created several WSDLs for the serviece, but I can not find the URL in the files.
    I think that the URL looks like "http://localhost:50000/XISOAPAdapter/MessageServlet?channel=:WAS2:CC_GIS_Equipment_Create_SOAPOUT&version=3.0&Sender.Service=WAS2&Interface=urn%3Azpepc%3Agis%3Aequipment%3Amaintenance%5EMI_GIS_Equipment_Create"

    my accessing code is:
    public class VacationClient {
         public static void main(String[] args) throws Exception {
              System.out.println("SOAP call start");
              VacationClient helloSOAPClient = new VacationClient();
              String resultValue = helloSOAPClient.doSOAPRequest(
                        "VacationCheckerService", "getVacationDays",
                        "employed_years", 20);
         public String doSOAPRequest(String _strURI, String _strMethodName,
                   String _strName, int _strValue) throws Exception {
              Call call = new Call();
              call.setTargetObjectURI("urn:" + _strURI);
              call.setMethodName(_strMethodName);
              call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
              Vector params = new Vector();
              params.addElement(new Parameter(_strName, Integer.class, new Integer(
                        _strValue), null));
              call.setParams(params);
              System.out.println("&#24320;&#22987;");
              Response resp = call
                        .invoke(
                                  new URL(
                                            "http://10.136.31.121:50000/TestWeb_Config1_SoapServlet"),
              if (resp.generatedFault()) {
                   Fault fault = resp.getFault();
                   System.out.println("failed&#65281;");
                   return "failed&#65281;";
              } else {
                   Parameter result = resp.getReturnValue();
                   System.out.println("sucessful&#65281;"+result.getValue().toString());
                   return result.getValue().toString();
    But the URL is not correct ,and an exception is throwed:
    Exception in thread "main" [SOAPException: faultCode=SOAP-ENV:Client; msg=Software caused connection abort: recv failed; targetException=java.net.SocketException: Software caused connection abort: recv failed]
         at org.apache.soap.transport.http.SOAPHTTPConnection.send(SOAPHTTPConnection.java:358)
         at org.apache.soap.rpc.Call.invoke(Call.java:248)
         at test.VacationClient.doSOAPRequest(VacationClient.java:44)
         at test.VacationClient.main(VacationClient.java:18)

  • How to find the t-code of a given ABAP report, if any?

    How to find tcode if any assigned to a report program (ABAP) ?
    Instead of going to SE38, then test - run direct thru F8. An alternate fast way?
    Thanks,

    Hi,
    In order to check T.code assigned to an ABAP program, go to se38 and click on display which will open the ABAP code of the program. Now on this screen press CtrlShiftF5. On the left side of the screen you will find the object associated with the ABAP program. Expand on the object Transactions, which will show you the T.Code associated with the program.
    Hope this helps.
    VK

  • How to find the name of query for a given report

    Hi All,
    I am having the name of a report and i need to find out the name of query for that report . Plz tell me how to find out the name of the query for a given report.
    Thanks.
    Regards,
    Pooja Joshi.

    Use this FM
    RSAQ_DECODE_REPORT_NAME
    This FM takes program name as I/P and gives Query Name as O/P.
    This FM uses the structure AQADEF to fetch the data.
    Hope this helps.
    Regards
    Vinayak

  • How to find the changed objects of a transformation

    Hi,Experts
    If you someone changed the transformation,I want to know how he changed it?What I mean is which object,which rule he changed.How can i know that?whether the system can provide that information or not?
    Thanks!
    Best regards!
    Edited by: kun luo on Apr 28, 2008 11:26 AM

    Hi Kun,
                 Check with version managemnet....
    http://help.sap.com/saphelp_nw70/helpdata/EN/57/38e0fb4eb711d182bf0000e829fbfe/frameset.htm
    Regards,
    Vijay.

  • How to close the Sound object

    I'm using Flash CS3, running code in ActionScript 3.
    I use the Loader class to load a child SWF file, which then
    takes over the entire area on my website that is reserved for
    Flash. If the user decides to stop watching the SWF file before it
    is completed, he hits the "close" button within the child SWF,
    ultimately causing the Loader.unload() method to be executed. So
    far, so good, only the sound from the remaining portion of the SWF
    file keeps playing. According to the Flash Docs for the
    Loader.unload() method:
    "As a best practice, before you unload a child SWF file, you
    should explicitly close any streams in the child SWF file's
    objects, such as LocalConnection, NetConnection, NetStream, and
    Sound objects. Otherwise, audio in the child SWF file might
    continue to play, even though the child SWF file was unloaded."
    It then gives an example that assumes you already have access
    to the Sound object, so closing the Sound object is done by:
    mySound.close();
    The only problem is that I have no idea how to access the
    Sound object when I use the Loader.load() method. Where is this
    beast? I can't seem to find anything in the documentation that
    tells me how to find the Sound object after calling Loader.load().
    As a temporary fix, I modified the target SWF file so that when the
    "close" button is hit, it calls the "stop()" function; however,
    this only stops the sound, it does not close the associated Sound
    object, and I presume it continues to lurk around in memory with
    nothing useful to do. (When the user hits the "close" button in the
    child SWF file, it creates a "bubbling" event so that the Loader
    class can call the Loader.unload() method on it.)
    I've attached code for your reference.
    Any help is deeply appreciated!
    -Dan

    Ack! Looks like I hijacked this thread, sorry.
    I'm doing almost exactly the same thing the OP is doing...
    Loader class to load an external SWF (which is a video file FLV).
    If the user hits the "close" button on the video, the video goes
    away as it should but the audio continues.
    I understand that I need to close any NetConnection and
    NetStream objects in addition to unloading the movie. What I don't
    understand is how to do that. I'm sure that it's a syntax thing I'm
    just not getting right. I would just really like a more detailed
    explanation of stopping NetConnections and NetStreams (but an
    explanation for the not-so-actionscript-experienced LOL).
    Thanks.

  • How to find the number of references to an object in a big application

    How to find the number of references created for a given object in a big application environment.
    That means, if i give any object name (of my application) as input, then how can i find the[b] number of references created for that particular object ??

    Please don't post the same question multiple times.
    I've answered your question in the other thread here:
    http://forum.java.sun.com/thread.jspa?messageID=4312939

  • How to find the number of references created for a given  object ??

    How to find the number of references created for a given object in a big application environment.
    That means, if i give any object name (of my application) as input, then how can i find the[b] number of references created for that particular object ??

    Please do not post the same question multiple times.
    As for your original question, there is no direct way to do it.
    Especially not the way you phrased it,
    since objects don't have "names".
    Applications also don't have "names".
    They have classes and instances.
    Also, there are 2 related issues, and I'm not sure which one is the one you asked.
    #1. Finding the number of references to the same object.
    Eg.
    Map<String,String> a = new HashMap<String,String>();
    Map<String,String> b = new HashMap<String,String>();
    Map<String,String> c = a;In this case, there are only 2 objects.
    The first object has (at least) 2 references pointing to it.
    The second object has (at least) 1 reference pointing to it.
    (There may be more, if the HashMap library keeps
    references to these things, or if the HashMap object has
    some internal cyclic references...)
    If you're asking this, then it can't be done.
    It's an active research topic in universities
    and software research labs, called "alias analysis".
    Type it in google, and you'll see people are working hard
    and having little success so far.
    #2. Finding the number of instances created from a class.
    In this case, what you have to do is to add a counter to
    the constructor of the class. Every time an object is constructed,
    you increment the counter. Like this:
       class MyClass
           public static int counter = 0;
           public MyClass( )  { counter++; }
        // Then later in your program, you can do this:
        MyClass a = new MyClass();
        MyClass b = new MyClass();
        System.out.println(MyClass.counter); // It should show 2Note: you won't be able to do this to every class in the system.
    For every class you care about, you have to modify its constructor.
    Also: when an object is deleted, you won't always know it
    (and thus you won't always be able to decrement the counter).
    Finalizers cannot always work (read Joshua Bloch's
    "Effective Java" book if you don't believe me), but basically
    (1) finalizers will not always be called, and
    (2) finalizers can sometimes cause objects to not be deleted,
    and thus the JVM will run out of memory and crash

  • How to find out which objects are at the end of the datafiles

    My Scenario is having a tablespace of 65G but the data is 5G and that is at the end of datafile for that we are not able to resize the datafile our though is to find out what are the objects at that end of datafiles and will either alter move <owner.tablename> move or alter index <owner.index> rebuld online.
    For that how to find out which objects are at the end of the datafiles.

    >
    My Scenario is having a tablespace of 65G but the data is 5G and that is at the end of datafile for that we are not able to resize the datafile our though is to find out what are the objects at that end of datafiles and will either alter move <owner.tablename> move or alter index <owner.index> rebuld online.
    For that how to find out which objects are at the end of the datafiles.
    >
    You may want to copy this and add it to your toolkit
    See 'What's at the End of the File?' in this Tom Kyte article from the Sept 2004 Oracle Magazine
    http://www.oracle.com/technetwork/issue-archive/o54asktom-086284.html
    And this AskTom blog shows you how to generate a script containing ALTER statements toresize your datafiles to the smallest possible. You can 'pick and choose' from the ALTER statements to do what you want.
    Then of course, you can use techniques from this article by Oracle ACE, and noted author, Jonathan Lewis
    http://jonathanlewis.wordpress.com/2010/02/06/shrink-tablespace/

  • How to find the difference in object definition between two databases

    Hi,
    Can any one suggest me how to find the difference in object definition between two different databases. Is there any tool or by OEM? If so how?
    Regards
    Naveen

    this link may be helpful...
    http://www.dbspecialists.com/scripts.html

  • How to find the WhereUsed List for a Business Object Event?

    How to find the WhereUsed List for a Business Object Event?

    Can anybody let me know how to get which
    Whereused  function will get the data from
    different Werks in multi-level?
    Any sample program please!!!

Maybe you are looking for