Broadcasting challenge with 3.5

Hi All,
I've got a challenge concerning Broadcasting in BW 3.5
I'm trying to find functionality or a workaround to make it possible to produce masterdata-specific (fill in the variable using masterdata) reports and broadcast them to an e-mail-address linked to the same masterdata-object.
Anyone got suggestions on this?
Thanks in advance.
I will reward points if feedback is usefull.
Edited by: V. Beumer on Dec 17, 2007 10:44 AM

Hi,
Pls check service.sap.com/~sapidb/011000358700000409172004
Eddy

Similar Messages

  • Challenges with Apple Mail auto-complete

    Hi all,
    I'm seeking advice regarding some challenges with Apple Mail auto-complete email addresses for a friend's AOL mail IMAP account. Main issue: in Apple Mail, recently contacted email addresses are not appearing via auto-complete. As such, I'm doing some research for him and have some questions:
    - Any resources on how email contacts are managed in Apple Mail?
    - Any resources on how email contacts are managed in Apple Contacts? What's the difference? I'm not 100% clear how they are linked.
    - Seeking alternative to Apple Mail for someone who is legally blind. Are there some alternatives with a simpler interface and possibly better integration with VoiceOver? Just curious
    Any help is appreciated.
    Mac Mini (late 2012)
    Mac OS X 10.8.5 (12F45)
    Apple Mail v 6.6
    Apple Contacts v7.1

    1)  Reindex Mail
    Go to your User's Library folder. (if you don't know how to find, see this link.)
    http://www.needhelp4mac.com/2013/11/how-to-enable-users-library-folder/
    Scroll to Mail folder.
    Select the V2 > MailData folder.
    Delete any files in MailData with envelope in the name. (should be 3)
    When you open Mail it will re-index your files.
    2)  Search is based off Spotlight cache files.
    HOW TO RE-INDEX YOUR SPOTLIGHT CACHE FILES
    From the Apple menu, choose System Preferences.
    *  Click Spotlight.
    *  Click the Privacy tab.
    *  Drag your drive to the list. Wait a couple of minutes.
    *  Remove the item you added.
    *  Spotlight will re-index the contents of the item you initially dragged to the list.
    Contacts in Mail
    Under Window in the Menu bar, select Previous Recipients List. If the person is in your Contacts, there will be an icon next to the email address. You can add entries to contacts or remove from the list. For example your friend got a new email address but autofil wants to use an old email address. Remove the old entry.
    While Mail and Contacts are two separate applications they are tightly integrated.
    I'm sorry but I have no other suggestions for a better email client.
    Download and run the Mountain Lion combo to refresh your system files.
    OS X Mountain Lion Update v10.8.5 (Combo) 831.81 MB
    http://support.apple.com/kb/DL1676
    Hope this helps!

  • Problme with f1 99\02 challenge with Ti VTD8X 4200

    i have problme
    i can't play f1 99\02 challenge with windwos xp I\O and Ti VTD8X 2004 GF4
    when the installations finish it is supposed to check texture that'e doesn't happen on WinXp Proffesionl and it occured (F1 3Dsetup).
    in the time i can do it with windows 98 Se without problmes
    so any one can help me please
    thanks
    I have P4 2.4 Speed
    512 MB DDR Ram fre 333
    Asus Mainboard P4P8x
    And this problme face me in another little games

    put this in your reg
    Home > Windows > Appearance
    DirectDraw and Direct3D Settings (Windows 98/Me/2000/XP)
    These DirectX settings allow you to change some of the DirectDraw and Direct3D video acceleration parameters.
    Open your registry and find or create the key below.
    Create a new DWORD value for each optional item from the list below and set it to "1" to enable the setting or "0" to disable it.
    Open the [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Direct3D] key and change the value of DisableDP2 to "1" to disable Direct3D, or "0" to enable it.
    Open the [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Direct3D\Drivers] key and change the value of SoftwareOnly to "1" to use software emulation or "0" to disable it.
    Restart Windows for the change to take effect.
       HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw  
    Registry Settings
    System Key: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw]
    Data Type: REG_DWORD (DWORD Value)
    Value Data: (0 or 1)
    I can play all my older games with this in my reg and without it the games don't work,

  • Challenges with Compare Pdf

    Hi Friends
    I am using the following code to compare two versions of pdf in my web application.
    I have the following challenges with it.
    1) I need to suppress the Compare Dialog box that opens on calling DIGSIG:CompareDocuments.
    2)How the output pdf can be shown on the client machine as this is a server code that runs on the server side.Also client machine would not have Acrobat installed on it.
    3)Also how far the output pdf can be customized.Ex,Is there a possiblity to remove the first page of the output pdf.
    Kindly help me out.
    Thanks in advance. Refer the code below.
    Function  
    CompareTwoPdfFiles(ByVal OldFileName As String, ByVal NewFileName As String) As Boolean
    Dim AcrobatApp As Acrobat.CAcroAppAcrobatApp = CreateObject( 
    "AcroExch.App")AcrobatApp.Show()
    Dim OpenPdfCount As Integer
    Dim PDSaveFull As Short 
    OpenPdfCount = AcrobatApp.GetNumAVDocs
    Dim DocumentWasOpen As Boolean
    DocumentWasOpen = (OpenPdfCount > 0)
    Dim ok As Boolean
    ok = 
    True
      ' Open the "New" file first,
      ' so it appears on the right side in the comparison output.
      Dim NewPd As Acrobat.CAcroPDDoc  
    Dim NewAv As Acrobat.CAcroAVDoc  
    If ok Then
    NewPd = CreateObject( "AcroExch.PDDoc")ok = NewPd.Open(NewFileName)
    If ok Then
    NewAv = NewPd.OpenAVDoc(NewFileName)  Else
    MsgBox( "Could not open PDF file: " & NewFileName)  
    End If
      End If
      ' Open the "Old" file second,
      ' so it appears on the left side in the comparison output.
      Dim OldPd As Acrobat.CAcroPDDoc  
    Dim OldAv As Acrobat.CAcroAVDoc  
    If ok Then
    OldPd = CreateObject( "AcroExch.PDDoc")ok = OldPd.Open(OldFileName)
    If ok Then
    OldAv = OldPd.OpenAVDoc(OldFileName)  Else
    MsgBox( "Could not open PDF file: " & OldFileName)  
    End If
      End If
      If ok Then
    ok = AcrobatApp.MenuItemExecute( "DIGSIG:CompareDocuments")  
    If Not ok Then
    MsgBox( "Could not compare files")  
    End If
      End If 
      Dim NoSave As Boolean
    NoSave = True 
      If ok Then
      Dim DiffAv As Acrobat.CAcroAVDocDiffAv = AcrobatApp.GetActiveDoc
    Dim DiffPd As Acrobat.CAcroPDDocDiffPd = DiffAv.GetPDDoc
    ok = DiffPd.Save(PDSaveFull, 
    "C:\Deepak\TED Pdfs\Comparison.pdf")
      If Not ok Then 
    MsgBox( "Could not save comparison output file")  
    End If
      End If
    CompareTwoPdfFiles = ok
      End Function
    Regards
    Deepak.

    Hi Irosenth,
    Thanks for your reply. I checked with PDFLibrary SDK, there it does not seem to have a provision to compare PDF versions.
    Could you please help.
    Regards
    Deepak.

  • Broadcasting Events with EventDispatcher

    Greetings all,
    I am putting together a game where I have some clickable
    areas that dispatch events to some movieclips on my stage. When I
    add the movie clips onto the stage and add each clip to the
    broadcaster object with addEventListener it works great. However
    when I add the movieclips to the stage with a for loop the
    addEventListener doesn't seem to work. The event is being
    dispatched but the movieclips on stage don't seem to be getting
    them.
    The for loop that is adding the clips is inside a function
    that is being called every three seconds by a setInterval
    call.

    Well I think I found the problem cause it is working now.
    Apparently the class that contains the code for the movieclips that
    are broadcasting did not like the way I was initializing the
    broadcaster object. I changed it to be inline with the attachMovie
    function and now they are all working fine.

  • Broadcasting queries with no data

    Good morning everyone,
    I'm trying to update my company's broadcast system, and I'd like to know if it's possible not to send broadcasts when queries return no data, using the new authorization concept (or not).
    Thanks in advance.
    BR,
    Rogério

    Yes..
    When you schedule a broadcast job say run of settings with daily schedule at specific time, it runs a ABAP program (standard), which picks up all the settings and starts processing.
    For ever setting, it needs to run respective queries, create the report and further deliver.
    In this process after running the query, you can will be able to find the number of records returned.
    Coz running a query is nothing but running bunch of SQL statements in backend. Definitely ABAP stack does it and you can as well see it in RSRT.
    But debugging that level of code to get exact point and further customize it is great challenge even for skilled ABAPers.
    I don't see any other way unless somebody responds.
    Abhijeet

  • Broadcasting fails with more than X variables in variable screen

    Hi all,
    We have a few reports which have a variable screen with 10+ variables, mostly 3 mandatory and the rest is optional.
    Normally a pop-up appears in which you can select which type (HTML, PDF, Portal etc.) and fill in the recipients. But for the reports I'm talking about, the pop-up stays blank or give an error "page not found"
    First I thought it was an iView setting but I've compared all iviews and the settings are all the same.
    Then I thought the webtemplates could have wrong parameters, but the LAUNCH_BROADCASTER settings are the same for 0ANALYSIS_PATTERN and custom templates.
    Now I'm testing at query level and I found out that when I cut some optional variables, at some point it works and I'll get the pop-up I want.
    So I wonder if there's a restriction in the maximum number of variables in the variable screen, which has impact on broadcasting? In one query it fails with 11 or more variables, but in another query it fails with 13 variables. It doesn't matter which variable I erase, as long as I stay under the mentioned number of variables, the broadcaster works for that query.
    Is there a parameter or something which can be set?
    We are on:
    BW 7.31 SP9.30
    Thanks for your help!
    Regards,
    Daan Boon

    There is nothing restriction on no. of Query Variables while broadcasting. There is something else which causes this strange behavior. Can you update your BEx GUI to latest Patches?

  • Challenge with Pivoting data

    Hi Everyone,
    I have an interesting challenge which involves extracting data from two related databases, and pivoting part of the data from the second.
    Where I work we use SAP Business One (ERP) in concert with Accellos (WMS). Within our Warehouses we store items in many bin locations. Bin locations; items in those locations, along with quantities, etc are stored in the Accellos database. Master data related
    to the items themselves, such as the item cost, preferred supplier, etc is stored in SAP Business One.
    Whilst I have been able to create reports which successfully bridge both SAP & Accellos, such as that shown below, I have not been able to present the data output in an ideal format.
    As can be seen above given a single item code (e.g.: DR1124) there are many bin labels (and corresponding quantities) returned.
    I would like to show the bin labels 'horizontally' in the fashion illustrated below -
    I believe that using a Pivot is pivotal (excuse the pun!) to success in my endeavour, and due to this I have studied up on Pivots, both the Static type (which I am now comfortable with) and the Dynamic type (which I am still getting 'my head around').
    However there are a couple of challenges related to my specific pivot.
    The maximum number of Bins (and correspondingly Bin Labels) per Item change
    There are over 10K Bin Labels
    I have written a basic Dynamic Pivot which shows all Bin Labels horizontally, like so...
    DECLARE @SQL nvarchar(max), @Columns nvarchar(max)
    SELECT @Columns =
    COALESCE(@Columns + ', ', '') + QUOTENAME(BINLABEL)
    FROM
    SELECT DISTINCT
    BINLABEL
    FROM A1Warehouse..BINLOCAT
    ) AS B
    ORDER BY B.BINLABEL
    SET @SQL = '
    WITH PivotData AS
    SELECT
    BINLABEL
    , PRODUCT
    , QUANTITY
    FROM A1Warehouse..BINLOCAT
    SELECT
    PRODUCT,
    '+ @Columns +'
    FROM PivotData
    PIVOT
    SUM(QUANTITY)
    FOR BINLABEL
    IN('+ @Columns +')
    ) AS PivotResult'
    EXEC(@SQL)
    The above technique gives me over 10K columns because there are that many Bin Labels in total.
    It occurred to me that I would need to count the maximum number of Bin Labels for the Item that had the most Bin Labels, and that this number would then need to be used to set the maximum number of columns.
    DECLARE @maxBins int
    DECLARE @loopCount int = 1
    SET @maxBins = (SELECT MAX([# of Bins]) AS 'Max Bins'
    FROM
    SELECT
    COUNT(BINLABEL) '# of Bins'
    FROM A1Warehouse..BINLOCAT
    GROUP BY PRODUCT
    ) AS T0)
    PRINT @maxBins
    At this point in time one item occupies a total of 26 bin labels / locations. Every other item occupies less than 26 bin labels / locations, so I now know that I need to number my vertical columns as 'Bin 1', 'Bin 2', 'Bin 3', 'Bin...', 'Bin 26'.
    This is where the fun starts, I don't exactly need a Dynamic Pivot, but neither is a Static Pivot up to the task (at least not as best I can tell).
    Here is the Static Pivot query that I have written -
    DECLARE @fromDate DATE = DATEADD(YY, -1, GETDATE())
    DECLARE @toDate DATE = GETDATE()
    DECLARE @maxBins int
    DECLARE @loopCount int = 1
    SET @maxBins = (SELECT MAX([# of Bins]) AS 'Max Bins'
    FROM
    SELECT
    COUNT(BINLABEL) '# of Bins'
    FROM A1Warehouse..BINLOCAT
    GROUP BY PRODUCT
    ) AS T0)
    PRINT @maxBins
    SELECT *
    FROM
    SELECT
    Tx.[Item Code]
    , Tx.Description
    , SUM(Tx.[Sales (last 12 Months)]) AS 'Sales (last 12 Months)'
    , ISNULL(Tx.[Supplier Code], '') AS 'Supplier Code'
    , ISNULL(Tx.[Supplier Name], '') AS 'Supplier Name'
    , Tx.OnOrder
    , Tx.IsCommited
    , Tx.OnHand
    , ISNULL(Tx.BINLABEL, '') AS 'Binlabel'
    , ISNULL(CAST(Tx.QUANTITY AS nvarchar), '') AS 'Quantity'
    FROM
    SELECT
    T0.ItemCode AS 'Item Code'
    , T0.Dscription AS 'Description'
    , SUM(T0.Quantity) AS 'Sales (last 12 Months)'
    , T3.CardCode AS 'Supplier Code'
    , T3.CardName AS 'Supplier Name'
    , T2.OnOrder
    , T2.IsCommited
    , T2.OnHand
    , T4.BINLABEL
    , T4.QUANTITY
    FROM INV1 T0
    INNER JOIN OINV T1 ON T1.DocEntry = T0.DocEntry AND T1.CANCELED = 'N'
    INNER JOIN OITM T2 ON T2.ItemCode = T0.ItemCode
    LEFT JOIN OCRD T3 ON T3.CardCode = T2.CardCode
    LEFT JOIN A1Warehouse..BINLOCAT T4 ON T4.PRODUCT = T0.ItemCode collate SQL_Latin1_General_CP850_CI_AS
    WHERE T1.DocDate >= @fromDate AND T1.DocDate <= @toDate
    GROUP BY T0.ItemCode, T0.Dscription, T3.CardCode, T3.CardName, T2.OnOrder, T2.IsCommited, T2.OnHand, T4.BINLABEL, T4.QUANTITY
    UNION ALL
    SELECT
    T0.ItemCode AS 'Item Code'
    , T0.Dscription AS 'Description'
    , -SUM(T0.Quantity) AS 'Sales (last 12 Months)'
    , T3.CardCode AS 'Supplier Code'
    , T3.CardName AS 'Supplier Name'
    , T2.OnOrder
    , T2.IsCommited
    , T2.OnHand
    , T4.BINLABEL
    , T4.QUANTITY
    FROM RIN1 T0
    INNER JOIN ORIN T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN OITM T2 ON T2.ItemCode = T0.ItemCode
    LEFT JOIN OCRD T3 ON T3.CardCode = T2.CardCode
    LEFT JOIN A1Warehouse..BINLOCAT T4 ON T4.PRODUCT = T0.ItemCode collate SQL_Latin1_General_CP850_CI_AS
    WHERE T1.DocDate >= @fromDate AND T1.DocDate <= @toDate
    GROUP BY T0.ItemCode, T0.Dscription, T3.CardCode, T3.CardName, T2.OnOrder, T2.IsCommited, T2.OnHand, T4.BINLABEL, T4.QUANTITY
    )Tx
    GROUP BY Tx.[Item Code], Tx.Description, Tx.[Supplier Code], Tx.[Supplier Code], Tx.[Supplier Name], Tx.OnOrder, Tx.IsCommited, Tx.OnHand, Tx.BINLABEL, Tx.QUANTITY
    )Ty
    PIVOT
    MAX(Ty.Quantity)
    FOR Ty.Binlabel IN ([0], [1], [2])
    )Tz
    Here is a screen shot of the results that I see -
    I understand why there are NULLs in my 0, 1, and 2 columns...there simply aren't Bin Labels called 0, 1 or 2!
    My challenge is that I do not know how to proceed from here. Firstly how do I call each of the pivoted columns 'Bin 1', 'Bin 2', 'Bin...', 'Bin 26' when the actual Bin Labels are over 10 thousand different possible character sets, e.g.: #0005540, K1C0102, etc,
    etc, etc...
    I have considered the possibility that a WHILE loop may be able to serve in populating the column names...
    DECLARE @maxBins int
    DECLARE @loopCount int = 1
    SET @maxBins = (SELECT MAX([# of Bins]) AS 'Max Bins'
    FROM
    SELECT
    COUNT(BINLABEL) '# of Bins'
    FROM A1Warehouse..BINLOCAT
    GROUP BY PRODUCT
    ) AS T0)
    PRINT @maxBins
    WHILE @loopCount <= @maxBins
    BEGIN
    PRINT @loopCount
    SET @loopCount = @loopCount +1
    END
    ...of course the query above has no practical application at this stage, but I thought that it may be useful
    from a 'logic' point of view.
    I have tried to insert a WHILE clause into various locations within the Static Pivot query that I wrote, however in each instance there were errors produced by SSMS.
    If anybody can suggest a way to solve my data pivoting challenge it will be much appreciated.
    Kind Regards,
    David

    How you can 'assign' multiple values to the @SQL variable (if that is indeed what is happening)
    What 'FOR XML PATH('') actually does
    Dynamic SQL in general...
    if you could share some insights into how I can go about removing the NULLs it will be greatly appreciated.
    The FOR XML PATH('') method is one of several ways to concatenate the values from several rows into one column of one row.  There are other ways, but I believe the most commonly used one today (and certainly the one I always use) is the FOR XML method. 
    A good link for understanding the FOR XML method is
    http://bradsruminations.blogspot.com/2009/10/making-list-and-checking-it-twice.html.
    If you are not used to dynamic SQL, there is an excellent discussion at http://www.sommarskog.se/dynamic_sql.html.  If you are not used to dynamic SQL, you definitely want to review the SQL Injection topic on that page before making extensive use of
    dynamic SQL. 
    You can get rid of the NULLs, but only by converting the NULLs into a value.  You can use the IsNull() function or as diadmin noted the Coalesce() function to do this.  There is, however, the question of what value do you want.  Of course
    the obvious choice for converting varchar values (like BinLabel) is the empty string ('').  But for numeric values (like BinQty) you need to either output a number (like 0.000000) or you need to convert the numbers into a character type and then you could
    use the empty string.  Of course doing this makes this already complex piece of SQL more complex, but it certainly can be done.  An example
    Create Table Foo(ItemCode varchar(6), ItemDescription varchar(50), OrderQty decimal(12,6), BinLabel varchar(7), BinQty decimal(12,6));
    Insert Foo(ItemCode, ItemDescription, OrderQty, BinLabel, BinQty) Values
    ('DR1124', 'D6 Series 24 OD 3/8 1 Neck', 50, 'B1A1904', 9),
    ('DR1124', 'D6 Series 24 OD 3/8 1 Neck', 50, 'M1D0703', 66),
    ('DR1124', 'D6 Series 24 OD 3/8 1 Neck', 50, 'S1K0603', 24),
    ('H21', 'Rubber Mallot', 75, 'X1X0712', 100),
    ('H21', 'Rubber Mallot', 75, 'T3B4567', 92);
    Declare @SQL nvarchar(max);
    ;With cteRN As
    (Select ItemCode, ItemDescription, BinLabel, BinQty,
    Row_Number() Over(Partition By ItemCode Order By BinLabel) As rn
    From Foo)
    Select @SQL = (Select Cast(N'' As nvarchar(max)) + N', IsNull(Max(Case When rn = ' + Cast(rn As nvarchar(5)) + N' Then BinLabel End), '''') As BinLabel' + Cast(rn As nvarchar(5))
    + N', IsNull(Cast(Max(Case When rn = ' + Cast(rn As nvarchar(5)) + N' Then BinQty End) As varchar(19)), '''') As BinQty' + Cast(rn As nvarchar(5))
    From (Select Distinct rn From cteRN) x
    Order By rn
    For XML Path(''))
    Select @SQL = Stuff(@SQL, 1, 2, '');
    --Select @SQL
    Select @SQL = N'Select ItemCode, Max(ItemDescription) As ItemDescription, Max(OrderQty) As OrderQty,' + @SQL + N' From (Select ItemCode, ItemDescription, OrderQty, BinLabel, BinQty,
    Row_Number() Over(Partition By ItemCode Order By BinLabel) As rn
    From Foo) As x Group By ItemCode'
    --select @SQL
    Exec(@SQL);
    -- Cleanup
    go
    Drop Table Foo;
    Tom

  • Quicktime Broadcaster: Only with OS X Server?

    Talk about austerity! I have what must be the simplest set-up. PowerMac G5, 12 Mbps cable connection (ethernet), iSight, and QT Broadcaster. The sum of that is that I immediately get a 5420 cannot connect to server error. There is nothing in QTBB Help, and I find nothing by searching Apple's support files. I don't even find anything that could qualify as instructions on how to use the application.
    Does it work only with the $500 OS X Server?

    QuickTime Streaming Server... Free.
    http://www.apple.com/support/downloads/quicktimestreamingserver.html
    Some streaming tutorial links which may or may not be helpful:
    How to with QuickTime Broadcaster:
    http://mlearning.rave.ac.uk/mlearning/how_to/qtb.htm
    http://www.engadget.com/2004/11/30/how-to-step-by-step-guide-to-recording-podcas ts-on-the-mac/
    http://www.digitalmediatraining.com/zoomin/archive/issue4/tutorials/mpeg4.html
    http://www.soundscreen.com/streaming/webcast/howto_webcast.html
    http://www.apple.com/quicktime/tutorials/videopodcasts.html
    http://www.streamingmedia.com/article.asp?id=8478

  • Information broadcaster setting with 2 variants

    Hi Experts,
    I have a workbook to broadcast, there are two different queries in this workbook and they have the same variables.
    I am creating IB settings with this workbook, but precalculation failed to send it out.
    I believe the problem is with variant, I have created variant for both queries in the workbook and have the same name (variant contents are the same)
    say if we have two variants for two different queries in the workbook, is it possible to set up IB using variant and how?
    Please let me know if there is any solution to my issue, if not I will just use variable assignement (a bit work on this one, a lot of material codes and others, plus, I need to create more multiple IB settings for this workbook).
    Kind Regards!
    Feng

    No replys

  • 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

  • Broadcasting reports with navigation status

    Hi all,
    We have a problem with broadcasting reports via the Portal in NW2004s. We have scheduled settings including "Navigation Status" and scheduled these reports to be sent as pdf files in an email to different users. This has worked fine until a couple of days ago, when two of our distributed reports have the same data. They are both based on the same web template, so it seems as the navigation status (bookmark) has disappeared/ is not being used. When I look at the settings, both of them are displayed as if they are using bookmarks.
    Does anybody have any idea on what could have happened? Do you know where you can see the actual link between the broadcasting setting's technical name and the bookmark's technical name?
    Thank you in advance,
    Mikael

    Hi Mikael,
    Broadcast Settings.
    http://help.sap.com/saphelp_nw04/helpdata/en/d5/d61140d72dc442e10000000a1550b0/frameset.htm
    Bookmark IDs
    http://help.sap.com/saphelp_nw04/helpdata/en/33/51fa40badbf36fe10000000a1550b0/frameset.htm
    Assign points if this helps.
    Regards,
    Anil

  • BEx Broadcaster Send button - No Broadcast Wizard with Key Figures in Rows

    Working in BI 7.0 SP 16, we are having an issue with BEx Broadcaster.  For a typical horizontal query (key figures in columns), the send button in BEx on the Portal works properly and returns the Broadcasting Wizard.  However, when using a query in a vertical format (key figures in rows), the window opended by the send button displays the "spinning wheel" and never procceds on to the Broadcasting Wizard.
    I have checked for SAP notes related to BEx Broadcaster and was not able to find anything relevant.
    The same query was tested with the key figures in columns and in rows.  The Broadcast Wizard comes up when the key figures are in columns, but not in rows.  Since it was tested both ways with the same query, I am assuming that the issue is related to the orientation (horizontal vs. vertical).
    Has anyone else run into this issue?  Is there a known limitation, or a patch available?  Does anyone have a BI system with a query you could flip the key figures from columns to rows and give it a try?
    thanks,
    -Shawn

    Shawn,
    I'm having my own issues with BEx Broadcaster in the Portal, but from BEx Query Designer - Query - Publish - BEx Broadcaster, the BEx Broadcaster Wizard is available in both cases (Key figures in columns and key figures in rows).
    Kim

  • Broadcast schedule with Data change to InfoProvider EHP1

    Hi all,
    We are working in an EHP1 environment and are currently trying to schedule a Broadcast from a Process Chain.
    The thing is that when we try to create the broadcast setting, under scheduling options we only get the "Direct Scheduling in the Background Processing"
    Is there a way to schedule a setting with Data Change to InfoProvider under EHP1 ? Is the option still available ?
    Waiting for your comments,
    Santiago J. Reig

    Solved.
    To be able to select the specific option in the schedule of a broadcaster setting you first need to add the Process Chain step, run the chain once, and only then the option will be available.
    Regards !

  • Using RSRD_BROADCAST_STARTER to run Broadcast setting with ALEREMOTE

    Hi all
    I'm experiencing some problems executing a broadcast setting using RSRD_BROADCAST_STARTER in a process chain.
    If I were to go into RSRD_BROADCAST_STARTER and type in the broadcast setting and click on the checkbox for Execute Online, I am able to receive the broadcast email
    However in a Process Chain, if I were to schedule the execution of RSRD_BROADCAST_STARTER with variant of similar selection, I would not receive any broadcast email.
    It seems that when executing through the Process Chain, the userid is ALEREMOTE rather than my userid. Is the ALEREMOTE unable to use the option "Execute Online"? What settings do I need to configure such that the ALEREMOTE can work in this case? Btw, ALEREMOTE has access to SAP-ALL.
    Thanks
    Brendan

    Execute the setting online will take the authorization of current logged on user, while executing the setting in background will uses the authorization user indicated in the setting. You need to check if the Authorization user of the setting indeed has access to all the objects that suppose to be broadcasted.

Maybe you are looking for

  • After upgrading iTunes software, I cannot import playlists

    After upgrading iTunes software, I cannot import playlists.  Help!

  • Ftp access docroot best practice

    I have installed WS 7.0, created a dir /docroot with owner:group websrvd:webservd. What is a "good" way to send files to /docroot via ftp? I only ftp over my local lan; access is not allowed outside of the local lan. Should I set up a new user in gro

  • Encore 2.0 doesn't restart

    When running Encore DVD 2.0 I exit the program. After exiting, the application disappeared from my desktop so I assumed the application actually terminated as it should. Later I would try to restart Encore. After double clicking the shortcut for Enco

  • What Rendering intent is used when exporting with a different color space?

    Hi, I would be ever so grateful if any one can tell me what rendering intent is used by LR4 when exporting using a custom colour space as there is not an option as there is with the print module. Thanks. Message title was edited by: Brett N

  • Virtual box additions won't install

    I'm running Arch on a virtual box right now to test it out. I'm trying to install the VBoxLinuxAdditions. I mounted /dev/cdrom to /media and typed sudo /media/VBoxLinuxAdditions-x86.run And this is the output I get: erifying archive integrity... All