SD Process Required to Configure

Hello Experts,
I have small requirement which i need to show the Demo to my Client.Below is the client requirement but i am quite confuse how to start and which plant which sales org shud i create.If i create 3rd party but the below requirement requires delivery.
Could you all plz suggest what process should i follow to suit the below requirement.
The process starts with buying of designs from your extended designer team. The models are first converted into Prototype which are then placed in your show room. Prospective buyers are invited to view the prototype. Buyers can place 3 types of order
1.    Firm Order u2013 Order which are meant for their Show room in turn
2.    End Customer Order which are placed by end customer at the retail stores.
3.    Promotion Model (Festive Season) order which are order placed by buyers for promotional period.
You have 2 manufacturing units in Indonesia and Thailand
Malaysia office is corporate office which has sales team to book order and Procurement division to follow though Purchase orders raised by Procurement team sitting in Manufacturing locations.
Model could have add-ons like pillows and Stools which are for made for the particular sofa.
The sales order should allow to have Product configurator which allow selection based on characteristics of material and also on location of customer e.g. for Singapore Customers the selection of foam should be type A and Type B but for India customers it should be Type C and Type D.
The pricing of customer should be Customer specific and not generic price list.
The Malaysia office would book the order and internally place a PO on Manufacturing plant which details the address of the end customer in case the customer is International. The goods would be delivered from Plant to the end customer and Malaysia office would be responsible for generation of Invoice and other shipping documents without actual receipt of the material.
Kindly advice.
Thanks
Shri..

Also to add, you have three things here:
1. Mayasyia Corporate Office
2. Thailand PLant
3. Indonesia PLant.
Now If Malasyia is the Corporate Office (which will generate Invoice) then It will have a unique Company in Malasyia & the Plants in Thailand & Indonesia will have their own Company Codes.
If the above is the case, then you have to configure Inter Company Sales scenario in SAP SD.
If the above is not the case & Malasyia is just a Sales Office & Invoice will be create by the Company codes of Respective Plants, then it is a normal Sales scenario in SAP.
It means Malasyia Sales Office will just create a Sales Order for Thailand (or Indonesia) Plant & subsequently Thailand plant will create Delivery & Invoice. Thus no third party or Intercomapany scenario is required here.
Hope this clarifies.
Thanks,
JIgnesh Mehta

Similar Messages

  • Free goods process requirement

    Hi experts,
    My client has a new sales process coming up for which he has the following requirement:
    He wants to give free of charge item(Sales promotion kind of) for a certain qty of material ordered.
    For Eg: For 10 pieces of Material A he wants to give 1 piece of Material B free of cost.
    Is this possible in std SAP?
    Also, consider that we have 3 materials A1, A2 & A3 which are material of the same nature but different colour, and hence they have different material codes.
    Like the above scenario, is it possible that a sales order of
    Material A1 - 3 pieces
    Material A2-  5 pieces
    Material A3-  2 pieces
    will give me a free goods item for 1 piece since the qty sums up to 10.
    Can the above requirement be configured in SAP??
    Please help with your valuable inputs and suggestions in std SAP.
    Regards,
    Amit
    Edited by: Amit Iyer on Feb 19, 2010 11:02 PM
    Edited by: Amit Iyer on Feb 19, 2010 11:05 PM

    Hi,
    You can do that.....I have not tried but I think it will work
    For this you have to create one material group for all such material having similar features and add this material group in all these material master so that all such material will have one single material group
    Now,
    Go to path SPRO - Sales n Distr. - Basic Functions - Free Goods
    1. Add material group field from maintain field catalogue in IMG screen
    2. create new Condition table and add this material group field plus any other field that you want like Sales area or customer as key combination
    3. Add this condition table in Access seq. NA00 or creeate new access seq. for the combination eg. Material group / Customer
    4. Assign this access seq. to condition type NA00 in Maintain condition types
    5. Put this condition type NA00 in pricing procedure for free goods
    6. Finallay activate this procedure for the combination of Sales Area  + Cust. pric. proc + Doc . pric proc
    Create condition records for free goods in VBN1
    In cond. record give min qty as 10 so that all the materials that have similar material group will be accumulated and give free goods qty as you want
    Hope you get some inputs
    regards,
    Sagar

  • An error occurred during the processing of a configuration file.

    hi,
    On installation and using oracle session provider, i am getting following error.
    An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
    Line 51: <providers>
    Line 52: <add name="MyOracleSessionStateStore"
    Line 53: type="Oracle.Web.SessionState.OracleSessionStateStore,
    Line 54: Oracle.Web, Version=2.112.2.0, Culture=neutral,
    Line 55: PublicKeyToken=89b483f429c47342"
    Can any one help me?
    Thanks in advance
    Siva

    my server :
    os windown server 2003
    iis 6.0

  • The maximum report processing jobs limit configured has been reached -Error

    I have Created a common page that has a CrystalReportViewerControl (name of this page is ShowReport.aspx). The report name and database name that required for the report is being passed in a querystring. The database connection info is being pulled from the web.config file. All of the reports that I am dealing with have dynamic parameters and the Crystal Prompt page is automatically being created by the crystal viewer for these. Everything in my application is working fine except that when I try to access any report for the 76th. time I get the following error "The maximum report processing jobs limit configured by your system administrator has been reached."
    I have already researched this error and am aware that the PrintJobLimit can be modifed to increase this limit or can be set to -1 if we need to allow unlimited connections. However doing this is not an option due to the degradation of server performance.
    The other option that I have tried is to make sure I close and dispose of the report document object on the Page_unload or the page_SavedStateComplete() however on doing so even the session variable that I am using to store the originally created reportdocument is loosing all of the values it requires to display the report. The session variable is still available i.e. it is still of type report document but it has no values for any of the properties like FileName, database etc , basically for all of those properties it show an error "Invalid File Path" when viewed in debug mode.
    I have already tried several approaches but with no luck. Every single time I close the originally created ReportDocument object I loose all the required values in the Session
    I am using Crystal Report XI R2 , .Net 2.0 and ASP.net
    Following is the code: (Any help will be highly appreciated) Thanks:
    Option Strict On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports System.Data.SqlClient
    Imports System.IO
    Partial Class _ShowReport
    Inherits System.Web.UI.Page
    Private FechReport As ReportDocument
    Dim strSelectedDatabase As String
    Dim strReportsFolderPath As String =
    System.Configuration.ConfigurationManager.AppSettings("ReportsFolderPath").ToString()
    Dim strReportFileName As String
    Dim strReportFullPath As String
    Dim iInsertedLogId As Integer 'This variable is used to store the inserted log id for the executed report.
    Dim strConnString As String = System.Configuration.ConfigurationManager.AppSettings("ConnString").ToString()
    Dim strServerName As String = System.Configuration.ConfigurationManager.AppSettings("CR_ServerName").ToString()
    Dim strUserName As String = System.Configuration.ConfigurationManager.AppSettings("CR_UserName").ToString()
    Dim strPassword As String = System.Configuration.ConfigurationManager.AppSettings("CR_Password").ToString()
    Protected Sub Page_OnSaveStateComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.SaveStateComplete
    If IsPostBack Then
    If iInsertedLogId > 0 Then
    UpdateReportLog_ReportServedTime(iInsertedLogId)
    If Not FechReport Is Nothing Then
    FechReport.Close()
    End If
    End If
    End If
    End Sub
    Sub Page_Unload(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Unload
    If Not FechReport Is Nothing Then
    'FechReport.Close()
    'FechReport.Dispose()
    'GC.Collect()
    End If
    End Sub
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim sRptFileName As String
    If Request.QueryString("database") "" Then
    strSelectedDatabase = Request.QueryString("database")
    Else
    Response.Write("A Valid Database has not been supplied to this page")
    Response.End()
    End If
    If Request.QueryString("ReportFileName") "" Then
    strReportFileName = Request.QueryString("ReportFileName")
    strReportFullPath = strReportsFolderPath & strReportFileName
    Else
    Response.Write("A Valid Report has not been supplied to this page")
    Response.End()
    End If
    sRptFileName = strReportFullPath
    If Not IsPostBack Then
    FechReport = New ReportDocument
    If Not FechReport Is Nothing Then
    ShowReport(sRptFileName)
    End If
    Else
    If (Session("oReportDocument") Is Nothing) Then
    FechReport = New ReportDocument
    ShowReport(sRptFileName)
    Else
    'FechReport = New ReportDocument
    'FechReport = CType(Session("oReportDocument"), ReportDocument)
    myCrystalReportViewer.ReportSource = Session("oReportDocument")
    'myCrystalReportViewer.ReportSource = FechReport
    End If
    End If
    End Sub
    Public Function ShowReport(ByVal strReportFileName As String) As Boolean
    Dim blNoErrors As Boolean = True
    Dim crDatabase As Database
    Dim crTables As Tables
    Dim crTable As Table
    Dim crTableLogOnInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo
    FechReport.FileName = strReportFileName
    myCrystalReportViewer.ReportSource = FechReport
    crConnectionInfo = New ConnectionInfo()
    With crConnectionInfo
    .ServerName = strServerName
    .DatabaseName = strSelectedDatabase
    .UserID = strUserName
    .Password = strPassword
    End With
    Try
    crDatabase = FechReport.Database
    crTables = crDatabase.Tables
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    Catch ex As Exception
    Response.Write(ex.Message & ControlChars.NewLine & ex.InnerException.ToString & ControlChars.NewLine)
    Exit Function
    End Try
    Session("oReportDocument") = FechReport
    'FechReport.Close()
    'FechReport.Dispose()
    'GC.Collect()
    Return blNoErrors
    End Function
    End Class

    I have looked into Caching the report document as well. However, as you mentioned in the post it, it will only be usefull when the DB and the report parameters remain the same which is not the case in our application. We have multiple identical databases and hundreds of reports. Our users have the option of using a combination of any database and any reports, each report having numerous parameters.
    Since one user can only access one report at a time. i do have cleanup code that removes the session variable used to store the reportdocument object in the page that is initially used to call the ShowReport.aspx page.
    I understand now that the CR.net SDK is only good for light reporting only. Unfortunately when we started development based on all of the articles that I gathered, I didn't anticipate running to issues like this. But I guess that's the nature of the business :-).  And hence there are people like you who go out of the way to answer these difficult questions.
    Regards,

  • The maximum report processing jobs limit configured by your system administ

    I have Created a common page that has a CrystalReportViewerControl (name of this page is ShowReport.aspx). The report name and database name that required for the report is being passed in a querystring. The database connection info is being pulled from the web.config file. All of the reports that I am dealing with have dynamic parameters and the Crystal Prompt page is automatically being created by the crystal viewer for these. Everything in my application is working fine except that when I try to access any report for the 76th. time I get the following error "The maximum report processing jobs limit configured by your system administrator has been reached."
    I have already researched this error and am aware that the PrintJobLimit can be modifed to increase this limit or can be set to -1 if we need to allow unlimited connections. However doing this is not an option due to the degradation of server performance.
    The other option that I have tried is to make sure I close and dispose of the report document object on the Page_unload or the page_SavedStateComplete() however on doing so even the session variable that I am using to store the originally created reportdocument is loosing all of the values it requires to display the report. The session variable is still available i.e. it is still of type report document but it has no values for any of the properties like FileName, database etc , basically for all of those properties it show an error "Invalid File Path" when viewed in debug mode.
    I have already tried several approaches but with no luck. Every single time I close the originally created ReportDocument object I loose all the required values in the Session
    I am using Crystal Report XI R2 , .Net 2.0 and ASP.net
    Following is the code: (Any help will be highly appreciated) Thanks:
    Option Strict On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports System.Data.SqlClient
    Imports System.IO
    Partial Class _ShowReport
        Inherits System.Web.UI.Page
        Private FechReport As ReportDocument
        Dim strSelectedDatabase As String
        Dim strReportsFolderPath As String =
    System.Configuration.ConfigurationManager.AppSettings("ReportsFolderPath").ToString()
        Dim strReportFileName As String
        Dim strReportFullPath As String
        Dim iInsertedLogId As Integer 'This variable is used to store the inserted log id for the executed report.
        Dim strConnString As String = System.Configuration.ConfigurationManager.AppSettings("ConnString").ToString()
        Dim strServerName As String = System.Configuration.ConfigurationManager.AppSettings("CR_ServerName").ToString()
        Dim strUserName As String = System.Configuration.ConfigurationManager.AppSettings("CR_UserName").ToString()
        Dim strPassword As String = System.Configuration.ConfigurationManager.AppSettings("CR_Password").ToString()
        Protected Sub Page_OnSaveStateComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.SaveStateComplete
            If IsPostBack Then
                If iInsertedLogId > 0 Then
                    UpdateReportLog_ReportServedTime(iInsertedLogId)
                    If Not FechReport Is Nothing Then
                        FechReport.Close()
                    End If
                End If
            End If
        End Sub
        Sub Page_Unload(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Unload
            If Not FechReport Is Nothing Then
                'FechReport.Close()
                'FechReport.Dispose()
                'GC.Collect()
            End If
        End Sub
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim sRptFileName As String
            If Request.QueryString("database") <> "" Then
                strSelectedDatabase = Request.QueryString("database")
            Else
                Response.Write("A Valid Database has not been supplied to this page")
                Response.End()
            End If
            If Request.QueryString("ReportFileName") <> "" Then
                strReportFileName = Request.QueryString("ReportFileName")
                strReportFullPath = strReportsFolderPath & strReportFileName
            Else
                Response.Write("A Valid Report has not been supplied to this page")
                Response.End()
            End If
            sRptFileName = strReportFullPath
            If Not IsPostBack Then
                FechReport = New ReportDocument
                If Not FechReport Is Nothing Then
                    ShowReport(sRptFileName)
                End If
            Else
                If (Session("oReportDocument") Is Nothing) Then
                    FechReport = New ReportDocument
                    ShowReport(sRptFileName)
                Else
                    'FechReport = New ReportDocument
                    'FechReport = CType(Session("oReportDocument"), ReportDocument)
                    myCrystalReportViewer.ReportSource = Session("oReportDocument")
                    'myCrystalReportViewer.ReportSource = FechReport
                End If
            End If
        End Sub
        Public Function ShowReport(ByVal strReportFileName As String) As Boolean
            Dim blNoErrors As Boolean = True
            Dim crDatabase As Database
            Dim crTables As Tables
            Dim crTable As Table
            Dim crTableLogOnInfo As TableLogOnInfo
            Dim crConnectionInfo As ConnectionInfo
            FechReport.FileName = strReportFileName
            myCrystalReportViewer.ReportSource = FechReport
            crConnectionInfo = New ConnectionInfo()
            With crConnectionInfo
                .ServerName = strServerName
                .DatabaseName = strSelectedDatabase
                .UserID = strUserName
                .Password = strPassword
            End With
            Try
                crDatabase = FechReport.Database
                crTables = crDatabase.Tables
                For Each crTable In crTables
                    crTableLogOnInfo = crTable.LogOnInfo
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
                    crTable.ApplyLogOnInfo(crTableLogOnInfo)
                Next
            Catch ex As Exception
                Response.Write(ex.Message & ControlChars.NewLine & ex.InnerException.ToString & ControlChars.NewLine)
                Exit Function
            End Try
            Session("oReportDocument") = FechReport
            'FechReport.Close()
            'FechReport.Dispose()
            'GC.Collect()
            Return blNoErrors
        End Function
    End Class

    please post your question in the Business Onjects SDK Application Development Forums.

  • How many work processes should be configured in ERP?

    Hey guys I'm installing ERP 6.0 on a system landscape on AIX 6.1 and Oracle 10.2.0.4.
    I wish I had an idea of what is best practice to determine how many work processes can be configured in an instance ?
    I give the example of the Quality server:
    Only a Central Intance
    Number of Users to Log On: 120
    Physical Memory: 12 GB
    Swap Space: 38 GB
    Thanks for your help
    Desiré

    Hello,
    Refer to SAP Note 9942 for maximum number of work process.
    Regarding what would be optimal setting in your system, there is no clear cut solution. You have set it first based on your guess for amount of dialog activity, batch jobs etc.
    Typically, you should have dialog process double than background processes. Simillary, background process should be double than update, update should be double than update2 and total should not cross more than what mentioned in above Note for your Operating system and SAP release.
    Then you keep checking the system any bottleneck for a week or two and accordingly adjust the work processes if required.
    regards,
    rakesh

  • My total process is mto process, all materials configurable  materials ,

    hi
    i am working steal company ,
    my total process is mto process, all materials configurable  materials , its bases on characteristic , how to configure the r/3 and apo , what is the main parts and settings , how trigger the global atp with based on characteristic , and what configurations
    how to create the production order,
    i create the 10 sale orders with one production order , how to configure this , what are the settings needs, how to system internal settings
    please help him
    regards
    sankar

    Sankar,
    It is contrary to forum rules to place email addresses in posts.
    Creating a new implementation for APO is not a trivial matter.  Most companies will hire a consulting company experienced in such matters to assist them. 
    However, if you wish to tackle this yourself, a good starting point for documentation is Best Practices. Your business requirements are unclear, but I will assume you wish to configure Global ATP, and I will further assume you wish to implement some kind of planning (either PP or SNP).  Here are the required modules:
    Connectivity
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/B02_EN_DE.htm
    Replication
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/B05_EN_DE.htm
    GATP
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/ATP_EN_DE.htm
    PP
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/S16_EN_DE.htm
    SNP
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/B06_EN_DE.htm
    For general info about GATP, refer to SAP help
    http://help.sap.com/saphelp_SCM700_ehp02/helpdata/en/04/5e7237412a5249e10000009b38f842/frameset.htm
    Best Regards & Good luck,
    DB49

  • What are the permissions required for configuring Streams in 10g

    Hi All,
    Is admin privileges required for configuring Oracle Streams in 10g. Please confirm.
    Thanks,
    Redro

    What admin privilege are you referring to? There are many admin privs in the Oracle database.
    What is absolutely required is reading the docs. Did you do so?
    They are at http://tahiti.oracle.com
    and they explain it all quite clearly.
    There are also working demos here:
    http://www.morganslibrary.org/library.html
    Find anything with the keyword "Streams"

  • In Exports sales process, how you configure the Duty Draw Back

    in my case
    we r creating Exports but
    duty unavailability of time and time taking process in export processing
    we are creating Excise invoice and cenvat is debited .
    now we r asking the govt. for the duty draw back for the value already cenvat is debited with proper documents like ARE1 etc.
    how to manage this duty back and what r the replications or changes thereafter
    thanks in advance

    Hi Sunitha,
    Pls can u explain how did u solve (In Exports sales process, how you configure the Duty Draw Back) this issue....since i don't have idea abt this...but shortly i am going to do this in my client place....
    thanks,

  • Process flow with configuration for online payment of vendors

    Dear friends,
    I need the process flow with configuration for online payment to vendors through rtgs or neft.
    Please help me in this regard. One of my client wants to implement online payment process instead of cheque payment.
    thanks and regards
    satya

    1) Payments are initiated at the corporate SAP System using APP and converted into IDOC
    Could you please tell me the steps in converting the app into idoc.
    There are standard Idoc used for the same , for APP it would be PAYEXT, You need to use this Idoc type.
    You define the EDI payment method and assign the program in FBZP (RFFOEDI1)which would created payment medium.
    i believe in the app we will create the proposal and run the payment run, after payment proposal created what are the config steps involved in createing the payment run. for example for checque payment we will maintian variant for cheque printing.
    The payment run config is done in FBZP, which would include definf check PM and assigning house bank sub gl etc.
    2) PI at Client End receives the input through IDOC for the payments
    Pl means? and how the client will recieve this idoc what is the set up has to be made?
    PI(Process Integration) middleware which will send bank files from sap to bank and vice versa.
    3) Bank PI receives the payment and converts the same RTGS/NEFT format
    4) Payment Data is received at the Bank RTGS/ NEFT server for further processing
    how the payment data will be recieved by bank what is the process?
    This is again via PI or any thoird party tool which will send bank files to sap as Idoc, The idoc message type is FINSTA.
    or this in SAP you will have to configure the following:
    *House bank with partner profile
    *Outbound parameters                      what is meant by outbound paramenters and how to create and where to maintian
    *Inbound parameters                          what is meant by inbound paramenters and how to create and where to maintian
    The outbound and Inbounmd idoc's are the one which we send(PAYEXT) and rec from bank(FINSTA).  you create partner profile in WE20 and create partner profile once you create you assign outbound and inbound message types in there.
    *EDI Compatible payment methods        how to know about the compaitable payment methods
    Please goto house bank FI12 and you will see this in there, assign the PM used.
    *APP config                                        i know the app config for cheque payment, for this scenairo any additional settings?
    It would be pretty much same, you will have to define the PM used and Payment medium and remaining configuration in FBZP.
    *Bank details in Vendor :
    You will have to maintain the bank details of the vendor in vendor master.

  • What steps are required to configure the Payroll Tax ( USA)?

    Hi All,
    Please answer
    What steps are required to configure the Payroll Tax ( USA)?.
    Thanks in Advance
    Thank you,
    GKReddy.K

    hi Dan
    this is covered in the Rapid Clone documents -- Refreshing a Target System
    Note: 230672.1 - Cloning Oracle Applications Release 11i with Rapid Clone
    Note: 406982.1 - Cloning Oracle Applications Release 12 with Rapid Clone
    you should run adautocfg.sh on the application tier as well. Otherwise the essential information regarding your application tier will not be registered within the database and you will not be able to connect to your database through the application.
    adcfgclone will not be necessary on the application tier.
    Yes, you need to run AutoConfig to populate FND_NODES with the application nodes information. You may also need to clear the FND_NODES table as described in the following note:
    Note: 260887.1 - Steps to Clean Nonexistent Nodes or IP Addresses from FND_NODES
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=260887.1
    source;- https://forums.oracle.com/thread/652681
    AppsMasti
    Sharing is Caring

  • Could not connect to the Active Directory. Active Directory Certificate Services will retry when processing requires Active Directory access

    Event properties – Event 91, Level Error, Event ID 91, Date and time 5/10/2012 11:29:48AM, Service CertificationAuthority
    General: 
    Could not connect to the Active Directory.
    Active Directory Certificate Services will retry when processing requires Active Directory access.
    We have a Windows 2008 Server Enterprise with AD . I would like to enable the service  "Certificate Services"  that
    allow me to enable radius to authenticate users wireless with the active directory.

    Hi, 
    Can you please check this forum or someone from Microsoft, as we have post here dating back from October that are not being answered.
    Everything for us is exactly the same as szucsati and Racom
    NMNM, 
    Please give us an answer on this as the link provided is absolutely useless.
    Thank you.

  • Collect business process requirements in sd implementation project?

    how to collect business process requirements in sd implementation project?

    how to collect business process requirements in sd implementation project?

  • What are all the basic steps required to configure PM?

    Hi,
    What are all the basic steps are required to configure PM Module in an company?
    Could you please tell me in step by steps. This will help to get an idea and do the configuration in better way.
    Awaiting for your replies...
    Regards,
    Althaf.

    Hi
    This is very hard to explain in thread... It will be useful for you, if u read from this link...
    This will have step by step procedure with respect to country
    [Building Blocks|http://help.sap.com/bp_bblibrary/600/BBlibrary_start.htm]
    Select your industry and the country... or just click Control + F and search for PM or Plant Maintenance
    - Pithan

  • The maximum report processing jobs limit configured by your system ...

    Hi,
    I'm a developer with WXP, VS2003 and CR2008, Framework 1.1.
    I have a message from my server (W2003): "The maximum report processing jobs limit configured by your system administrator has been reached":
    What's the matter?
    The server has installed redistributable of CR2008.
    Thanks.

    I solved it in Page Unload, doin' this:
    private void printReports_Unload(object sender, System.EventArgs e)
                    CrystalReportViewer1.Dispose();
                    CrystalReportViewer1 = null;
         if((reportDocument1 != null) && (reportDocument1.IsLoaded))
              reportDocument1.Close();
              reportDocument1.Dispose();
    Then, I stressed webapp with WAPT 4.0, and everything works perfect.
    Do you advise me to change too keyreg?
    Thanks.
    Edited by: Santiago Magaña on Nov 3, 2008 9:47 AM

Maybe you are looking for

  • Does iOS 8.1.1 have these features or are they not present?

    I have an iPad Air (wifi only) and iPhone 5s. I'm wondering if the following features exist in iOS 8.1.1 and maybe I've missed it? #1- Raise to speak for Siri. I know there is "Hey Siri" but in order to use that it requires you to be a wall-hugger. I

  • Creating an HTML page with an embedded image in JAVA

    is it possible to have a code in java that creates an HTML page, reads an image file and embeds this to the HTML page? can anyone give me a sample code? =) thank you very much!

  • A "Switcher" question

    Hi all, I've come to my wit's end with Windows and I will be receiving my Mac Pro this Friday. My question to the forum is I have two WD 320 GB HDs that I wish to install into my new machine (maybe not right away since I have to learn the new OS) and

  • I have convert JAR to DLL using VisualCafe, how to use it in VB?

    Hello all, I have successfully convert/compile my Jars file to DLL files following the steps given in the VisualCafe Expert Edition help file. Let say my Jars file contain the following class & method: class1 setName(String sData) class1 getName() cl

  • Problems downloading application

    I'm using an iBook and I usually don't have any trouble with it. The last two times I tries to download different applications, I have not been able to. I will get a .dmg file, which mounts a white icon (similar to the one I get when I connect a flas