Report execution for different variant and Broadcast

Hi experts,
i had a situation where i need to broadcast the same report for 100 vendors, but the information in the report will be different and specific to the vendor.
can i create different variant for each vendor and execute the report at the time in background and broadcast that to the vendors.
Is it possible for broadcasting the reports at a time
any idea will be appreciated
regards

Hi akshay
Is it like i can execute the report same time for different variants and broadcast that reports based on  that variant to different vendor
for eg User  A has to view report with Variant X.
         User B has to view same report with variant Y
and so on is this possible for us to do at a time
or need to create different reprots for 100 vendors and broadcast them
Hope if u have any document for broadcasting that shows the steps to do this can you please share

Similar Messages

  • Share Global structure for different module and include

    Hi,
      How can shared the data declaration for different module and include??
    Regards,
    Kit

    Declare your variables in TOP include of the function group.

  • Maintaining Price Record for Different Stores and Distribution Centers

    Hi expert
    I want to maintain price condition record for condition type ZPR0 for one article
    for different store and different Distribution Center
    what is t.code and path
    if sales price should copy from purchase price what are setting
    thanks

    Hi Hanumant,
    To do sales pricing
    Goto IMG>Sales & Distribution>Basic Functions>Pricing>Pricing Control
    1. Use condition table 406 Site/article
    2. Define Access Sequences ZPR0
        Enter accesses:10 406 Site/article Exclusive x
    3. Define Condition Types (ZPR0 assign newly defined access sequence)
    4. Define And Assign Pricing Procedures (assign condition types ZPR0..etc. to it)
    Then maintain condition record , go to VK11 --> Enter your Z condition type (eg. ZPR0)., enter the amounts.
    Add the pricing procedure , to sales document type.
    For Retail Sales Pricing based on Purchase pricing you can follow the following method:
    The retail price is always based on the purchase net/net price. This purchase net price is built up from the purchasing pricing elements or condition types defined to be included in the purchase net price. A planned mark-up is applied to the purchase net/net to calculate the proposed retail price. The planned mark-up can be set by merchandise category and for exceptions, more specifically by article.
    You can perform Two-step calculation for retail pricing, for example, for stores that are supplied by a distribution center (internal vendor). Calculating sales prices for the stores is based on the transfer price for distribution centers (preceding organizational unit).
    1. Set up Master Data (WB02) - Relevant Fields should be maintained
    2. Set up Article Master Data - Logistics DC and Store View (MM42)     
    Relevant Fields should be maintained
    3. Maintain Mark up for DC(VK11) -Markup % at Distribution channel distribution chain level
    Mark ups maintained at two levels:
    For DC: At distribution chain level
            Condition type used: AUFS
    For Stores: At article level
         New condition type ZUFS created.
    4. Maintain Mark up for Stores (VK11) Markup % at Store distribution chain level
    5 Create Pricing Procedures (IMG) -Pricing Procedures created
    6. Carry out Price calculation for DC(VKP5) - Pricing Document created - DC Transfer price calculated
    7. Carry out Price calculation for Stores (VKP5) - Pricing Document created - Final Retail Price Calculated
    The final retail price that is calculated is stored in the condition type VKP0.
    Hope it helps,
    Regards,
    Anirban Roy

  • Reuse Crystal report Viewer For different reports - unload cache

    So I am migrating from crystal reports basic to crystal reports 2008. I have hit a stumbling block. Rather than have a new page and report viewer for each report I decided it would be easier to have one report viewer and send to it in session variables the report I wish to run and appropriate parameters. This seemed to work fine in CR basic.
    Now I have upgraded the viewer works fine for the first report I run however it then caches this report and doesn't seem to clear it down, if the new report has different parameters I will get a parameter error. If I run a report requiring the same parameters I will get the original report not an updated one.
    I believe I need to leave the CrystalReportSource cache on in order to page the report (correct me if I am wrong)
    I have taken a few snippets of code, is this possibly running too late in page life cycle have I missed something or is there a way to force a cache clear:
    protected override void OnLoad(EventArgs e) {
    //setup report in viewer with correct db logon
                    CrystalRepSource.Report.FileName = report;
                    SetupLogonInfo(CrystalRepSource);
                    //add parameters
                    AddParam(paramFields, pfItem1, dcItem1, "@year", year);
                    AddParam(paramFields, pfItem2, dcItem2, "@school", school);
                    AddParam(paramFields, pfItem3, dcItem3, "@division", division);
                    AddParam(paramFields, pfItem4, dcItem4, "@progArea", progArea);
                    AddParam(paramFields, pfItem5, dcItem5, "@type", SessionHandler.record_type);
                    AddParam(paramFields, pfItem6, dcItem6, "@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
    CrystalViewer.ParameterFieldInfo = paramFields;
    private void SetupLogonInfo(CrystalReportSource CrystalRepSource)
            TableLogOnInfo logOnInfo = new TableLogOnInfo();
            logOnInfo = CrystalRepSource.ReportDocument.Database.Tables[0].LogOnInfo;
            ConnectionInfo connectionInfo = new ConnectionInfo();
            connectionInfo = logOnInfo.ConnectionInfo;
            connectionInfo.DatabaseName = Application["db"].ToString();
            connectionInfo.ServerName = Application["server"].ToString();
            connectionInfo.Password = Application["pass"].ToString();
            connectionInfo.UserID = Application["user"].ToString();
            CrystalRepSource.ReportDocument.Database.Tables[0].ApplyLogOnInfo(logOnInfo);
        private void AddParam(ParameterFields paramFields, ParameterField pfItem, ParameterDiscreteValue dcItem, string fieldName, string value)
            pfItem.ParameterFieldName = fieldName;
            dcItem.Value = value;
            pfItem.CurrentValues.Add(dcItem);
            paramFields.Add(pfItem);

    ok so I have tried changing the code to:
    CrystalRepSource.ReportDocument.SetParameterValue("@year", year);
                    CrystalRepSource.ReportDocument.SetParameterValue("@school", school);
                    CrystalRepSource.ReportDocument.SetParameterValue("@division", division);
                    CrystalRepSource.ReportDocument.SetParameterValue("@progArea", progArea);
                    CrystalRepSource.ReportDocument.SetParameterValue("@type", SessionHandler.record_type);
                    CrystalRepSource.ReportDocument.SetParameterValue("@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
    private void Page_Unload(object sender, EventArgs e)
            try
                    CrystalRepSource.Report.DataSources.Clear();
                    CrystalRepSource.Report.Parameters.Clear();
                    //CrystalRepSource.ReportDocument.Close();
                    //CrystalRepSource.ReportDocument.Dispose();
                    CrystalRepSource.Dispose();
                    CrystalViewer.Dispose();
                    GC.Collect();
            catch { }
    I experimented with various bits in the page unload as you can see I have commented a bit out at present as it was throwing an exception. The SetParametersValue while handy (will clean the code up a bit) didn't make any difference I am still getting the same issue.

  • Can I have 2 routers with different security and broadcast modes off same modem?

    Hi
    Apologies for not being too technical.  The background is that I have a mac and a dell laptop, both of which used to work off a Linksys WRT54G wireless router even though both computers are set up for N routers.  I then bought a Logitech Squeezebox internet radio, again working off the Linksys G.  The security on all 3 was WEP.
    I was then advised to upgrade my router to N and change security to WPA.  I bought a Netgear WNR2000 N wireless router as the local shop did not have any linksys n routers.  I tried to set up the three devices to this router but it seems that the radio will only broadcast G and WEP security.
    It then appeared that I would have to downgrade the other two computers back to G and WEP also and when I did that the internet speed really slowed down.
    My query is this, can I set up the Netgear N to be linked to my modem and broadcasting at N and WPA, thus linking my computers at top speed, and then can I link my Linksys to my Netgear and have that broadcast a different network on G/WEP for my radio?  If I can or if there is a better solution could someone tell me in easy steps how to do it?
    Very much obliged.

    You don't have to downgrade your router. Just enable mixed mode so it will allow wireless N and G devices to connect to the router. However, it will share the same wireless security mode.
    With regards to your query, the answer is yes. You can setup two (2) wireless routers, one providing N and WPA while the other one providing G and WEP. It might be a little complicated though. You have to cascade the routers. Both should have different SSID and channel.
    Try this setup first before changing the wireless options.

  • International SSRS report printing for both A4 and Letter

    I've been reading a few articles on the net about making reports either A4 or Letter and I am aware of how to change the layout of the page to be specific for either
    The problem we have is that we have some users that use A4 paper, and other users that use Letter size paper.
    We would ideally like the user to press the print button from the browser window (note not exported to PDF) and for the report to be printed off on their favourite printer
    We have modified the layout to be the lowerst common denominator size (210mm x 279mm).  When we print to our printer which uses A4 paper, it errors because the paper size is odd and needs confirmation to use A4 instead.  I am making the assumption
    that using a printer with Letter size has the same problem.
    We do not want our users to have to deal with errors on their printer every time they try to print a report, it doesn't look good.  We don't want to write 2 versions of each of our reports as that will be time consuming and a maintenance nightmare
    Has anyone managed to make SSRS reports printer agnostic or at least be able to print out on either A4 or Letter without additional intervention on the printer?
    Tony

    Hi Tony,
    What version of SSRS are you using? Are you seeing this from the Report Viewer control or Report Manager?
    In my Report Manager, when I try to print a report (SSRS 2008 R2), the Layout defaults to Letter. When I look at the report (RDL) property in BIDS, the PageSize property is set to 8.5in (Width), 11in (Height), which refers to PageWidth and PageHeight respectively.
    The following blog explains these properties:
    http://blogs.msdn.com/b/bwelcker/archive/2005/08/19/alien-lanes-_2800_logical-and-physical-pagination-rules_2900_.aspx
    In SSRS 2005, for the Report Viewer control, due to a VS 2005 issue, we had a situation where it would not allow custom paper size. By modifying the report page size to the exact Letter size (279.4mm = 11 inches), for example, we would be able to see the
    Letter size in that situation. This should be fixed on and after SSRS 2005 SP2.
    In general, after rendering a report, Reporting Services sends the height and width information to the printer driver when we try to print a report, which selects the appropriate paper type based on the report size.
    In my test, when I tried to print, it chose Letter with Portrait Orientation. I was able to change it to A5 from the Print Dialog and was able to print in both ways (A5/Letter) without any error message.
    Thanks,
    Cathy Miller
    Microsoft Online Community Support

  • What is proper way to report suggestions for app features And bugs to Apple

    What is the proper way to report suggestions for app features to Apple? Or, do they even want suggestions?
    And, how about reporting app bugs? Should I just assume the bug is already known, or is there a way for (quickly) reporting them?

    I'm not sure about bugs in non-Apple apps, but bugs in Apple apps can be reported via this form:
    http://www.apple.com/feedback/ipad.html

  • Bad versions also for different color and contrast!!!!! Help

    hi,
    the master sharper than version is an issue for me also knowing that is due to antialiasing in monitor scaling (I print 200+ sport shoots in 1 hour at the end of ski races after racers seen them on monitor and give me ok for print - and need a fast but good software).
    But further to this my AP2 on MBPro show the message "Proofing Profile: Apple RGB" at the bottom of the viewer for each image. If I press P key for Quick preview the message disappear but the master images is much more contrasted, darker, and of a different color (and sharper) but much more good than version!!!??? How can i work on a so bad version and also in full screen mode!
    Speed is now good, but if no more good suggestion will arrive Ill'be compelled to swich back immediately to 1.5.6 or try again Adobe LR.

    abetone wrote:
    But further to this my AP2 on MBPro show the message "Proofing Profile: Apple RGB" at the bottom of the viewer for each image. If I press P key for Quick preview the message disappear but the master images is much more contrasted, darker, and of a different color (and sharper) but much more good than version!!!??? How can i work on a so bad version and also in full screen mode!
    You've turned on on-screen proofing. Go to View>Onscreen Proofing to turn it off.
    Ian

  • Need to collect the Windows logon and logoff events across the Domain in a DC eviornment, for different machines and user accounts.

    Hello All,
    I am trying to build a Tool to collect the info about all the user's who login and logoff on daily basis in a domain network. I am using a windows 2008 server as a DC and have xp, win 7, win 8 , win 12 server as clients in the network.
    There are few questions in my mind which I am not able to answer.
    1> When a user tries to login to the DC network, he/ she gets authenticated using the kerberos protocol. does these authentication gets logged on the AD server by default? I have see a way to enable it from registry but even that's not giving me the expected
    output in the eventvwr.
    2> Do I have to use Audit policies to monitor all the user's log off and log on activities?
    3> Is there a way to collect these information from any place on the AD server other than the Eventvwr?
    Please help me in finding the solutions to these query's  of mine.
    Thanks.

    1. Open the Group Policy Management console on any domain controller in the target domain: navigate to Start → Administrative Tools → Group Policy Management.
    2. In the left pane, navigate to Forest: <domain_name>→ Domains → <domain_name>→ Domain Controllers. Right-click the effective domain controllers policy (by default, it is the Default Domain Controllers Policy), and select Edit from the pop-up
    menu. </domain_name></domain_name>
    <domain_name><domain_name>3. In the Group Policy Management Editor dialog, expand the Computer Configuration node on the left and navigate to Policies → Windows Settings → Security Settings → Local Policies → Audit Policy. </domain_name></domain_name>
    <domain_name><domain_name>4. Set the Audit account management and the Audit directory service access policy to "Success". Set the Audit logon events policy to  "Success" and "Failure". </domain_name></domain_name>
    5. Navigate to Start → Run and type '"cmd". Input the gpupdate /force command and press Enter. The group policy will be updated.
    Number of events could be excessive so you need to adjust size of Security log ( 1gb for example ) 
    Usage of EventCombMT Tool (part of
    MS ALtools )
     This tool gathers specific events from several different servers to one central location.
     Run the EventCombMT.exe > Right Click on Select to search field > Choose Get DCs in Domain > Mark your Domain Controllers for search
     Click the Searches menu > replace Event ID field values with
    4624  LOGON / 4634  LOGOFF
     Click Search and wait for the process to complete the operation.
     After the search is done the output directory contains the log files for the domain controllers where events with the specified Event ID’s were found.
    Alternatively you can try Netwrix Auditor for Active Directory solution with 20 days of free trial to generate such reports.
    --- Jeff (Netwrix)

  • Same WAD Template to be used for different queries and dataprovider

    Hi All,
    I want to create a WAD template that cound be use by 100 more queries.
    Making setting in SPRO or RSCUSTV27 will make it a default template for all the queries.
    I only want the template to be used for say MM module(100 queries).
    Any way it can be done?
    Please help.
    Thanks
    Vinay

    Hi Vin Loh,
    I assume your requirement as this:
    Case 1: You have N querie(s) on several infoproviders in your case MM module, and that you would like to display all the queries in a single WAD report? You can do it! Its a feasible solution.
    Goto WAD > Insert a 2 X 2 table > In the (1,1) box insert a drop down box. In the (1,2) You may add a Title of type 'Text' > In the (2,1) box you may add a 'Navigational Pane' > In the (2,2) cell add the 'Analysis Grid' > Create a Dataprovider DP_1 referencing any frequently accessed query. As of now a template has been created, which can be modified as accordance to suit your requirements.
    Now, once done, goto the dropdown box settings. This DDBox's main objective is to give you acess to all the N queries in your MM module. Goto 'Web Item Params' > Choose the 'Data Binding' option > Edit Parameter > In the 'Data Binding Type' choose 'QUERY VIEW' > Goto the 'Selection of Query Views' > Check the option 'Specify List of Query Views' > Under 'Single Entry in DD...' choose Initial State as QUERY; Not QUERYVIEWS > Choose your N queries as listed here. No need to create N different DPs or N different reports.
    Here, your iView is of type ..TEMPLATE=ZTEST.. for WAD based reports; not ..QUERY=ZTEST...
    Guess it will resolve your issue.
    Case 2: You wish to create a BEx template for all your existing MM queries as run on BEx Web based analyzer? In this case you need to check on the KM config. In the portal you have the Imported iViews templates.
    Thanks,
    Arun Bala

  • Creating a PDF that is customizable/interactive for different companies and representatives

    I am rather new to Adobe, however I am able to use most of the software (illustrator, indesign, Photoshop, LiveCycle)  just fine.
    My issue is I am not sure which program/technique I should use for an interactive PDF I need to create.
    I am trying to create a PDF document that will be around 50 pages.  This document I will distribute to representatives in my company who work for many different financial institutions.  I somehow want to create this PDF for them to be able to customize by inserting their financial institution's logo and date to the footer and insert their name to title page (and any other applicable pages).
    If possible, I was hoping there was a way to include a page where our representatives could select from a checklist which of the 50 pages of the PDF they wanted to include in their document.  The representatives also are not that tech savvy and think just telling them to delete the pages from the PDF could cause potential problems.  Also a checklist would be simple and look much more professional. 
    The representatives would not have access to any Adobe design software, so the final document would have to be some sort of interactive/customizable PDF through Acrobat. 
    I am kind of lost as to how I can create this PDF and so if anyone can point me in the right direction I would greatly appreciate it!  It's also possible I may be in the wrong program forum.  So apologize if I am.
    Thanks!

    This can be done using Adobe Acrobat yes.
    You need to decide how many uses this item will get. The reason is you have to specially enable the forms so that the users can use Reader to save the changes afterwards. These enabled files have use restrictions. You can send them to 500 people and they can use them as many times as they want or you can send them to as many people as you want but can only collect the item back 500 times.

  • MIS report extraction for P&L and B/S  t codes

    Hi
    MIS report required from SAP for the following:
    1. Profit & loss acct (consolidated , plant and segment wise)
    2. Balance sheet
    we havn't configured FSV at production yet, so without this is it possible?
    Edited by: barnabasjh on Jul 7, 2010 12:50 PM

    Hi,
    It is NOT possible to get the financial statements without an FSV. You can only get the trial balance.
    Regards,
    Mike

  • Crystal Reports asking for Dbase username and id

    When I try to select a dBase file as my data source location in Crystal Reports, CR wants a user name and log in id for the dBase file...I do not have a user name or log in id for my dBase file...
    How can I get past this?
    Mitch

    I don't believe this is a DB2 z/OS question, perhaps it would be better to ask in another SDN forum?

  • Report Layout for different page sizes....

    hi...by chance my report (which was developed for an A4(letter size) paper) printed on a legal size page(8x13 inch) which left alot of blank space on the bottom of page which was giving a bad look to my report. So I want to know that is there anyway to develop the reports so that they set the reports width n height automatically with different page sizes?

    nobody is willing to answer this?

  • Authorisations in BW for different Queries and one InfoObject

    Hi,
    we have a problem regarding Authorisations in BW.
    Some of our users have different rights on different queries e.g. for the Info-Object 0PLANT. For the query ABC he should see data to more plants than for the query XYZ.
    Our idea was to build an Authorisation-Object containing 0PLANT, TCTQUERY, TCTIFAREA and TCT ICUBE and to set the authorization for 0PLANT regarding the detailled name of the query (TCTQUERY). But this doesn't work because when starting the query SAP doesn't check the name of the Query. And so the user can always see the sum of plants set in both authorisations.
    Maybe someone of you has useful hints.

    Hi Andreas,
    In your case you need to use hierarchical authorizaton object to provide data restriction on the queries. Thus everyone can have the same query and they view what ever they are supposed to. Please find the how to document called: "How To…Work With Hierarchy Authorizations" You will find detalied information and businees scenario about the topic. Please let me know if I can assist you further
    Regards

Maybe you are looking for

  • PDF Hyperlink in IPAD

    I have a PDF file im transfering to my ipad, I need to create a hyperlink within it to open another PDF on my ipad.  Any Suggestions?

  • NO OCIJDBC8 in java.library.path (JDEV3.0)

    HI, I am using Jdev3.0. I am trying to use the OCI-8 in the Connection Manager. In the manager, I selected Oracle JDBC OCI-8 from the Driver dropping the box. When I clicked the Test Button, I got the "no ocijdbc8 in java.library.path" message. Where

  • REAP Configuration Questions

    I have a site in which I would like to configure my 1030 in REAP mode on my WLC4124. I want all of the traffic to stay local. What I'm thinking is that I create an interface with the local vlan at the remote site on the controller (40) then create an

  • List the contents of jar, ear, war files

    Hi All, It has been several years since I have worked in java and now I am trying to get caught back up :-). My question is: Is there a standard utility that can dump/list the contents of the packaging files: jar, ear, war? Thanks in advance!

  • PDC to Hyper-V = Recommended Chronological Order (Parallel Implementation)

    Our organisation is currently awaiting the delivery of a new server to  replace the current PDC. We plan to utilise the new server to act as the Hyper-V host for a new PDC among other services we currently host on  ageing physical servers. Is there a