Information Broadcating problem

Hi All,
                   When we are trying to configure  the Information Broadcasting  from Bex analyzer  it is throwing " error : 0BROADCASTING_TEMPLATE " . We have installed this from Business Content  but no luck . We are on NW 2004s .Do we need Java stack for Information Broadcasting .

Hi Ajay,
I got some document where I can see in “New Distribution Type” (Information Broadcasting Settings) options like
1.     Fill OLAP Cache,
2.     Fill MDX Cache,
3.     Fill Precalculation Store
4.     Send E-Mail etc.
Out of these I am only seeing Send-Email option and not the others. Is this because we are not using Java Stack. Further I think in Output Option we wont get PDF type as we are not using Java Stack. Please let me know if my understanding is correct

Similar Messages

  • I can't edit song information the problem is not in all the items

    I can't edit the information of my songs like gnre, artist, etc... when I start to use itunes I had another computer, when I change of computer I decide to copy my library to a external hard disk, I don't know if this is creating the problem, will be great to receive help.

    Right-click on your main iTunes folder and click Properties, then go to the Security tab and click Advanced. If necessary grant your account and SYSTEM full control of this folder, subfolders and files, then tick the option to replace permissions on child objects which will repair permissions throughout the library. This is the XP dialog but Windows Vista/7 shouldn't be too different.
    If it won't let you change the permissions use the Owner tab to take ownership from an account with administrator privileges.
    tt2

  • "Error in parsing VOL information: null" problem

    Hi. I have a problem where I'm using a the IBM codec and JMF to render a live mp4v-es/rtp stream from an axis IP camera. The DataSource is showing that i have the data streaming and i create and realize the player but when I go and start the player, it tells me "Error in parsing VOL information: null" and stops the player. There is no information whatsoever on this error anywhere and I don't know what I'm doing wrong. It seems to happen when BasicController.TimedStartThread.start() is called. What is the VOL information????? I am only streaming video so maybe it's expecting audio as well??? I really dont know. Help!!!!!!
    Also, is the IBM MPEG4 codec the only one that decodes mp4v-es/rtp streams?? The FOBS one does its for mp4v/rtp, mp4v-es/90000 but not this exact one.

    VOL in this case means "video object layer". It's the part of an mpeg4 bitstream that carries basic information on the stream. Without having read that no decoder will be able to configure itself. VOL headers are transmitted frequently, but not on a "per frame basis", there may be a couple of seconds between them. If you have any way of increasing timeouts, waiting a little longer might help.
    The IBM codec may be the only one to decode those streams in JMF, I don't know. It's certainly not the only one in the real world.
    nils

  • Billing information verification problem, it is charging my account but not working

    I just got an IPhone 4s. Attempting to download the app facebook I was forced to verify my payment information. I entered my information, correctly I may add, and it said it did not match my bank's records. So I called my bank, and called Apple and neither could explain why it was not working. I have verified the information countless times. When I spoke to an Advisor on the phone they said they had previously had a personal problem where Road instead of RD caused an issue. I verified every piece of information and it is all correct. If it was not correct, I would not have twenty $1 verification charges on my bank account.
    The information is 100% correct in both places, yet the only response I have gotten (via the ridiculous email support) is that I need to make sure my information is correct. It is. If it was not I would not have twenty $1 charges on my account. Here is a screenshot just to prove how many charges there are. 2

    Is that a joke? I have done that multiple times. Like I said my information is all correct. If it was not correct I would not have twenty $1 charges on my account. Is it that hard to make the connection, because I got the same useless response from the itunes support via email.
    One more time. Nice and simple so everyone can understand.
    1. The information I enter is correct.
    2. It is charging my account.
    Now this is where it gets complicated. I know its tough, but stick with me.
    3. If the information was not correct, it would not charge my account.
    Wow. Look at that. Logic. Its a miraculous thing.

  • ESS Personnal Information workset Problem.

    Hi all,
    We are working on mySAP ERP 2004 60.2 version of ESS.We have successfully installed the business package. But there is strange problem.
    In the personnal information workset we have only part of data visible whereas the rest of them are not.
    Do any of them know how to resolve it.our BP is deployed on the same J2EE engine of portal (SP 12). The backend is ECC 5 and WAS is 640.
    Is backend has to be configured to fetch the rest of the data or portal side has some problem?
    Any help will be appreciated.
    Regards,
    Vivek

    Hi Vivek,
             Could you please elaborate on the problem:
    "In the personnal information workset we have only part of data visible whereas the rest of them are not."
    Regards,
    ramesh

  • DataTable retrieves false (old) information (sometimes problem)

    I've been scratching my head for days now about a problem I'm experiencing with a datatable showing me old information.
    I have a simple table which stores Clients
    clientid serial (auto increments)
    client char This stores the name of the client.
    I have a dataTable as below:
                  <h:dataTable id="clientTable" rows="10"
                  rowClasses="list-row-odd,list-row-even"
                  value="#{Client.listClients}" var="item"
                        binding="#{Client.data}" >
                        <h:column>
                            <f:facet name="header">
                                <h:outputText value="#{msg.tbl_no}" />
                            </f:facet>
                   <h:outputText value="#{item.no}" />
                        </h:column>
                  <h:column>
                   <f:facet name="header">
                       <h:outputText value="#{msg.tbl_name}" />
                   </f:facet>
                   <h:outputText value="#{item.client}" />                         
                  </h:column>
                  <h:column>
                   <f:facet name="header">
                       <h:outputText value="#{msg.tbl_action}" />
                   </f:facet>
                            <h:commandLink id="edit" action="#{Client.editClient}">
                                <h:outputText value="#{msg.tbl_edit}" />
                            </h:commandLink>
                            <h:outputText value="#{msg.tbl_seperator}" />
                            <h:commandLink id="del" action="#{Client.delClient}">
                                <h:outputText value="#{msg.tbl_del}" />
                            </h:commandLink>                       
                  </h:column>
              </h:dataTable>Here are the relevant parts of the Client (backing bean) class
        public List getListClients(){
            Session session = HibernateUtil.getSessionFactory().getCurrentSession();
            session.beginTransaction();
         List result = session.createQuery("from ClientBean").list();
            for (int i = 0; i < result.size(); i++){
                ClientBean clientbean = (ClientBean) result.get(i);
                clientbean.setNo(i % 10);
         return result;
        // Editing Client
        public String editClient(){
            ClientBean selectedClient = (ClientBean) this.getData().getRowData();         // Get the selected item from dataTable
            FacesContext ctx = FacesContext.getCurrentInstance();                               // Get the Faces Context
            ctx.getExternalContext().getSessionMap().put("EditClient", selectedClient );    // Save item as sessionmap
            return "edit";
        // Save the edited item.
        public String saveEditClient(){
            ClientBean clientbean = (ClientBean)JSFUtil.getManagedObject("EditClient"); // Get the Session mapped item
             * Now we must rename the directory if it exists
             * Will require a valuechanger method on the Client text box so we can get the original Client Name.
            if(oldClient == null){
                // Nothing has changed.
                return "cancel";
            Settings settings = new Settings();
            File clientSourceDir = new File(settings.getDest() + "/" + oldClient.toLowerCase());
            File clientDestDir = new File(settings.getDest() + "/" + clientbean.getClient().toLowerCase());
            // Move the file accross.
            boolean success = clientSourceDir.renameTo(clientDestDir);
            if (!success){
                System.out.println("Failed to copy");
                return "cancel";
            /** Now commit to the database */
            Session session = HibernateUtil.getSessionFactory().getCurrentSession();    // Create the session
            session.beginTransaction();                                                 // build a transaction
            session.merge(clientbean);                                                  // Save the current object.
            session.getTransaction().commit();                                          // Commit this to the database
            return "success";
        }Here is my edit JSP file:
    <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <f:loadBundle basename="pdfcat.bundle.messages" var="msg" />
    <!-- For the custom component, must match what's in the WEB-INF/components.tld file. -->
    <%@ taglib prefix="jcr" uri="http://www.pais.com.au"  %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <link href="../css/pdfcat.css" rel="stylesheet" media="screen" />
    <script language="JavaScript" type="text/javascript" src="../js/form.js" ></script>
    <html>
        <f:view>
            <head>
                <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
                <title><h:outputText value="#{msg.client_title}" /></title>
            </head>
            <body onload="document.getElementById('form_input:client').focus();">
                <div id="headingback">
                    <div id="heading"><h:outputText value="#{msg.client_edit_heading}" /></div>
                </div>
                <!-- Custom component for Clientalog Navigation menus. -->
                <jcr:catnav />
                <h:form id="form_input">
                    <!-- Get the label from bundle/messages.properties -->
                    <h:outputText value="#{msg.client_form_client}" />
                    <!-- Create a Text field value linked to the ClientBean -->
                    <h:inputText id="client" valueChangeListener="#{Client.clientChangeListener}" value="#{EditClient.client}" required="true" />
                    <!-- Any error messages go here. -->
                    <h:message for="client" errorClass="err" />
                    <!-- Create a submit button. -->
                    <p>
                        <h:commandButton value="Submit" action="#{Client.saveEditClient}" />
                        <h:commandButton id="btn_cancel" value="Cancel" action="cancel" immediate="true" />
                    </p>
                </h:form>
         </body>
        </f:view>
    </html>To test I do the following:
    First I click on my Edit button for the item I want to edit, I change the name of the client and hit the submit button, this returns to my dataTable listing. Now I leave the page there for about 5 minutes, then reload the page and it shows me the old value. It's not showing me the new value which is in the database for that one item I changed, then if I refresh sometimes it will show me the correct value and sometimes not! I hate sometimes problems there always a pain.
    It's like there are two objects for that one item entry and the dataTable gets confused and just picks one of them (randomly).
    Am I on the right track here?
    Can anyone shed some light on this problem and a possible solution?
    I'm using JSF 1.1 RI, hibernate 3, postgres 7.4 database, netbeans 5.5 on a FreeBSD 6.2 machine.

    Just spotted you are having connect and disconnect problems with HH2.
    Short answer:
    Try this workaround; despite my own scepticism when first advised about it, this will fix both wifi and ethernet problems; the fact that your HH2 will not connect to your wifi and/or your ethernet connector is related to the HH2’s acknowledged problem with its DHCP table.
    Access the Hub and set your wifi channel to non-automatic and select Channel 11.
    Save the settings and re-boot the HomeHub and your PC.
    Check your performance and that your wifi and/or ethernet connection is working normally, if this works you are OK, if not repeat the cycle and choose, in turn, Channels 9 and 1.
    As your line speed is under-performing, it is now very important let the HH run very specifically for the training period uninterrupted (whether you believe that to be 72 hours, five days or ten days is for you to decide). I stress, do NOT reboot or disconnect the HH during that period to enable the exchange and it to establish the optimum speed for the line (during that period you may observe the HH resetting itself during renegotiation - that is normal).
    Long answer:
    See my post of22 Sept 2011:
    BT Failure & Sanctioned Workaround for HomeHub V 2.0 A
    Good Luck
    +++###+++
    If you feel the problem is solved, please don't forget to come back and confrm the fix or post any other solution. It helps those who really need it to judge whether it works or not.
    Also, mark the thread solved

  • I have not had good luck with downloads and need to get information on problems I might encounter with this download.

    I am overwhelmed with all the updates, changes to new servers, etc. seems like it's everyday. I have had to bring my computer back from blue ( actually more like Northern Lights) screen(s) 3 times in the last 5 months. All crashes have been associated with a download, upgrade, etc. Once with Norton, once with Yahoo, and Java continues to cause me problems. I have a Compaq laptop running Windows Vista (I think), using Internet Explorer 9, using microsoft security (firewall, etc) and Panda virus. My current wireless provider is Comcast --but I can't afford the super fast connection anymore. I am continually having problems with Internet explorer just shutting down or going REEEAALLY slow. I figure it's probably from an update, or add-on, or some nasty "ruin your computer fun" gift from a hacker. But I can't figure how to pinpoint where the problem is.
    I don't mean to sound like I'm helpless, but I am not very computer savvy. I am a 52 year old mom who loves having a virtual library at her finger tips and wants to be safe on the net. Thank you for assisting me.

    Thanks for taking time to respond and for the info on the two free scanners.
    I do believe I finally uninstalled Norton - I'll check again. I had AVG for awhile and I unstalled that when I downloaded Panda. The microsoft system security is supposed to alert you when there is a system conflict -- the key words here are SUPPOSED TO.
    I am very leary of downloading/installing/updating anything. For a couple of reasons -- one --if there is a system conflict, a virus, bad cookie (probably doesn't even go well with milk), etc -- I don't know how to fix it. I bumble through somehow, probably creating more messes than I had, or at least different ones. If there's a BIG problem and support is needed . . . Did I say SUPPORT?? Panda was the only company that actually spent time with me. Microsoft, HP,
    Norton, Comcast, Motorola (modem), and a couple of others ALL refused to help me because it wasn't their problem !!
    So is having Firefox as my default browser a good thing or bad?? Will I then have to update/download all different kinds of programs. Yahoo is my email provider and my microsoft email is not currently set up. I have used Firefox before, but not on this computer.
    Are there any other programs I should be aware of that might conflict with Firefox.
    Are there any ADD-ON's, drivers, plug-ins that might create problems ( I really don't understand all the previous terminology, I just know those are the areas where the problems are always occuring.
    Thanks again for your time and information.
    God Bless You, Tami (tamaroo47)

  • Wanted to share information about problems with Imessages :)

    I was having issues getting Imessage to activate... I wanted to repost this information I found in the "more like this" section. It helped me, fixed my issue. So I figured I would share in case someone else was having this same problem :
    Ryneeev Indiana
    Re: "Waiting for Activation" iMessage and Facetime on brand new iPhone 4s     Mar 25, 2012 12:26 PM    (in response to victormacmaniac) 
    Mine didn't work for 2 months and this fixed it, so I posted it in another discussion and have been getting "thank you" replies nearly daily:
    Just update your date/time settings:
    Settings
    > General
    >> Date & Time
    >>> Set Automatically:  Slide "ON"...If it's already on, then slide it off, chill for a bit (maybe restart it), then slide it back on.

    So no one wants to help or give advice!?! you guys are the best profesionals ever! super pissed yall can get away with this

  • Information Broadcat error

    HI all,
    We have a report in Portal published through Information Broadcast.
    I am new to this Broadcast,(as the report is earlilerly designed and published to portal).
    Now users are saying that the report is not getting updted,i.e. it is giving the same report when it executed 10 days before and now also.
    when i saw the logs in RSRD_LOG T-code i found this error message.
    Java system error: Incoming call is not authorized
    Message no. RSBOLAP018
    Diagnosis
    An error occurred in the BI components on the SAP J2EE Engine.
    Procedure
    Contact your system administrator to have the error analyzed in detail.
    Procedure for System Administration
    Start the Visual Administrator, log on to the SAP J2EE Engine and choose "<J2EE_SID>"  ->"Server" -> "Services" -> "Log Viewer".
    The file "defaultTrace.trc" includes detailed information about the error that occurred. In Windows, you can find this file in the Log Viewer under "Cluster <computer name>" -> "Server <server number>" -> "<drive>:\usr\sap\<SID>\JC<INSTANCE>\j2ee\cluster\server<NUMBER>\log". ". In Unix, the file is located under "/usr/sap/<SID>/JC<INSTANCE>/j2ee/cluster/server<NUMBER>/log".
    If the file does not include enough detail about the error, you can increase the log level to obtain more information. To do this, choose "<J2EE_SID>" -> "Server" -> "Services" -> "Log Configurator". On the "Locations" tab page, choose "com" -> "sap" -> "ip" -> "bi" -> "webapplications". Using the selection list on the right side of the screen, you can increase the log level, whereby "DEBUG" represents the log level with the most information. You can save your settings by choosing the "Save" icon. The change to the log level is active immediately. Once you have successfully analyzed the error, you should set the log level back to its default value using the appropriate pushbutton; continuous writing to the log file negatively affects the overall performance of the system.
    I informed Basis people,as they are also dont have any clear Idea regarding this.
    Please help to resolve this issue.
    Thanks in advance
    Sridath...

    Hi Rajesh,
    Thanks for the reply..
    I checked the conenction as u suggested,but againest SAPJ2EE there is no comment mentioned and there is no connection also.
    Can u please suggest how can i inform to Basis people what to do to rectify this error.
    Boss,can any one help me please..
    Sridath...
    Edited by: sridath on Feb 25, 2009 6:05 AM

  • Personal Information Manager Problem [SOLVED]

    I have a little problem with this that I can not save personal info in it...It is seen on screenshot. Do maybe have someone solution for this? PS: I'm new to Arch.
    Last edited by kalcho (2011-02-04 18:39:14)

    I tried as you suggested, but nothing...It don't throw any errors in command line, just closes and that is all. Ass u may saw on pic, It even don't recognize mine real name. It is Unknown there. But when I open user and groups I can see mine nime there.And pic is changed there.But in gnome about me it is not shown.

  • INFORMATION BROADCATING  FOR VC DASHBOARD

    HI all,
    for Information Broadcasting, we did for reports it was working fine.
    we would like to broadcast the dashboard which is developed on visual composer to the end user mail.
    any option is there in the BI level or Portal level to send a dashboard link to the end user by mail.
    please help me in this regard, its very issue.
    Thanks
    Pinky Reddy

    sol;ved

  • Information Storage PROBLEM with RAC

    I´m triing to install OCS information storage in RAC.
    I have 2 servers already configured to install RAC(if i start the installer of a 9i 9.2.0.1.0 it recognizes the nodes). I already instaled the cluster manager and it is running. But the ocs information storage installer does'nt recognize it.
    Could someone HELP me it is getting critical.
    Thanks
    Francisco

    What else do you need? The error message seems to be quite clear.
    Check the space left on the devices and possibly add more.
    Maybe, the increase of SGA before lead to the try of swapping - which failed due to no space left.

  • System volume information folder problem, it keeps reappearing

    I have already turned off the system restore for all drives and then i deleted "System volume information" folders by changing ownership but they reappeared so i deleted them again and again but they keep coming back
    Please help me . How can i permanently delete these folders?

    The System Volume Information folder is a hard-coded Windows system folder and cannot be permanently deleted.
    Carey Frisch

  • HT1349 need "Big Furry Games Inc." contact information, having problems with their app "Fairy Village" after loading IOS6

    help with Big Furry Games INC. contact info

    It should be on the game's page in the App Store. Or, you could do a Google search for "Big Furry Games".
    Best of luck.

  • Manually Executing Information Broadcasting

    Dear all experts,
      I have a requirement to send an email to related reponsible persons, when there is unwanted data (e.g. value X is greater than a treshold). At first I tried to use the Information Broadcating technique with defining an exception. However, I encountered some of these problems.
    1)  I want the information to be broadcasted authomatically after the approver verify the information first. For example, if the approver approved the data, and there are some unwanted data in those approved data, the information should be broadcasted to responsible persons. However, if the approver does not approve it, the information should not be sent.
    2) From the provious problem, I tried to find a way to execute the information broadcasting manually (maybe by ABAP Programming), after the approver approves the data. Unfortunately, I can't find any function or any class to do so.
    All of this is just an idea of beginner. It would be great, if you have others better solutions.
    Thank you in advance.

    Hi,
    I want the information to be broadcasted authomatically after the approver verify the information first. For example, if the approver approved the data, and there are some unwanted data in those approved data, the information should be broadcasted to responsible persons. However, if the approver does not approve it, the information should not be sent.
    Using information broadcasting u can precalculate and send the query or webtemplate, workbook, queryview to email or portal.
    Your requirements is somewhat strange.
    In information broadcaster one setting is called Exception broadcasting, but it is not suitable for your requirements(as far as i know). Because whenever exception occurs in your query it will broadcast to mail or alert that's it .
    May be we will wait for some bw experts reply.
    If it is useful assign points.
    Regards,
    Senthil Kumar.P

Maybe you are looking for

  • I am unable to create a new entry on the calendar menu, in other words there is no (+) at the bottom right corner of the calendar menu, please help?

    I bought a new iPad 2 and I was trying to create entries on the calendar application but I cannot because there is no plus sign(+) at the bottom right corner of the calendar application. Please assist?

  • Problems with Used DC

    Hi all,    I am new to NWDI. I am facing one problem while deployment using NWDI.    I have one "DeployableProxy" DC project. I created "ClientProxyDefinition" in this Deployable Proxy project and added it to Public Parts. Deployed the Project.    No

  • Transparent area

    OK, I think this is a simple question but I can't seem to find an answer anywhere! I'm overlaying my Flash Player with a 'subtitlesArea' where subtitles will appear. Dumb question, but how in Actionscript 3.0 do you set the area to be transparent? My

  • Upgraded to Yosemite and now camera does not work.  Please help.

    I just bought a new iMac 27" computer today.  I brought it home and it told me I needed to update my iOS.  So i did.....now my camera does not work.  Does anyone know a fix? Message was edited by: MCO98

  • PrE 9 hangs on start - OS X

    Downloaded the trial version of PrE 9.  After first install, it whould always hang after creating a new project or opening an old one when the message "Install Full Content" appeared. I re-installed and now it will not get past "Loading ExporterQuick