Execute Broadcaster direct with URL and variables

Hi,
is it possible to execute an broaadcaster with an existing setting as an URL command like <SAP_BW_URL CMD='START_BROADCASTER >.
But i want execute the broadcaster direct in the same like the button below without any user action. It would be very nice to change the variable settings in the same way.
Brg,
Frank

Hi,
is it possible to execute an broaadcaster with an existing setting as an URL command like <SAP_BW_URL CMD='START_BROADCASTER >.
But i want execute the broadcaster direct in the same like the button below without any user action. It would be very nice to change the variable settings in the same way.
Brg,
Frank

Similar Messages

  • Local Director http probes with URLs and http redirect mode

    I am trying to configure http probes on my Local director 430 running 4.2.3
    I am using http redirect mode so the Virtual is bound to URLs not REALs with are linked to DIPs which are bound to REALs. So far the probes seem to not actually do anything. Does anyone know if the probes are compatible with URL redirect loadbalancing. And if so how one would go about configuring it.
    Thanks for your help.

    keepalive can be used for the probe notification in this case.
    Check the following url for details.
    http://www.cisco.com/univercd/cc/td/doc/product/webscale/css/bsccfggd/services.htm#xtocid727448

  • Flash Player direct download URLs (and others)

    Hi,
    For thoses who are looking for direct download URLS of Adobe products :
    FLASH 11.4 (language independant)
    http://download.macromedia.com/get/flashplayer/current/support/uninstall_flash_player.exe
    http://fpdownload.adobe.com/get/flashplayer/pdc/11.4.402.287/install_f lash_player.exe
    http://fpdownload.adobe.com/get/flashplayer/pdc/11.4.402.287/install_f lash_player_ax.exe
    http://aihdownload.adobe.com/bin/install_flashplayer11x32_mssd_aih.exe
    http://aihdownload.adobe.com/bin/install_flashplayer11x32ax_aih.exe
    AIR 3.4 (language independant)
    http://airdownload.adobe.com/air/win/download/3.4/AdobeAIRInstaller.exe
    SHOCKWAVE
    http://fpdownload.macromedia.com/get/shockwave/uninstall/win/sw_uninstaller.exe
    http://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/Shockwave_In staller_Slim.exe
    http://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/Shockwave_In staller_Full.exe
    Vincent
    Message was edited by: scoubidou944 Update version URL

    Another way to download Flash Player :
    http://download.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_ 11_active_x.exe
    http://download.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_ 11_plugin.exe

  • Problem with windows and variable in smartform

    hi guru,
    i create smartform for printing tax document and found problem.
    1) 
    i create layout in form like this.
           {Main Window}
                     <<<< Data to print
           <<<< secondary Window
             <<<< secondary Window
    with many data in table, so this form will take 10 page up to print. i found and showed in every page.
    in my solution *i want to display and on last page after {Main Window} Only*. how to resolve this.
    2)  follow to 1st question, can i place position of each window in dynamic?  +like 's position is under {Main Window} 2 cm.+ instead of specific position left margin , upper margin *or should i create other page and place and .*
    3)  i create 2 variables  (sum1 type p , sum2  type p ) for keep sum of  tax in table that show in each page and write it at end of each page. i want to clear data in these 2 variables when system create new page and start to keep sum of value again. i create program line node under {Main Window} after but don't know which code or syntax to write.how to code this?
    regards,
    Kittisak.

    1) On the 'Conditions' tab of your WIndow3 & WIndow4 just click the check box
    'Only After End of Main Window'. It will always be printed at the last after your main window is finished.
    2) And if you don't want your window3 & window4 in a fixed place than instead of new windows do the same thing inside your main window creating a new template or anything as per your requirement and place it after your main table.
    3) For clearing the fields, do it like this, in the program lines write the code below:
    IF G_PAGE NE SFSY-PAGE.  " declare g_page with initial value '0'
        CLEAR field1.   
        CLEAR field2.
        G_PAGE = SFSY-PAGE.   
      ENDIF.
    With luck,
    Pritam.

  • HT4101 Camera connector kit not working with ipad3. Not at all able to see any photo . Have tried both the USB connector directly with camera and thru card reader. Tried by copying photos to DCIM folder also.

    Got a iPad camera connector kit. It is not working as expected. It is not able to read any photos. Both the USB connector and sd card reader arenot showing any photos on iPad. Tried copying all photos directly in DCIM folder. Still no result.
    Any other setting needs to be changed?

    Hey, thanks for your updates.
    The photos are 8 character long and extension is .jpg
    The file names are 8 characters long with 3 as alphapet followed by an "_" and then 4 numbers.
    Initially the photos were in a folder inside DCIM folder. I manually copied them to DCIM folder, still no result.
    Can you advice.

  • Help with menus and variables in different classes.

    1) how do I change variables in different classes? My situation..
    I have a few tabbed panels/planes, that ask for different user inputs. I want the last tabbed panel/plane to have the inputs on 1 plane. Is that confusing?
    Code:
            JTabbedPane tp = new JTabbedPane();
            tp.addTab ("Kitchen", new KitchenPanel());
            tp.addTab ("Living Room", new LivingRoomPanel());
            tp.addTab ("Master Bedroom", new MasterBedPanel());
            tp.addTab ("Bedroom 1", new Bedroom1Panel());
            tp.addTab ("Bedroom 2", new Bedroom2Panel());
            tp.addTab ("Misc Use", new MiscPanel());
            tp.addTab ("Totals", new TotalsPanel());not the full thing obviously, but just so u see what im working with.
    2) How do popup menus work? I have a menu (File -> About | File -> How to Contact)
    I want The File->About menu item, to prompt a dialog
    The File -> How to to prompt a dialog
    Contact Menu(Not Item) to load a webpage
    thanks again for the help, and i hope its not to confusing
    Edited by: 2point2ek on May 25, 2009 9:51 PM

    It's better to think in terms of transferring data between object, rather than between classes.
    What you need is for the tab pane objects to have a reference to some common object to which the data is to be sent. This common object might be the total pane. It's generally better design to keep the data in separate objects from the presentation (in this case the totals pane), but at this stage that's probably just going to confuse you.
    The simplest way to get this reference in is to the pane objects is as a constructor argument, which the constructor of your pane objects saves in a field. As you create each pane you pass it a reference and it stores that reference for when it needs to save data.
    Then, when you click detect the action by which the user tells the program to store the data he's entered the pane class should call a method on the central data object, passing all the data from that pane. If there's a lot of it, wrap it up in an object (typically called a "data transfer object").
    The central data object would be responsible for dealing with this data, amending totals etc.. It might delegate responsibility for updating the display to a separate total pane object.

  • Executing a Procedure with IN and OUT parameters

    How do I call/execute the following procedure? When I call as Courses(StartDate,EndDate,nCount,State,LastUpdate);
    I get an error:
    Error(92,45): PLS-00363: expression 'nCount' cannot be used as an assignment target
    Error(92,55): PLS-00363: expression 'State' cannot be used as an assignment target
    PROCEDURE  Courses
       StartDate       IN             VARCHAR2
    ,  EndDate        IN             VARCHAR2
    ,  nCount           IN OUT   VARCHAR2
    ,  State               IN OUT   CHAR
    ,  LastUpdate   IN             DATE

    set serverout on
    declare
       l_StartDate    VARCHAR2(100) := '20130101';  -- why are you using varchar? use a date! you WILL regret using a string eventually
       l_EndDate      VARCHAR2(100) := '20140101';
       l_Count        VARCHAR2(100);   -- string, again? why? isn't a count a number?
       l_State        VARCHAR2(100);
       l_LastUpdate   DATE     :=  sysdate;
    begin
       Courses ( l_StartDate, l_EndDate, l_Count, l_State, l_LastUPdate );
       dbms_output.put_line ( 'Count: ' || l_Count );
       dbms_output.put_line ( 'State: ' || l_State );
    end;

  • Beginner needs slideshow with pages and hyperlinks

    I've used Adobe PS, PSE, Fireworks, Dreamweaver, etc. now have cloud.
    All I want to create is a simple SWF the moves a picture from right to left, holds a few seconds so that a person can click the page to go to a linked page, exit, enter two more pages that also hold and link to pages.
    I used to create this slideshow in Powerbullet Presenter (www.powerbullet.com a free swf producer) but the software won't export the finished slideshow properly with 64 bit.
    Surely something this simple could be done somewhere in the Adobe Cloud set of programs.
    I've tried Flash, InDesign, Fireworks. But now I'm frustrated.
    Hope someone can point me in the right direction with words and/or a tutorial.
    thanks in advance!
    C

    Thank you both, John Waller and kglad.
    Bridge was easy, but didn't do the job either.
    I'm looking for a non-asp.net Homepage AdRotator type something to put on my homepage.
    You have a page/photo that you can link a web page to, it rotates to a new page/photo with a new link to web page, and on for however many pages. I don't have ASP.
    My site is www.cara4webshopping.com and the current slideshow is the crippled powerbullet swf output. At this point I'm thinking of finding someone with an XP computer and just doing what I have to do with powerbullet presenter since it does it so easily. <SIGH>  All this big "adobe" software, and an older free program does it easier? faster? <SIGH>
    Please if any one knows Powerbullet Presenter alternative for 64 bit, especially in Adobe, let me know.

  • (My Labview built executable) has encountered a problem and needs to close.

    All,
    I've built a labview executable that interfaces with GPIB and the Texas Instruments EV2300 via USB.
    The VI runs beautifully on the development machine, and I built the VI into an executable and it runs fine on the development machine.  So I built an installer that installs the Labview 2010 runtime environment on the target computer.  I ran the installer on a production line computer that I know can run GPIB and the EV2300, but when I try to start the executable I get an error that says "(your application) has encountered an error and needs to close." 
    I can get labview executables that don't talk to GPIB or USB to run on the target machine, so it's not the runtime environment.  And I have VB6 applications that can run the GPIB and EV2300 interfaces without a hitch.
    I'm not doing anything weird with the file paths in my program, just creating paths from strings using the canned VI for converting strings to paths.  In the course of the program, I read a few text files and write one.
    Is there anything I need to know about how to build an application with an installer?  I need to get this up and running so the test program can run on a production line.
    Ro ma wa ichi ni chi ni shi te na ra zu
    Solved!
    Go to Solution.

    RTSLVU wrote:
    I can get labview executables that don't talk to GPIB or USB to run on the target machine, so it's not the runtime environment.  And I have VB6 applications that can run the GPIB and EV2300 interfaces without a hitch.
    Sounds like a VISA problem. Download and install the latest VISA runtime on the target machine.
    Ditto that!  At least One of the installed drivers on the target does not have LabVIEW 2010 support.  Check MAX and NI.com to resolve all the drivers on the target that have no support for 2010.
    And yes, you may need to re-qualify the pre-existing exe's- if their code changes to use the new drivers If you are in a heavilly regulated industry.   If so, It might be easier to build in an older LabVIEW version.  Very sad- but it might even be simpler to incorporate the Unit Test Framework to handle regession testing of older code with newer drivers.
    Worse-  What if the exe's were built with a legacy version of LabVIEW that is no longer supported by the latest Drivers?
    Time to start thinking of life cycle maintenance plans- with a 5 year upgrade required!
    Jeff

  • Direct database request and session variable value

    Hi,
    I have a problem by doing the following : idea is to have report with a list of all tables in user schema (which are not all in repository physical layer).
    By clicking on the name of any, should bring answer report which is done as direct database request doing basically select * from table_clicked (this will be basically the same table with sufix _err holding error rows).
    What I'm trying to do is having some kind report for error rows which can be in different tables in my database. So i had in mind to construct name of table i need , and pass it to database request through session variable. Am i doing right by doing direct database request like this :
    select * from 'VALUEOF(NQ_SESSION.TestVar2)'
    Is there another easyer way of doing this? I know this can be done by gourl by passing parameters but not sure how when i can't filter columns in direct database request (this can be different tables with different names of columns). I hope i didn't complicated this too much.
    Thnx in adwance

    Hi,
    I know this is a hack, and would be much more easy to create one table with dimension and measures, but this is intended to be used with code generator, which can produce different error tables with different column names in different time: It is not conviniet for somebody to add them to repository every 5 minutes. For example : i run my workflow and for first run I have errors in table1(let us say customer table with 30 columns) and if click on the table name in some answer report, i want to see all the bad records in the table. Tomorrow after the run, there are bad records in table1 and in table2 (lets say products) so I would have choice to pick table 1 or table2 and see al the bad records in any of these tables. This means that I can not now which tables will I have tomorrow, and as it is generic, I can manually add some tables in my model, and would have to add err table also as a possibility to have error rows?
    I saw post saying that you can pass parameter value by using go url functionality, by modifying configinstance file, but didn't suceed - http://gerardnico.com/wiki/dat/obiee/logical_sql/obiee_session_variable_go_url . Maybe some mistake or any better solution? I created session variable TestVar2, also modified instanceconfig.xml by adding this before </ServerInstance>
    <ParamList>
    <Param name="NQ_SESSION.TestVar2" source="url" nameInSource="SETVAR"/>
    </ParamList>
    and used go url in column formula : ''||"Physical Targets"."Physical Table"||''
    Can I use @1 for using first column value?
    Thnx

  • HELP: SSIS 2012 - Execute SQL Task with resultset to populate user variables produces DBNull error

    I am experiencing an unexplainable behavior with the Execute SQL Task control in SSIS 2012. The following is a description of how to simulate
    the issue I will attempt to describe:
    1. Create a package and add two variables User::varTest1 and User::varTest2 both of String type with default value of "Select GetDate()"
    for each, have shown this to not matter as the same behavior occurs when using a fixed string value or empty string value.
    2. Add a new Execute SQL Task to the control flow.
    3. Configure an OLE DB connection.
    4. Set SQLSourceType = "Direct Input"
    5. Set the ResultSet property of the task to "Single Row"
    6. In the ResultSet tab add two results as follows: 
    Result Name: returnvalue1, Variable Name: User::varTest1
    Result Name: returnvalue2, Variable Name: User::varTest2
    7. Set an expression for the SqlStatementSource property with a string value of "Select 'Test' returnvalue1, 'Testing' returnvalue2'"
    The idea is that the source would be dynamically set in order to run a t-sql statement which would have dynamic values for database name
    or object that would be created at runtime and then executed to set the user variable values from its resultset. Instead what occurs is that a DBNull error occurs.
    I am not sure if anyone else has experienced this behavior performing similiar actions with the Execute SQL Task or not. Any help would be
    appreciated. The exact message is as follows:
    [Execute SQL Task] Error: An error occurred while assigning a value to variable "varRestoreScript": "The type of the value
    (DBNull) being assigned to variable "User::varRestoreScript" differs from the current variable type (String). Variables may not change type during execution. Variable types are strict, except for variables of type Object.
    User::varRestoreScript is the first return value. And even with the a dummy select the same result occurs. I have narrowed the issue down
    to the T-SQL Statement structure itself. 
    The following works just fine within the execute sql task control as long as no resultset is configured for return:
    "Declare @dynamicSQL nvarchar(max)
    Select @dynamicSQL = name 
    From sys.databases 
    Where name = 'master'
    Select atest_var1=@dynamicSQL, atest_var2='static'"
    I have tried various iterations of the script above with no success. However, if I use the following derivative of it the task completes
    successfully and variables are set as expected.  This will not work for my scenario however as I need to dynamically build a string spanning multiple resultsets to build one of the variable values.
    "Select atest_var1=name, atest_var2='static'
    From sys.databases
    Where name = 'master'
    I have a sample package which can reproduce this issue using the above code.  You can get to that through the post on www.sqlservercentral.com/Forums/Topic1582670-364-1.aspx
    Scott

    Arthur,  the query when executed doesn't return a null value for the @dynamicSQL variable.  It returns "master" as a string value.  Even the following fails which implements that suggestion:
    Declare @dynamicSQL as nvarchar(max)
    Select @dynamicSQL = name
    From master.sys.databases 
    Where name = 'master' -- (or any other DB name)
    I believe I have found the cause of the issue.  It is datatype and size related.  The above script will properly set the variables in the resultset as long as you don't use nvarchar(max) or varchar(max).  This makes the maximum data size for
    a String variable 4000 characters whether unicode or non-unicode typed.

  • Broadcast Setting with Cust. Exit Variables & Manually Entered Variables

    I have a sales report with the following parameters:
    Week (defaulted via customer exit)
    Sales Office (defaulted via customer exit)
    Sales Group (defaulted via customer exit)
    Customer Number (not defaulted)
    Based on information that is automatically determined when a user executes this report the Week, Sales Office & Sales Group automatically populate.  Customer is blank.
    I would like to create a number (say 5) of broadcast settings to send user-specific data to members of a role.  In the settings I would like the first 3 parameters to default automatically but I would like to enter specific values of 5 customers.  For instance, users would receive data for their sales office & group for the prior week related to Customer 1, then in a separate email (from a separate setting) they will get their specific info for Customer 2, and so on.
    My issue is I can either not create a variable assignment and then the query runs for ALL customers or I can create a variable assignment for a specific customer but then the values for the other 3 parameters are also saved and my Customer Exits do not work.
    In R/3 or in BEX Analyzer I could create a variant and for the first 3 variables I would choose Save Field Without Values so that my Customer Exit would populate these fields.  Then I would enter a specific value for the 3rd variable.  I don't see a way to accomplish this same requirement with the Create Variable Assignment piece of the broadcaster.  Am I missing something?

    Hello Jonathan
    have you fixed your problem meanwhile?
    We are having a similar problem:
    We would like to use the SAP exit feeded variable 0CMONTH (reference charateristic: 0CALMONTH) for broadcasting functionalities, based on a query.
    0CMONTH itself has SAP-default setting under details' property "Variable is Ready for Input", flag active set.
    If we select such query for broadcasting functions, creating some variants with characteristic variable 0CMONTH, how would these variants behave after the current month will change, changing to the next month?
    Example for 0CMONTH:
    Now: July 2008, 07.2008
    Next month: August 2008, 08.2008
    Would the initial created and saved broadcaster variants also change the month-setting as it would do in the BEx area?
    Or must the user change these variants each month again?
    Any reply is much appreciated.
    The Chäsitzer

  • Open a url and view the files with it's timestamp

    Hi guys,
    I need to create a flow service in SAP BC to connect to a server by it's url and display it's files with it's timestamps.
    I have never done this b4, and usinf SAP BC makes it harder for me.. Mostly I need to know how to access the server and view the files with their timestamp.
    Any guidance for me will be much appreciated.
    Thank u.

    Yes,
    It's like this. I will connect to an FTP server. Then I need to view the files it the server or folder i specify with their respective timestamps.
    I am using SAP BC and it's webMethods to create the JAVA flow service. I am only now familiarising myself with SAP BC.
    Moreover I have never done a coding to access a server and list it's file. I can do it o view in a local directory using JFrame aand stuff... But SAP BC doesn't support those..
    So If u can give me some guidelines to follow.. i would appreciate it.
    Here's what i have come up with so far
    public static final void ReadFileServer( IData pipeline ) throws ServiceException
    //define input variables
         IDataCursor idcPipeline = pipeline.getCursor();
         String path = null;
         path = (String)idcPipeline.getValue();
         // Check if url is in the pipeline
         if (idcPipeline.first("path"))
              File dir = new File(path);
              String filesFound[]=dir.list();
              long [] age;
              age = new long[filesFound.length];
              for (int i = 0; i < filesFound.length; i++)
                   age = new File(filesFound).lastModified();
              String temp = "";
              for (int i = 0; i < age.length - 1; i++)
                   for(int k = i+1; k < age.length ; k++)
                        if (age > age [k])
                        temp = filesFound;
                        filesFound = filesFound[k];
                        filesFound[k] = temp;
              for (int i = 0; i < filesFound.length; i++)
              //get url out of the pipeline
              path = (String)idcPipeline.getValue();
              //insert the FILES into the pipeline
              idcPipeline.insertAfter("filesFound", filesFound);
              idcPipeline.insertAfter("age", age);
         //If it is not in the pipeline ERROR
         else
         age = "False";
         idcPipeline.insertAfter("path", path);
         //insert the successFlag into the pipeline
         idcPipeline.insertAfter("age", age);
         //Always destroy cursors that you created
         idcPipeline.destroy();
    return;
    }

  • Get current HTML URL into flash with LoadVars and ColdFusion

    I need to get the current page url and pass it into flash.
    I'm also using ColdFusion. Is there an easy solution?

    I gave up on bringing in the URL and parse it into a string,
    there is too much I don't understand. I put in two commands in the
    HTML where the Flash movie is sitting:
    1. <param name="FlashVars" value="airport=sbn"/>
    2. and in <embed src I put in, Flashvars="airport=sbn"
    "airport" is the variable in Flash (it is called as
    "_level0.airport" in the Flash file) and "sbn" is the variable
    definition for 12 of the files. I will just find "sbn" and replace
    it with the new airport name in the next set. It's not very slick,
    but it's better than having to create a new navigation for every
    airport. Thanks for the help.

  • Capture full URL with CF CGI variable

    I need to capture an entire URL and send it in the body of an
    email, using CFMAIL. I'm looking at my CGI variables using CFDUMP,
    but can't seem to get the entire URL string, including the
    http:// or https://. Help?

    That part of the URL is intended for the browser, and is not relevant to the server so is not transmitted with the request, so it never gets to the web server, let alone the CF server.
    If you need that info, you're gonna need to send it some other way.
    Adam

Maybe you are looking for

  • Print Module: Auto-Rotate to fit and Photo Info Text

    When in the print module with "Auto-Rotate to fit" selected, A landscape images correctly rotates to fit the page, but the text that is selected in the "Photo Info" setting does not rotate. Thus, the text appears along the left side of the image . An

  • How do I drag and drop multiple files on a control?

    LabVIEW supports dragging and dropping a single file on a path control, and have the path control populated appropriately. I want a user to be able to highlight multiple files (say, from the OS Find File window, or anywhere really) and drop them into

  • Invalid Serial Number when using Customization Wizard to install Acrobat 8

    Hello. I'm trying to install Adobe Acrobat 8 Professional using the Customization Wizard to create a transform. The serial number is for the volume license product, and I put this number in the space provided in the Wizard. Whenever I remotely deploy

  • OpenMQ embedded broker in Maven JUnit

    I have standalone application wich interacts with OpenMQ through JMS. Maven build tool is used. I want to write JUnit tests checking application interaction with OpenMQ. For this purpose I want to use OpenMQ embedded broker. I found https://mq.dev.ja

  • ODI Naming Standards

    Hi All, If anyone has a naming standards document....can you please forward it to [email protected] when i searched ...i found a thread regarding this..my replies to that thread is not working.....so opened this new thread. Regards