How to create an Open HUB in BI 7.0 which will be scheduled by a Process ch

Hi Gurus,
Could you please explan me how to create an open HUB which will e scheduleby a process chain?
Thank you.
BR
Pat

Hi ,
Check this links ..
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5f12a03d-0401-0010-d9a7-a55552cbe9da
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01d3a090-0201-0010-9783-bc33ab690e70
http://learnsapbw.blogspot.com/2008/04/open-hub-service-using-sap-bi-70.html
Regards,
shikha

Similar Messages

  • How to create a pulse for an emitter follower circuit which will drive a dc motor

    The circuit is a position control circuit. A pulse has to be created (between +12v and -12v) which would be fed into the DAQ in order to drive the emitter follower circuit (made up of 1 npn and 1 pnp transistors) if the output is positive the dc motor will drive it one way and negative the other way. could pwm be used? can any other type of pulse creation work?
    Solved!
    Go to Solution.

    Many analog output devices are not able to produce +12 to -12 V outputs.  I suggest that you consider using a digital output (from a digital port or a counter) and build the necessary level-shifting circuits to drive your emitter follower.  You may also need to consider adding some dead time when both transistors are off.  If the turn on time of the transistors is shorter than the turn off time then both will be on simultaneously.  This produces a short circuit across the power supply.  It could damage or destroy the power supply or the transistors.
    Certainly PWM can be used.  The digital outputs probably give you more versatility in pulse timing than you would have with analog outputs, but that depends on the type of DAQ device you are using.
    Lynn 

  • Teach me how to create the opening "hallway" sequence using Adobe After Effects

    I need to create a memorial video for a loved one that passed away. Can someone teach me how to create the opening "hallway" sequence using AE? here is the video from youtube: https://www.youtube.com/watch?v=4191kcW07f0 . Thanks

    I'll give a very brief overview but, presuming that you are new to After Effects, understanding and executing on this overview will require learning the basics of After Effects.
    You'll be creating a 3D scene based on a few 3D layers: one each for the floor and each wall. Each of those 3D layers will be a precomposition layer; the wall layer with the pictures will be based on a precomposition in which you have placed your pictures as individual layers. You will create some 3D lights shining down from above. You'll create a 3D camera that you will then animate to move down the hallway.
    As I said, that is a very brief overview. Understanding each of those pieces will require some learning. After Effects is not a simple application, so you do need to be prepared to put in some learning time if you are going to do this yourself. Here is the place to start: http://adobe.ly/AE_basics
    All that said, I would recommend that you hire someone to do this for you. Learning a new and complex creative application under the time pressure (and other pressure) that you are under may be too much to ask.

  • How to create authority check object and assign to  ztcode which is of modu

    Dear ,
             how to create authority check object and assign to  ztcode which is of custom module pool program.its urgent kindly help points rewarded.

    Manoj,
    You can check with your Basis team to create authorisation object and assigining tcodes to the user profiles.
    K.Kiran.

  • We want to create an online contract form with different options which will determine different prices as they make their choices. We will also require a legally binding e-signature. Is Acrobat the best product or even an option for this?

    We want to create an online contract form with different options which will determine different prices as they make their choices. We will also require a legally binding e-signature. Is Acrobat the best product or even an option for this?

    You need to use form fields. See the Acrobat help section and this site: https://acrobatusers.com/tutorials/
    However, that last part (receiving an automatic response when a form is submitted) has nothing to do with Acrobat, or even with the PDF file. This is something you'll need to set up on your web (or email) server.

  • How to create an open/close button

    Hello All
    I am endeavouring to create a button in InDesign that when it is tapped an image opens, and when it is tapped again the image closes, does anyone have any ideas how to achieve this please?
    Kind Regards
    Barb

    Create hot spot buttons. See this article: Hot Spot Button Workaround for InDesign Dig Pubs
    If you want to create a simple toggle button, create a button that points to an MSO (multi-state object) in which the first state is blank and the second state is the image. When you create the button, use the "Go To Next State" action.
    To create more advanced buttons, download the free DPS Tips app and look at Advanced Overlays > Hot Spot Toggle Button. Web viewer version is here: DPS Tips Advanced Overlays: Hot Spot Toggle Button

  • How to create an entry hub to all task flows

    I have created a bunch of bounded task flows and want to create a" home" page from which I can access all of the bounded task flows. How can I do this? Thank you.

    I think you can do that , as :
    Create a UnBounded taskFlow with a Home.jspx and create a menu in this Page with the task flow you defined, ( Drag and Drop your task flow into the Home.jspx as Button, link or a other User Interface )

  • How to CREATE VIEW to merge two tables each of which has CLOB-typed column

    I failed in creating a view to merge two tables that have CLOB-type column each.
    The details are:
    Database: Oracle 9i (9.2.0)
    Two tables "test" and "test_bak", each of which has the following structure:
    ID Number(10, 0)
    DUMMY VARCHAR2(20)
    DUMMYCLOB CLOB
    The following operation fails:
    create view dummyview (id, dummy, dummyclob) as
    select id, dummy, dummyclob from test
    union
    select id, dummy, dummyclob from test_bak;
    I was announced:
    select test.id, test.dummy, test.dummyclob
    ERROR in line 2:
    ORA-00932: inconsistent data type: required - , but CLOB presented.
    But if creating views from only ONE table with CLOB-type columns, or from two tables WITHOUT CLOB-typed columns, the creation will succeed. The following 1) and 2) will succeed, both:
    1) one table, with CLOB-typed column
    create view dummyview (id, dummy, dummyclob) as
    select id, dummy, dummyclob from test;
    2) two tables, without CLOB-typed columns
    create view dummyview (id, dummy) as
    select id, dummy from test
    union
    select id, dummy from test_bak;
    I want to merge the two tables all, with complete columns, how to write the CREATE VIEW SQL statement?
    many thanks in advance

    Dong Wenyu,
    No.
    But you could do this:
    SELECT source.*, nvl (tab1.clob_column, tab2.clob_column)
    FROM your_table1 tab1, your_table2 tab2, (
    SELECT primary_key, ...
    FROM your_table1
    UNION
    SELECT primary_key, ...
    FROM your_table2
    ) source
    WHERE source.primary_key = tab1.id (+)
    AND source.primary_key = tab2.id (+)
    In other words, do the set operation (UNION (ALL)/INTERSECT/MINUS) on just the PK columns before pulling in the LOB columns.
    d.

  • How to create a table with 3 inputs one of which is received from a sensor and the other 2 are constants

    i want to create a table that has 2 angles (beta and theta) that could assume values from 0 to 180º and gamma that is given from a sensor to the table at every moment... all angles depend of each other and i want a table that demonstrates that. so i can pull a data to use it in a equation. can someone help with this mess?

    alufe wrote:
    I have to make an array for each angle and connects them?
    That's one way. You end up with multiple 2-D arrays. You also could make a 3-D array to iterate through all your beta/theta arrays, calculating a gamma for each pair, if you understand arrays of multiple dimensions. You seem to indicate a major shortfalling in your math skills here, so I'll repeat, work with your teacher until you can understand the math, and then work on the programming.
    You have to know what you want to do before you can do it. In this case, you have to know what that array represents, and how (I'm talking math now) you are going to determine/represent the one set of numbers you need to work with for each experiment before you set something up in software.
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • How to create a file in application data local folder which is not hidden in windows store app?

    I want to create a log file in ApplicationData local folder.
         m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    First time when my app is launched, the file gets created and logs are written.
    When I close my app, and re run the app once again, the log file that was created is now hidden and when i try to call
    the code :    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    m_StorageFile is NULL.
    How can i prevent the file from becoming Hidden or ReadOnly.
    Thanks

    Here is a very simple sample that works fine.  Start with this and see what you are doing different.
    XAML:
    <Page
    x:Class="LocalStorage.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LocalStorage"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Loaded="Page_Loaded">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <TextBox x:Name="outputTxt" HorizontalAlignment="Left" Margin="76,82,0,0" TextWrapping="Wrap" VerticalAlignment="Top" AllowDrop="True" PlaceholderText="No Data read from local file" Width="791"/>
    <Button Content="Store Data" HorizontalAlignment="Left" Margin="73,145,0,0" VerticalAlignment="Top" Click="Button_Click" />
    </Grid>
    </Page>
    C#
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.Storage;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace LocalStorage
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    private async void Button_Click(object sender, RoutedEventArgs e)
    if (m_StorageFile != null)
    try
    string userContent = outputTxt.Text;
    if (!String.IsNullOrEmpty(userContent))
    await FileIO.WriteTextAsync(m_StorageFile, userContent);
    else
    // should be some info to write
    catch (FileNotFoundException)
    // do something
    private StorageFile m_StorageFile;
    private async void createFileOrGetFile()
    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("sample.log", CreationCollisionOption.OpenIfExists);
    private async void Page_Loaded(object sender, RoutedEventArgs e)
    createFileOrGetFile();
    if (m_StorageFile != null)
    try
    string fileContent = await FileIO.ReadTextAsync(m_StorageFile);
    outputTxt.Text = fileContent;
    catch (FileNotFoundException)
    // do something!
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • How to create a hierarchy in the iTunes site into which to group podcasts

    Within iTunes > Store> Podcasts > News & Politics PRI (Public Radio International) seems to have a kind of 'subsection' or 'subcategory' to itself, which has its own hierarchy and - in the bottom half of the screen - a further subdivision of and for its various podcasts, and their episodes.
    I'm creating podcasts for my employer and need to do the same thing - so that all of our future podcasts can be grouped.
    How do I do create a group within the iTunes store environment into which I can put future podcasts?
    Is it in the XML I'm creating - or do I need to approach Apple?
    TIA!

    You can't. I asked Apple about the same thing just recently. These pages are created by the iTunes staff and are essentially "featured" podcasts. Much like the featured podcasts the content providers are selected by the iTunes staff based on a few criteria, mainly that you have to have 6 or more podcasts with content that they feel is of interest to listeners/viewers and is regularly updated. You can't request that they build one for you...you have to be selected. So create a bunch more podcast feeds, keep them updated and interesting and hope they find you.
    Erik

  • How to create a Stage area in Windows XP and which is the best MS-OS

    Hi all,
    Please can somebody share the topics to install the R11 in Windows OS.
    Please give some details on this \I have Oracle installtion guide still i have some problem.
    Satyan

    Setting up stage area
    1. Log in as the operating system user with sufficient privileges to mount, umount,
    and eject the DVD. This user must also have write privileges to the stage area that
    you set up.
    2. Insert the Start Here disk in the DVD-ROM drive.
    3. Mount the DVD (conditional)
    If your system runs on a UNIX platform, and if you do not use AutoMount, you
    must mount the Start Here disk at this time.
    4. Verify software version (perl).
    You must have perl 5.0053 or higher installed, and it must be in your PATH. Use
    the following commands to identify the perl version and its location. The
    command is the same for both UNIX and Windows platforms:
    perl -v
    If perl is not present, download it from perl.com. For Windows users, the perl
    shipped by MKS is not certified. Use ActivePerl, which you can also download
    from perl.com.
    5. Run the adautostg.pl script.
    UNIX:
    $ cd
    $ perl /mnt/cdrom/Disk1/rapidwiz/adautostg.pl
    Windows:
    C:\> perl d:\mnt\cdrom\Disk1\rapidwiz\adautostg.pl
    The stage script message informs you that you can stage all the Rapid Install
    components or only selected components.
    6. Set up the stage area directory.
    At the prompt for the stage directory, enter the name of the system top-level
    directory. The Rapid wizard stage11i directory will be created in this path. For
    example, if you enter /u01 as the top-level directory, the resulting directory path
    will be /u01/Stage11i.
    7. Indicate the components to be staged.
    The script prompts you to choose the components that you want to stage:
    1 - to choose Oracle Applications
    2 - to choose Oracle Applications with NLS
    3 - to choose Oracle Database technology stack (RDBMS)
    4 - to choose Oracle Applications database (Databases)
    5 - to choose Oracle Applications technology stack (Tools)
    6 - to choose APPL_TOP
    7 - to choose National Language Support (NLS) Languages
    Enter one or more components, separating each one with a space. You can indicate
    that you want to stage only the database technology stack (3), only the APPL_TOP
    (6), and so on. If you choose 1 (the default), all the components will be staged.
    However, this choice does not include the NLS component. You must explicitly
    select it by choosing 2, or by indicating that you want to stage language (NLS)
    software (7).
    8. Indicate whether you will stage language (NLS) software (conditional).
    Starting Rapid Install
    Getting Started 1-11
    If you choose 1 or 7 at the prompt, the script asks you for the language code of the
    languages to be staged. If you enter more than one language, separate the codes
    with a space.
    9. Insert the Rapid Install DVD.
    Insert the Rapid Install software as required in the prompt. The system message
    lists the files it has copied and their location in the stage area directory.
    10. Insert the NLS DVD (conditional).
    If you indicated that you will install languages, the script prompts for the
    language software it needs to complete your installation.
    Message was edited by:
    Rajan SVR

  • How to make a big screen PLAY button for FLV which will fade away after the movie starts?

    I wanted to make play button. Kind of this huge one in the middle of the screen as users used to see on YouTube.
    Here is the code for it which seems to work:
    play_btn.addEventListener(MouseEvent.CLICK, onClick_Play);
          function onClick_Play(event:MouseEvent) :void {
      SWF_flv2.play();
    The problem is it doesn't dissapear once the video plays. How shoudl it be done, the whole video has to go to another frame with no play_btn on it or there is a code which can make it fade away?

    The FLVPlayback component can be set to use any number of controls for the video playback. You should use those for playback control once the video has started. If you do want to create all of your own custom controls, here's an Adobe tutorial on the FLVPlayback control structure: http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7f00.html
    And here is a third party tutorial on creating your own controls: http://www.lemlinh.com/as3-video-player-tutorials-roundup/

  • How do I burn a slide show to a DVD which will work with my DVD player?

    I've been able to create a slide show of photos with selected i-Tunes music.  I can create a file and burn it to a blank DVD R, but both a regular and Blu-Ray DVD players say the disk is incompatible.
    Also, is there supposed to be a file under Events where you can keep other slide shows?

    You need a video DVD authoring application like iDVD. Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  For iPhoto 9.4.3 and earlier select Size = Medium or Large. For iPhoto 9.5 and later selct 480p.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process.
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailer like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago.
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them.
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    NOTE: there are other video DVD authoring apps available thru the App Store.  However, they do not have the themes and professional appearance that iDVD provides. 

  • How can I make a call to a swing component which will be blocking?

    Hi,
    I have a small GUI, and an underlying application class which interacts with it. At one point in time, the underlying class needs to wait for the user to type a string into a textbox, and press a submit button (both of which are on a GUI that is already visible to the user). I cant seem to figure out how to make the call to the gui, so that i blocks, until that submit button is pressed.
    Do I have to spawn a seperate thread which constantly is checking if that button is pressed (i.e. associate a flag with that button).
    I pretty much wanna do something similar to JOptionDialog, but with my own gui implementation.
    thanks!

    No...let me rephrase...
    1) I only want 1 dialog...with multiple swing components on there. 2 of which are a textbox, and a jbutton....the jbutton has a listener associated with it....and that obviously grabs the text from the textbox...
    2) I have a model class (no swing components, only a reference to my dialog)...I want to make a call to the dialog, which blocks, until the button is pressed...
    did this clear things up at all?

Maybe you are looking for

  • Session variable

    I created a period status session variable which i want to use as a filter in answers. This variable takes note of the last closed period (month - YYYYMDD) when the accounting team closes it in their books. I currently have open periods taking the va

  • Yellow Alert Icon in iPhoto 6 on scanned photos

    I just purchased a new Mac Book, 10.4.7, in Aug. I'm trying to design a photo book in iPhoto 6.0.4. I scanned in several pictures and made a practice book with them. Every photo had the yellow alert icon on it. I have downloaded new digital photo's o

  • Help really needed!

    hi all basically im getting the kernal panic error on my laptop where it tells me to re-start my laptop i have followed the steps from the kernal site on what to do and after completly re-formatting my laptop it still happens, i have the standard 512

  • Is it possible to play bboitalia.it to ipad2?

    Is it possible to play bboitalia.it to ipad2?

  • Opening the current screen of a application from portal in a new window

    Hi, We are using EP 7.0 with ECC 7. A Iview is created in portal for a ABAP webdynpro application and attached to a role and that role is attached to a user. When the user invokes the Iview in portal the ABAP webdynpro application is opened, when a b