Assigning Different database governance limit for on demand versus scheduled report in BOEXI release 1

Post Author: Lucia Chan
CA Forum: WebIntelligence Reporting
I'm trying to use connection overrides for universe to assign different CPU processing limit for different group members on the database side.  For those with low CPU limit setting, they would need to schedule their reports.  I'm trying to find out if there is any way for the database to know if the report is on demand or scheduled.  If scheduled, there should be no limit.  I did a preliminary test with both on demand and scheduled WebIntelligence reports and both passed the wiReportServer.exe instead of wiJobServer.exe on the database side as AppName.  Does anyone have any suggestion to look at that can differentiate the two?
Thank you.
Lucia Chan

All the mesages are dated "Aug 13" which is quite a few months ago ! I see no recent messages.
You have two CREATE CONTROLFILE calls and one alter database character set INTERNAL_CONVERT ZHS16GBK call.
Were these part of a Database Creation using DBCA (The Database Creation Assistant) ?
Hemant K Chitale

Similar Messages

  • Governer limit for inserting a Custom section in detail page of SOD

    HI,
    I want to insert multiple custom section in detail page of Siebel on demand objects.
    What is the governer limit for insertion of the Custom sections?
    Thanks
    Yash

    Hi Sean,
    I am sorry for your confusion. Yes, your understanding is correct.
    I tried to add manually and i got the result as 'There can be at most 25 custom web applets in a detail page'. Is this correct?
    Thanks
    Yash

  • Assign different ship to party for each material in a sales order in CRM?

    Hi all,
    I need to create a sales order in CRM, such that the sales order contains more than 100 materials at item level and each material should be shipped to a different ship to party.
    That is for 100 materials in sales order I need to ship to 100 different customers.
    The 100 ship to partyu2019s are maintained for the business partner in relation ships tab in /nBP.
    The CRM configuration is done in such a way that when we enter a material while creating a sales order in CRM,u2026u2026.a window pops up asking us to select the ship to party for that material.
    No I need to replicate this programmatically. I generated a sales order in CRM programmatically using BAPI_SLSTRANSACT_CREATEMULTI. u2026 Now I need to make changes such that I have a provision to assign ship to party for each materialu2026
    How can I do this? Can any one tell me if there is a BAPI or Function Module available so that I can assign a different ship to party for each material in sales order?
    Regards,
    Jessica Sam

    Here is sample code. In that highlighted portion is different. check this out
    DATA: ls_partner TYPE crmt_partner_com,
            ls_input_fields TYPE crmt_input_field,
            lt_fieldname TYPE crmt_input_field_names_tab,
            ls_fieldname LIKE LINE OF lt_fieldname.
      ls_partner-ref_handle = p_iv_handle.
      ls_partner-ref_partner_handle = 1.
      ls_partner-ref_kind = 'A'.
      ls_partner-display_type = 'BP'.
      ls_partner-no_type = 'BP'.
      ls_partner-kind_of_entry = 'C'.
    licensee
      ls_partner-partner_fct = '00000069'.
      ls_partner-partner_no = w_but000-partner.
      INSERT ls_partner INTO TABLE gt_partner.
    Bill to party
      IF NOT w_con_header-billtoparty IS INITIAL.
        ls_partner-partner_fct = '00000003'.
        ls_partner-partner_no = w_but001-partner.
        INSERT ls_partner INTO TABLE gt_partner.
      ENDIF.
      IF w_con_header-billtoparty IS INITIAL.
        ls_partner-partner_fct = '00000003'.
        ls_partner-partner_no = w_but000-partner.
        INSERT ls_partner INTO TABLE gt_partner.
      ENDIF.
    Employee
      ls_partner-partner_fct = '00000014'.
      ls_partner-partner_no = w_con_header-empresp.
      INSERT ls_partner INTO TABLE gt_partner.
      +*lsinput_fields-ref_handle = p_iv_handle.*+_
      +*lsinput_fields-ref_kind = 'A'.*+_
      ls_input_fields-logical_key = ls_partner-ref_partner_handle.
      ls_input_fields-objectname = 'PARTNER'.
      ls_fieldname-fieldname = 'DISPLAY_TYPE'.
      INSERT ls_fieldname INTO TABLE lt_fieldname.
      CLEAR ls_fieldname.
      ls_fieldname-fieldname = 'KIND_OF_ENTRY'.
      INSERT ls_fieldname INTO TABLE lt_fieldname.
      CLEAR ls_fieldname.
      ls_fieldname-fieldname = 'NO_TYPE'.
      INSERT ls_fieldname INTO TABLE lt_fieldname.
      CLEAR ls_fieldname.
      ls_fieldname-fieldname = 'PARTNER_FCT'.
      INSERT ls_fieldname INTO TABLE lt_fieldname.
      CLEAR ls_fieldname.
      ls_fieldname-fieldname = 'PARTNER_NO'.
      INSERT ls_fieldname INTO TABLE lt_fieldname.
      CLEAR ls_fieldname.
      ls_input_fields-field_names = lt_fieldname.
      INSERT ls_input_fields INTO TABLE gt_input_fields.

  • How to display "No data for yesterday" in a scheduled report on Webi

    Hi All,
    In Webi, I am working on scheduling reports and was asked by a user if the scheduled report on Webi can display "No data for yesterday/no orders for yesterday" when the report returns no data due to No Orders submitted or a business holiday. This sounded a good idea to me as this report only looks for previous days orders/sales and there are many instances when the report will return blank page due to no activity the day before.
    Can anyone please guide me on the possibility of achieving something like this on Webi using Bex query.
    Any help will be appreciated .
    Thanks
    Gaurav

    Hi,
    You can format the blocks in the report as "Hide When Empty" or "Hide When [some formula]" and have a blank cell added behind these blocks with a text "No Data for Yesterday"
    Need to set the relative position and ordering for this accordingly.

  • Missing DataBase Login information for deployed VS2008 w/Crystal Report

    I'm creating a Windows Form application using VS2008 Pro and the basic Crystal Reports (included).</br></br>
    I've successfully added a crystalreportviewer control and a crystal report (.rpt) to my form. I've written the following code in the code behind to programmatically load/bind the report to the viewer. Everything works fine on my development machine (or any machine that has Visual Studio installed). Where I'm encountering problems is when I deploy the application to a machine that does not have VS installed (I have downloaded and installed the "Crystal Reports Basic for Visual Studio 2008 Redistributable Package" for the appropriate processor type on this non development machine) that I'm getting an error . It prompts for "DataBase Login". The ServerName, LoginID and Password are all there, but the "DataBase" field is empty and disable for user input.</br></br>
    Why is the DataBase information missing? How can I solve this problem?</br></br>
    (On a side note, I vaguely remember a property for enabling/disabling the prompting of the database login. I can't remember where this was again to double check if that is the culprit. But I'm pretty sure that I did mark it as to not prompt, since it's supplied in the code behind. Plus it doesn't prompt on the development machines. Only on the non-development machines).</br></br>
    Any help is greatly appreciated! Thanks.</br></br>
    The code executed in the PageLoad event of the form.</br></br>
    this.crystalReportViewer1.RefreshReport();</br>
                ReportDocument reportDocument = new ReportDocument();</br></br>
                #region Load Parameters</br></br>
                ParameterFields paramFields = new ParameterFields();</br></br>
                for (int i = 0; i < _parameterName.Length; i++)</br>
                {</br>
                    ParameterField paramField = new ParameterField();</br>
                    paramField.ParameterFieldName = _parameterName<i>;</br>
                    ParameterDiscreteValue discreteVal = new ParameterDiscreteValue();</br>
                    discreteVal.Value = _parameterValues<i>;</br>
                    paramField.CurrentValues.Add(discreteVal);</br>
                    paramFields.Add(paramField);</br>
                }</br></br>
                crystalReportViewer1.ParameterFieldInfo = paramFields;</br></br>
                #endregion</br></br>
                #region Load Report</br></br>
                string reportUrl = "";</br></br>
                string exePath = Application.ExecutablePath.ToString();</br>
                exePath = exePath.Remove(exePath.Length - 18, 18);</br>
                exePath += _reportName + ".rpt";</br>
                reportUrl = exePath;</br>
                reportDocument.Load(reportUrl);</br>
               #endregion</br></br>
               reportDocument.SetDatabaseLogon("myUserName", "myPassword", "myServer", "myDataBase");</br></br>
                crystalReportViewer1.ReportSource = reportDocument;
    </br></br>
    Edited by: mtech8 on Jan 9, 2010 3:03 PM. Corrected formatting issues to make post readable.

    HI. Ludek,
    Thanks for the tips. I tried both, but the problem presists.
    On a side note, I did get my hands on yet another "non-development machine". This one ran with Window's Vista appeared to work (even with my original code).
    The "non-development machines" that I've tested on are Windows 7 and Window XP machines. On these machines, when I commented out the reportDocument.SetDatabaseLogon line, when I try to load the report, it still prompts for the Database Logon information, however, it also has the "Database name" empty and disabled.
    Since it worked on a non-development machine with Win Vista. I don't think there is a problem with references or the Crystal runtime packages.
    As far as permission for the report to contact the database, I'm guessing there isn't a problem there either because the application does successfully connect to the database.
    I'm connecting to a SQL2005 database and using the SQL Native connection.
    On a side note: as for the enabling prompting, I just remembered that it was an option available when using Crystal Reports with a web project. Thus I couldn't find it here with a Window's Form project.

  • How to assign different tones for different email ...

    Hi.
    I have a question, please.
    Because I receive too many emails for work, I'm trying to "differentiate" them, assigning different tones or alerts for different email senders.
    So I can understand when I have to read immediately an email, or it can be delayed.
    I have never found any solutions in the native application (I think there is not); has anyone any idea or third-part software solutions?
    thank you in advance.
    G

    I supposed too. THat's why I'm thinking to change for Blackberry, after many Nokia equipments. I'm not so happy to change, but I do not understand why Nokia remained so late from competitors.
    Ok for OS, but they have not focused on business terminals after E71 (my phone), and so on.
    I'm so sorry.
    G

  • Same universe, different databases?

    Is there a way to have one universe and depending on the user, point it to different databases?  Like, for example, have IT people point to the test dbase and office folks point to production dbase.

    Hi,
    See if [this|BI Integration; helps.
    Regards,
    Amit

  • BAPI for Assigning multiple ship to party for customer

    Hi experts,
    I need a bapi to assign different ship to party for a customer.
    I have tried SD_CUSTOMER_MAINTAIN_ALL but not working properly.
    Kindly suggest the solution.
    Regards,
    Nitin.

    Hi,
    For the maintenance of customers, there is NO BAPI and NO direct function module.
    There are some functions modules like the one above where the name is looking nice. But these should not be used.
    Below ECC 2005 (6.00), the only solution was batch input and DEBMAS idocs. See [note 384462|https://service.sap.com/sap/support/notes/384462]
    Starting with ECC 2005 (6.00) and above: a synchronisation tool has been introduce. See class CMD_EI_API and VMD_EI_API
    Hope this helps
    BR
    Alain

  • Active Data Guard in different database versions (11.2.0.3  and 11.2.0.4)

    In case of Active Data Guard can i run different database versions (11.2.0.3  and 11.2.0.4) at Primary and DR for production environment ?  And will having RAC in environment make any difference?

    Hi,
    >>In case of Active Data Guard can i run different database versions (11.2.0.3  and 11.2.0.4) at Primary and DR for production environment ?
    As per normal Data Guard requirement, Oracle 11.2 does support flexibility where Primary and Standby may have different hard wares such as CPU architecture and OS etc. but the Oracle RDBMS software version must be the same. Having said so does not mean it will not support it. Beginning with 11.1.07, a physical standby database can be used to execute a rolling database upgrade to a new Oracle Patch Set or database release by using the transient logical rolling database upgrade process. It means you can have with different database version but for how long, you need to check above documents.. For complete information you should read this note:
    Data Guard Support for Heterogeneous Primary and Physical Standbys in Same Data Guard Configuration (Doc ID 413484.1)  &
    http://www.oracle.com/technetwork/database/features/availability/maa-wp-11g-transientlogicalrollingu-1-131927.pdf
    2) >> And will having RAC in environment make any difference?
    NO.   You can find answer at -  https://docs.oracle.com/cd/E11882_01/server.112/e41134/standby.htm#SBYDB4716
    **The primary database can be a single instance database or an Oracle Real Application Clusters (Oracle RAC) database. The standby databases can be single instance databases or Oracle RAC databases.
    HTH,
    Pradeep

  • How Can I Defined Amount Limit For All Invoices For A Supplier ?

    Hi ,
    I Want To Define Amount Limit For All Invoices For Supplier When all Invoices Amounts Be Specify Amount It Make hold For It
    Thanks,
    Mohamed Gamal

    Hi.
    At Suppliers site:
    Invoice Amount Limit. If you enter an invoice for a supplier site that exceeds the invoice amount limit you specify, Payables applies an Amount hold to the invoice during Invoice Validation. You cannot pay the invoice until you release the hold. You can release the hold by adjusting the invoice amount, changing the Invoice Amount Limit for the supplier site, or you can manually release the hold in the Holds tab of the Invoice Workbench.
    Octavio

  • High demand architecture, large reports, distributed printing, best practic

    Hi,
    I have a client with high demand for printing reports in different country regions and large reports (10000 pages some of them), today they are doing this with Oracle Reports, but the server regularly gets overloaded and some reports never complete. They use reports in PDF format.
    Can you please suggest an appropriate architecture for this scenario. Or refer some documentation on Best Practices for high demand and distributed reporting?.
    Case description
    They have a centralized Reports Server and reports are used in different remote regions of the country.
    Some reportrs have 6 pages and others may be more than 10.000 pages.
    Reports server has communication with some remote facilities at 10 mbps, and some regional offices at 10mbps, but most offices connect at 512 o 1024 bps.
    The idea would be having reports like "client reports" in the offices and request only "Data" to the server, so they can reduce network traffic, they believe most problems come from the fact that Reports Server sends heavy PDF thru the network causing lags and fails, some reports never complete, they have to resend them.
    Some othes ideas also include : Reduce the business logic placed into reports, use of regional servers, or even they have thought in changing Reports for another tool.
    Any comment or suggestion would be appreciated.
    Thanks in advance for your attention.

    i think better way is to keep business logic into database and generate ur reports using Forms(Oracle forms) based parameter forms and save results into temporary tables
    show some progress bar status on ur forms so it will be easy for users how long they have to wait for report to generate
    in reports there should not by anything more than select * from mytemptables
    Baig,
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • Account assignment category cannot be changed for limit items

    HI all,
    I am getting same error in RZ20
    Instance POXXXXX of object type PurchaseOrder cou ld not be changed
    Purchase order still contains faulty items
    Account assignment category cannot be changed for limit items
    PO is created with service item and it is in backend.
    When it is changed it is giving error. User is added contract no# on change version.
    Could you please share the solution...

    sometimes sap throws unwanted error messages. these are example notes
    415346  ME21n, ME456 when filling the account assignment type
    411883  ME21N, ME456 when filling the account assignment category
    403537  PO from PReq with different account assignment type: E456
    Using Transaction ME21N,you create a purchase order for external service and add a new item by copying a request for quotation. If the request for quotation does not have a plant, when you enter the assignment category, the system displays error message ME456 "Account assignment category cannot be changed for limit items". Also there is no account assignment change involved.
    Additional key words
    what exactly you are trying to change the carts?

  • Failed to install Add-On For 2 Different Database Servers

    Hi All,
    We are using one application server and 2 database servers (development - DEV01 and production - PRD01).  All SAP Business One application (server, client, license, add-on, etc.) installed on application server.
    Now, we are having problem where we cannot install add-on in one of the database server if we already assign it to one database, for example: if we already assigned and installed it on DEV01 then we cannot assigned and installed it on PRD01.
    The question is, can we use one add-on and pointing to 2 different database server? Is Yes, would you please advice on how to achieve it?
    Thanks and Regards,
    Lailus

    Hi,
    Please check SAP note:
    871572
    - SDK license mechanism
    Thanks & Regards,
    Nagarajan

  • Unable to find Database Item Name for Employee Category at assignment level

    Hi,
    What is the database item name for employee category at assignment level.
    I want to call employee category colomn of assignment level in fast formula.
    Thanks in advance...

    It seems that there are no seeded database items available for employee category, the only other option is to write a plsql function at the database level which will return the employee category for a given assignment_id & effective dates. Link this plsql function to a Fast formula function. You can use the newly created fast formula function in your fast formula.
    Regards,
    Senthil

  • About listeners for different databases in the same ORACLE_HOME

    Hello experts, I have a doubt
    I have installed 3 different databases in the same server which OS is Suse Enterprise 10. At this moment I have just one listener that registers all the services. The number of connections are big for two of the three databases so I do not know what might be the best practices for this environment. I have some question I would like you suggestion for me:
    DB version: 11.1.0.7
    Should I have three listener, one for each database?
    Is a good practice to have only one listener for multiple instances in the same server?
    Are there differents between have only one listener for all the instance and have one listener for instance?
    What about the performance?
    Than you in advance, I hope you can guide me.

    Best practice is not to have multiple databases on one server, depending on resources.
    Should I have three listener, one for each database?
    No. That is pretty undesirable and requires more administration.
    Is a good practice to have only one listener for multiple instances in the same server?
    Yes. Remember the listener is only a broker and there are no permanent connections between client, listener and database.
    Are there differents between have only one listener for all the instance and have one listener for instance?
    Yes. The latter is an administration nightmare.
    What about the performance?
    Who cares? The only factors are
    listener.log becomes too big --> set up proper cleanup procedures
    The number of semaphores is exceeded (Unix) or no more threads can be created (Microsoft winblows), which will give rise to ora-12500.
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for