Newbe needs some clairification on Paramiters

I have read through most of the post in this forum (.NET Development - Crystal Reports), but I just donu2019t seem to be finding what I need, although I did learn some cool stuff, thanks.
I am using Visual Studio 2008 programming in VB. I am trying to pass a field on my form to the parameter in my CR report.
Here is the code I placed in the click event that will launch the report viewer on my main form
Private Sub btnPrintPlan_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrintPlan.Click
  Dim param1Fileds As New CrystalDecisions.Shared.ParameterFields
        Dim param1Field As New CrystalDecisions.Shared.ParameterField
        Dim param1Range As New CrystalDecisions.Shared.ParameterDiscreteValue
        Dim CRYRpt1 As New zprCryLoanAgrmt
        param1Field.ParameterFieldName = "PlanID"
        param1Range.Value = tbxPlanID_inPlanInfo.Text
        param1Field.CurrentValues.Add(param1Range)
        param1Fileds.Add(param1Field)
        param1Field.HasCurrentValue = True
        CRYRpt1.CrystalReportViewer1.ParameterFieldInfo = param1Fileds
        CRYRpt1.CrystalReportViewer1.ReportSource = CRYRpt1
        CRYRpt1.CrystalReportViewer1.Refresh()
        CRYRpt1.CrystalReportViewer1.Visible = True
        My.Forms.zprCryLoanAgrmt.Show()
     End Sub
It does not seem to work as the promt screen for the peramiter still pops up.
How do I pass this variable to the paramiter?
How do I make the prompt screen not appear?
Also, I will need to be able to change the database this application uses when depolyed. Again I read everything I could find, but most if it is in C#, and I code in VB.
I downloaded the samples offered on this site, but for some reason VS2008 does not want to open them???
I truly appreciale any and all help with these issues, and I thank you in advance.

Hello Michael,
please see basic VB.NET code from our sample site diamond below:
For further samples please see
https://boc.sdn.sap.com/dotnet/samples
Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.Shared
Public Class Form1
    Inherits System.Windows.Forms.Form
    Friend WithEvents CrystalReportViewer1 As CrystalDecisions.Windows.Forms.CrystalReportViewer
    ''CR Variables
    Dim crReportDocument As CRParams
    Dim crParameterFields As ParameterFields
    Dim crParameterField As ParameterField
    Dim crParameterDiscreteValue As ParameterDiscreteValue
#Region " Windows Form Designer generated code "
    Public Sub New()
        MyBase.New()
        'This call is required by the Windows Form Designer.
        InitializeComponent()
        'Add any initialization after the InitializeComponent() call
        ''Create an instance of the strongly-typed report object
        crReportDocument = New CRParams()
        ''Create a new instance of a discrete parameter object to set the
        ''first value for the parameter.
        crParameterDiscreteValue = New ParameterDiscreteValue()
        crParameterDiscreteValue.Value = "Canada"
        ''Define the parameter field to pass the parameter values to.
        crParameterField = New ParameterField()
        crParameterField.ParameterFieldName = "Country"
        ''Pass the first value to the discrete parameter
        crParameterField.CurrentValues.Add(crParameterDiscreteValue)
        ''Destroy the current instance of the discrete value
        crParameterDiscreteValue = Nothing
        ''Create a new instance of discrete value object to set the second
        ''value for the parameter.
        crParameterDiscreteValue = New ParameterDiscreteValue()
        crParameterDiscreteValue.Value = "USA"
        ''Pass the second value to the discrete parameter
        crParameterField.CurrentValues.Add(crParameterDiscreteValue)
        ''Create an instance of the parameter fields collection, and
        ''pass the discrete parameter with the two discrete values to the
        ''collection of parameter fields.
        crParameterFields = New ParameterFields()
        crParameterFields.Add(crParameterField)
        ''The collection of parameter fields must be set to the viewer
        CrystalReportViewer1.ParameterFieldInfo = crParameterFields
        ''Set the viewer to the report object to be previewed.  This
        ''must be done after the parameter information has been set.
        CrystalReportViewer1.ReportSource = crReportDocument
    End Sub
    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer. 
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.CrystalReportViewer1 = New CrystalDecisions.Windows.Forms.CrystalReportViewer()
        Me.SuspendLayout()
        'CrystalReportViewer1
        Me.CrystalReportViewer1.ActiveViewIndex = -1
        Me.CrystalReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill
        Me.CrystalReportViewer1.Name = "CrystalReportViewer1"
        Me.CrystalReportViewer1.ReportSource = Nothing
        Me.CrystalReportViewer1.Size = New System.Drawing.Size(292, 273)
        Me.CrystalReportViewer1.TabIndex = 0
        'Form1
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
        Me.ClientSize = New System.Drawing.Size(292, 273)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.CrystalReportViewer1})
        Me.Name = "Form1"
        Me.Text = "Form1"
        Me.ResumeLayout(False)
    End Sub
#End Region
End Class

Similar Messages

  • Newbie needs some simple help on triggers

    Hi there. I need to create a trigger and am very new to this language and would love some help.
    I have tables STUDENT, BOOKS, BORROWING.
    When a student borrows a book, a composite entry is created in the BORROWING table. In the Books table, their is an attribute 'Borrowed' with a Y or N.
    When a new record with the same Title as a book is created in borrowing, the value of 'borrowed' needs to be set to Y. So far I have the following, but forgot that I need to insert a WHERE clause so that it doesnt update every book, but only the book that causes the trigger.
    I am having trouble with this- how would i go about doing this? Any help appreacited...
    CREATE OR REPLACE TRIGGER book_returned_trigger
    AFTER DELETE ON borrowing
    FOR EACH ROW
    BEGIN
    UPDATE books
    SET
    borrowed= 'N';
    END;

    Hi guys. Am really having some trouble now. Funny thing is I had it working!
    I have the following tables:
    >
    CREATE TABLE STUDENT
         studentID VARCHAR2(8) NOT NULL,
         firstname VARCHAR2(20) NOT NULL,
         lastname VARCHAR2(20) NOT NULL,
         gender VARCHAR2(10),
         dob DATE,
         address VARCHAR2(20),
         suburb VARCHAR2(20),
         phone VARCHAR2(8),
         PRIMARY KEY(studentID)
    CREATE TABLE BOOKS
         title VARCHAR2(20) NOT NULL,
         publisher VARCHAR2(20),
         year DATE,
         borrowed CHAR(1) CHECK (borrowed IN ('Y','N')),
         PRIMARY KEY(title)
    CREATE TABLE BORROWING
         studentID VARCHAR2(8) NOT NULL,
         title VARCHAR2(20) NOT NULL,
         PRIMARY KEY(studentID,title),
         FOREIGN KEY(studentID) REFERENCES student(studentID),
         FOREIGN KEY(title) REFERENCES books(title)
    >
    My Triggers look like this:
    >
    CREATE OR REPLACE TRIGGER book_borrowed_trigger
    AFTER INSERT ON borrowing
    FOR EACH ROW
    BEGIN
    UPDATE books
    SET
    borrowed= 'Y' WHERE title = :OLD.title;
    END;
    CREATE OR REPLACE TRIGGER book_returned_trigger
    AFTER DELETE ON borrowing
    FOR EACH ROW
    BEGIN
    UPDATE books
    SET
    borrowed= 'N' WHERE title = :OLD.title;
    END;
    >
    and some sample date:
    >
    INSERT INTO student (studentID, firstname,
    lastname, gender, dob, address, suburb, phone)
    VALUES ('34025492','Sally','Field','Female',
    '26/FEB/1970','123 Latrobe Pde','Dromana','59812553');
    INSERT INTO student (studentID, firstname,
    lastname, gender, dob, address, suburb, phone)
    VALUES ('98503345','Ray','Blackburn','Female',
    '9/NOV/1954','52 Murawa Dve','Sorrento','59812433');
    INSERT INTO books (title, publisher, year, borrowed)
    VALUES ('Harry Potter','Roundhouse','1998','N');
    INSERT INTO books (title, publisher, year, borrowed)
    VALUES ('Twilight','Jones Books','2000','N');
    INSERT INTO borrowing (studentID, title)
    VALUES ('20737785','Harry Potter');
    >
    Now I cant get this trigger to change the value of the 'borrowed' column in 'BOOKS' to Y when I create a new record in the BORROWING table that references one of the Books.
    Any idea why? I cant see why! Thanks for the help so far guys
    Edited by: lockmac on Apr 1, 2009 12:40 AM

  • Updating SAP Questions - Newbie Need Some Direction

    I have some questions on updating SAP systems.
    We went live on SAP back in May and we have not really updated our systems since we did the initial installation in January.  (They wanted a stable environment for testing/config).  But I would like to start updating SAP before it gets too out of data and become difficult to update.
    We are running a ECC 6.0 system on Windows 2003 x64 servers with SQL 2005 databases.
    They way I see it, there are 3 areas I need to update:
    1.)     The OS and Database (Microsoft Service Packs and Patches)
    2.)     The SAP kernel
    3.)     SAP support packages
    What is the best way to approach this?  Are my steps even correct?
    I would just appreciate some input on how to approach updating SAP.  I know that lots of testing will be necessary after each update.
    Any tips?

    Hi Drew,
    I think you are looking for applying support packs . SAP usually release Support pack stacks every quarter, So you can go by the latest stack or one behind. SAP prefer to go by stacks now and not by individual packs.
    You can get this information from
    http://service.sap.com/sp-stacks
    Procedure will be
    1) Upgrade SAP Kernel
    2) Update SPAM/SAINT to latest level.
    3) Apply Support packs using SPAM.
    If you have dual stack , update Java components using JSPAM , Now you can upgrade your Kernel using JSPAM ( In case you have dual stack ) .
    Before doing Support packs , Make sure you read all notes related to  Know issues/problem with your release and also make sure you have a valid back up. So if something go wrong you can always restore
    Thanks
    Prince Jose

  • Spry Newbie needs some help

    It is the little things in life I was always told and all I
    am trying to do is to pretty much duplicate the form validation
    demo. However I am not even sure where to begin. I have created
    many forms and have had them submit and returned in an emial
    successfully but I am not quite sure how the Spry widgets work or
    how to apply them to an existing form or even a new one for that
    matter.
    Does the page have to be dynamic in order to use the Spry
    validation widget? Hopefully iy can be used on a static page. Are
    there any tutorials out there for creating a form in DW CS3 using
    the Spry validation widget?
    Thanks,
    Houston

    Hi,
    First of all, the Spry widgets works on static pages, so you
    don't necessary need to have a dynamic page.
    It is not to hard to make the demo from site, and I'll
    explain you the basic steps you should do to have these widgets
    working on your page. The css part, you can customize as you wish,
    the demo from site is just a customization.
    As I saw, you use Dreamweaver for creating this demo, so I'll
    give you the explanations for how to do it on DW.
    In a html page, add a form. Inside form add: a Spry Textfiled
    validation input (from the Spry tag), a Spry Select input and a
    Spry Textarea input.
    If you go in design view and select an widget, a blue border
    will appear and on the Property Inspector will appear all the
    properties you need to customize.
    To see exactly what does every property, please check the
    Dreamweaver help.
    This is the start to create you own form containing Spry
    widgets.
    Hope this help,
    Diana

  • Potential newbie need some help

    If I want to buy a later version of Flash ...to save money ....how far back could I go without regretting this decion?
    I'm a hobbyist and love to experiment,  I can say I will do animating and action scripting about 50 - 50 till I figure what the contraints and limitations are.
    Also where (besides E-Bay) can I feel say in making this purchase?
    Does anybody know what CS4 may be selling for these days?
    Also ...if you are a pro with this software ...is there much difference in the animating environment from CS4 to CS5.5?
    Do I want to make sure I get a version with Action script 3.0 because it so much better than 2.0?
    I know ...I know ...do the research ...I'm on it ...but any additional help would be appreciated.

    Papervision is free ...correct?
    yes:  http://code.google.com/p/papervision3d/
    you should also check away3d.
    Papervision is like a renderer ...correct?
    it's a 3d engine.
    Papervision is what they use to produce some of those animations that looks semi-3D ...corect?  In otherwords its not plain 2D ...but not really 3D.
    no, they look completely 3d.  flash cs4 makes semi-3d animations
    Don't care about advanced Text ....I think.
    Don't think I want to create IOS either.
    Just a real quick question ....with flash BUILDER ...even though is taylored to developers ...you can do everything with it that you do with Flash professional ...correct?
    no.  i don't think you have a stage in flash builder that you can draw on and i don't think you have timeline frames.
    Finally .... how many computers does a single licenses allow you to install on?
    i've never tried to install on more than 1 so i don't know that.
    p.s.  please mark helpful/correct answers, if there are any.

  • Newbie needs some help

    Hi -
    What I have is some artwork from a customer in a PDF format.  I am taking that artwork, converting it to a JPEG, bringing it into my CAD software (solidworks/photoworks) as a decal, and overlaying the artwork onto the finished design.  My problem is the imported artwork has a "white background" for lack of a better term, behind the colors.  This background essentially hides all the stuff directly behind the decal.
    The artwork has the outline of the part it is to be printed on, which I would also like to remove.  In illustrator, the artwork and outline of the part come into the software as a single object (I hope that is the correct terminology)
    Is there a way to remove the white background and the outline and have just the artwork left (colors) and the export to a JPEG?  I'd post the artwork but I'm not sure my customer would approve even though its a released product.
    Any help is greatly appreciated.  Thanks
    Joe

    You might be able to bring a pdf into your CAD program and AI also
    exports to dwg and dxf.
    Can you take a screen shot of the file and post it here by using the
    camera icon in the text input form when posting a response here?
    The white background may not actually be there but if there is a shape
    it can be selected the same as you would in A CAD program
    with a selection tool.
    The selection tool is a black arrow and the direct selection tool is
    the white arrow it is used to select a single path that might be part
    of a group of paths
    most people use this more often then the black arrow.
    You can also go tot he layers panel and expand the layer even if
    everything is collected on one layer and click at the right side of
    each path to select the path you look at the art on the canvas to see
    which
    path is selected it will be highlighted showing the path. when you
    have the one you want to delete you hit delete or back key on the
    keyboard. Then either save the file as a pdf or export as dwg dxf
    ortiff or png or jprg or what you think looks best when you bring it
    back into your program.
    Select part of the art with the direct select tool with the path highlighted blue
    The same file with the path deleted

  • How to use Premiere Pro for live shoots (newbie needing some answers)

    My school is about to delve into the world of live streaming.  We have a homemade Tricaster setup of sorts which allows for us to use three camcorders through as switcher which allows for some nice streaming capabilities.
    My question is, how do I use Premiere Pro, or something else, to run live titles/graphics, etc. into the production?  You know, things like lower thirds, etc.?
    Is this as simple as running another computer into a source on the switcher?  If so, how do I get the graphics etc. to appear as simple key pages?
    Sorry, I've never used Adobe during a live shoot before.
    I'd love for someone in the know to explain the workflow here.  Thank you so much!
    I'd also be interested in knowing best practices for running b-roll into the switcher.  PP again?  Same computer as the graphics or a seperate one?

    I dont't 'know anything from Adobe that could do this.
    Look at this:
    http://www.compix.tv/
    http://www.broadcast.harris.com/productsandsolutions/Graphics/
    http://www.powercg.com/Index.html

  • Newbie needs some direction with Exchange Server 2007

    I am in school and I have been given an assignment that is kinda hard for me.  I am not asking for answers but I am asking for direction.   If you guys can point me to some research that will help me It would be much appreciated. 
    Here is the scenario:
    Your organization plans to open a remote location that requires a server to host Exchange Server 2007
    with the CAS, Hub Transport, UM, and Mailbox roles. Your Senior Administrator has assigned you the
    task of choosing the hardware to support this server. Using the links below and internet research, design
    a server capable of hosting the previously mentioned roles and 1,000 mailboxes. Choose a processor,
    hard drive, and RAM.
    Here are the questions associated with the scenario:
    Questions
    1. What is the total cost of the server you designed?
    2. Would you recommend a multiple core processor? If so, why or why not?
    3. What is the minimum amount of RAM necessary?
    4. Would you recommend a RAID setup? If so, what RAID level? If not, what would you suggest for
    fault tolerance.
    Your guidance and expertise is much appreciated.  Just point me in the right direction for research....

    Hi Mikenater,
    Thank you for your question.
    1. What is the total cost of the server you designed?
    A:the total cost depend on the price of hardware and software in your country, we didn’t give an exact answer.
    2. Would you recommend a multiple core processor? If so, why or why not?
    A: I suggest we use the multiple core processor, because Exchange consume much hardware resources. including CPU,RAM and so on, when we use multiple core processor, Exchange will deal with a mount of request without no response. It is convent for us to manage
    Exchange server.
    3. What is the minimum amount of RAM necessary?
    A:  AS you said that a server to host Exchange Server 2007 with the CAS, Hub Transport, UM, and Mailbox roles. The minimum amount of RAM is 4GB. However, if there are 1000 mailbox, we suggest the RAM is higher, we could refer to
    the following link:
    https://technet.microsoft.com/en-us/library/bb738124(v=exchg.80).aspx
    4. Would you recommend a RAID setup? If so, what RAID level? If not, what would you suggest for fault tolerance. 
    A: Exchange 2007 have high availability for database, for example LCR,CCR,Scc or SCR, we could refer to the following link:
    https://technet.microsoft.com/en-us/library/bb124721(v=exchg.80).aspx
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim

  • [NEWBIE] Need some help...

    Hello everybody, maybe someone will find five minutes to help me...
    I've got this class that parses an XML file (here's the source):
    package bicocca.util;
    import java.io.FileReader;
    import org.xml.sax.XMLReader;
    import org.xml.sax.InputSource;
    import org.xml.sax.helpers.XMLReaderFactory;
    import org.xml.sax.helpers.DefaultHandler;
    import org.xml.sax.Attributes;
    public class Configurator extends DefaultHandler {
    public String dbAddress = new String();
    public String serverAddress = new String();
    public String appHome = new String();
    private boolean intoDB = false;
    private boolean intoServer = false;
    private boolean intoHome = false;
    private boolean intoIp = false;
    private boolean intoPath = false;
    public Configurator() {
         super();
    public void setUp() throws Exception {
         XMLReader xr = XMLReaderFactory.createXMLReader();
         Configurator handler = new Configurator();
         xr.setContentHandler(handler);
         xr.setErrorHandler(handler);
    FileReader r = new FileReader("c:\\tomcat4.0.\\webapps\\bicocca\\WEB-INF\\bicocca-conf.xml");
    xr.parse(new InputSource(r));
    public void startElement (String uri, String name, String qName, Attributes atts) {
         System.out.println("startElement(): " + name);
         if(name == "dbAddress"){
         intoDB = true;
         if(name == "serverAddress"){
         intoServer=true;
         if(name == "appHome"){
         intoHome=true;
         if(name == "ip"){
         intoIp=true;
         if(name == "path"){
         intoPath=true;
    public void endElement (String uri, String name, String qName) {
         System.out.println("endElement()" + name);
         if(name == "dbAddress"){
         intoDB = false;
         if(name == "serverAddress"){
         intoServer=false;
         if(name == "appHome"){
         intoHome=false;
         if(name == "ip"){
         intoIp=false;
         if(name == "path"){
         intoPath=false;
    public void characters (char ch[], int start, int length) {
    System.out.println("characters()");
    if ((intoDB) && (intoIp)){
    for (int i=start; i<start+length; i++){
    dbAddress += ch;
         System.out.print("DB: " + dbAddress + "\n");
    if ((intoServer)&&(intoIp)){
    for (int i=start; i<start+length; i++){
    serverAddress += ch[i];
         System.out.print("Server: " + serverAddress + "\n");
    if ((intoHome)&&(intoPath)){
    for (int i=start; i<start+length; i++){
    appHome += ch[i];
         System.out.print("Home: " + appHome + "\n");
    public String getDBAddress(){
    try {
    setUp();
    catch(Exception e){
         e.getMessage();
    System.out.print("===========> DB: " + dbAddress + "\n");
    return dbAddress;
    public String getServerAddress(){
    try {
    setUp();
    catch(Exception e){
         e.getMessage();
    return serverAddress;
    public String getAppHome(){
    try {
    setUp();
    catch(Exception e){
         e.getMessage();
    return appHome;
    As you see, there are three methods that should return one of this three Strings:
    public String dbAddress = new String();
    public String serverAddress = new String();
    public String appHome = new String();
    Instead, when I run the class (istanziated in a jsp), on the Tomcat console I obtain this result:
    startElement(): configuration
    characters()
    characters()
    startElement(): dbAddress
    characters()
    startElement(): ip
    characters()
    DB: 127.0.0.1
    endElement()ip
    characters()
    startElement(): port
    characters()
    endElement()port
    characters()
    endElement()dbAddress
    characters()
    characters()
    startElement(): serverAddress
    characters()
    startElement(): ip
    characters()
    Server: 127.0.0.1
    endElement()ip
    characters()
    startElement(): port
    characters()
    endElement()port
    characters()
    characters()
    endElement()serverAddress
    characters()
    characters()
    startElement(): appHome
    characters()
    startElement(): path
    characters()
    Home: c:\tomcat4.0.3\webapps\bicocca
    endElement()path
    characters()
    endElement()appHome
    characters()
    endElement()configuration
    ===========> DB:
    What I understood is that after parsing the XML file, the class clears all variables... What I'm doing wrong?
    N.B. Previewing this message I see that there's something wrong displayng the index of "ch" in the for cicles in the characters() method, I wrote them right, is just a display bug!

    first Dr. Clap is correct.
    What I understood is that after parsing the XML file
    the class clears all variables...not at all! you simply don't realize than we you do new Configurator() you instanciate a new class.
    the variables are set in this new class, not in the current one!!!
    hence, the address is there: handler.dbAddress !!!

  • Flash newbie needs help

    i'm quite a newbie when it comes to flash and need some help
    http://www.sas.se/sv/?vst=true
    you look to the right you'll see an airplane and i'll say "Billiga avgångar" next too it
    under the text you can see text in yellow being scrambled then reappear
    i was wondering how you make the text scramble then display the messeage like that?

    this is a better way to do it in one textfield.  it's easily amended to display one letter per textfield and add textfields as needed.
    (to speed up the display shorten charS even down to a one character string.)
    var charS:String = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ 01232456789,./<>?;':\"[]{}\|!@#$%^&*()-_=+";
    var charA:Array = charS.split("");
    var displayTO:Number
    // user defined params:
    // character change in ms
    var speed:Number = 1;
    encodeF(yourstring,yourtextfield);
    function encodeF(s:String,tf:TextField){
        tf.text = charA[0];
        displayTO = setTimeout(displayF,speed,s,tf,0,0);
    function displayF(s:String,tf:TextField,charNum:Number,index:Number){
        tf.text = tf.text.substr(0,-1)+charA[index];
        if(s.charAt(charNum)==charA[index]){
            tf.text += charA[index];
            charNum++;
            index=0;
            if(charNum<s.length){
                displayTO = setTimeout(displayF,speed,s,tf,charNum,index);
            } else {
                tf.text = tf.text.substr(0,-1);
        } else {
            index++;
            if(index<charA.length){
                displayTO = setTimeout(displayF,speed,s,tf,charNum,index);
            } else {
                charA.push(s.charAt(charNum));
                displayTO = setTimeout(displayF,speed,s,tf,charNum,index);

  • Any Updates Made to the T540 ready to ship? Newbie Needs Help.

    Total newbie with Lenovo.  Lenovo is offering the T540p ready to ship for  about $650.  Is this the same track pad that got all the negative reviews or have any improvements been made?  I'm new to the forum and not a power user.  I maintain a website for a herding dog rescue and edit and move pictures and or video around a couple times a week.  If I use a mouse will this computer work for this?  

    Hi Venkat,
    I suggest to remove Gantt Chart view and Entry table from Eglobal. These are default views from client and it is highly recommended to not use them in Enterprise Global.
    Whatever a user ist doing on a view or table which is included in Enterprise Global will be reset on next open - therefore you receive this message.
    If you need some server wide defined views and tables, create them. But remove Gantt Chart and Entry.
    Does that help?
    Regards
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • HD Workflow - Need Some Clarification Please

    Apologies for asking another question so soon, but I need some help with my import/export workflow please.
    So I've just upgraded to AE CS4 from 6.5 Pro.
    I'm doing a show where I'm using XDCAM EX footage with cgi shots and elements, all comped in AE.  The shots will be handed to the editor, who uses FCP, as Quicktime files, I think.  This is where I need some help.
    I have read and re-read (several times)  the 'Color Management Workflow in Adobe After Effects CS4' pdf, specifically the 'High Definition Video Workflow' section. I am using a calibrated monitor (regularly calibrated and checked with a Spyder 3 Elite).
    I get setting up the AE project to be colour managed to the HDTV (Rec. 709) working space, and I likewise understand using Interpret Footage to colour manage assets that are imported.
    Where I'm falling down is outputting the finished shots to QT movies, specifically on two points: the apparent gamma of the output (as I see it in the QT Player), and the data-rate.
    I understand setting the output to have the same profile in the Output Module of the Render Queue.  But from there I'm stumped, because the QT outputs don't visually match the AE comp, with almost any codec I try.  I understand there are QT codec issues when outputting from AE - I was reading about those the other day when I was hitting the same problem in AE 6.5.  When I open the QT movie on the desktop (Windows XP Pro) it's invariably alot lighter, lower contrast.  Along with the other issue that the data-rate of the QT output from AE is anything up to 8 times greater than I need.
    I tried rendering Animation and PNG movies from AE, then feeding those through the Media Encoder, outputting via H.264 to get an MP4 with the data-rate around 50mbits/sec.  That works on that, but again the movie is pretty washed out and low contrast.
    I guess this is pretty fundamental stuff, but I've hit a brick wall over what to do.  I'd appreciate any advice on the workflow to output the finished comps to hand to the editor, as a movie file, QT or whatever.  And obviously knowing that what I see in my AE comp is what he will see on his FCP suite.
    Julian.

    Thanks for the additional comments and ideas.
    In terms of profile, as I mentioned, the intermediates will be going off to the editor (off-site) for editing on his FCP suite.  I'll stick to working in the prescribed HDTV (Rec. 709) space, and I've given him all the detail I can of how I'm working, but crucially I haven't stood at his edit-suite to see how the stuff looks.
    But, he's no newbie, so I'm hoping it'll be OK.
    Blasted shame about the H.264 BluRay not being compatible with QT - I thought I had this whole issue beat until that came along.  It's not a matter of disk space here, but the editor is mithering that the intermediates we are testing, in either PNG, or Animation, and a couple of others, are choking his playback.
    I'm not sure what to say about that, other than to go down this road of trying to squish these intermediates as low as possible without wrecking the look, hence finding that the DNxHD is providing the best solution.  If it had been a SD project, I might well have tried the native H.264, even over our normal PNG workflow.
    So what will play the native H.264 BluRay compressed output?
    Julian.

  • Need some help settin' up an Airport base station for dialup

    Afternoon, all. As the handle says, I'm a newbie and I need some LGI about setting up an Airport base station to dial out. I just got a Macbook 2.0 yesterday, and I'm still trying to deal with the setup. This model has the 10.5 OS.
    The Airport I'm using is not the square unit now available. This particular unit is a circular base with a conical shape. I got this model because it has the connection for a standard telephone connector. It's also 'sposed to have a built-in modem.
    I have gotten the computer to connect to the base station wirelessly, but I am having trouble setting things up to get the modem to dial out to my ISP (netscape.)
    Any assistance or walk-throughs would be greatly appreciated. THANKS!

    Hello newbietoapple. Welcome to the Apple Discussions!
    Perform a "hard" reset of the AirPort Extreme Base Station (AEBS)
    o (ref: http://docs.info.apple.com/article.html?artnum=107451)
    Setup the AEBS
    Either connect to the AEBS's wireless network or connect your computer directly (using an Ethernet cable) to the LAN port of the AEBS, and then, using the AirPort Admin Utility, check these settings:
    AirPort tab
    o Base Station Name: <whatever you wish or use the default>
    o AirPort Network Name: <whatever you wish or use the default>
    o Create a closed network (unchecked)
    o Wireless Security: Not enabled
    o Channel: Automatic
    o Mode: 802.11b/g Compatible
    Internet tab
    o Connect Using: Modem (V.90)
    Network tab
    o Distribute IP addresses (checked)
    o Share a single IP address (using DHCP & NAT) (enabled)

  • Some problem about SAP R/3 ~ I need some detail solutions and suggests

    I need some detail solutions and suggests about below these problems:
    Problem 1: SAP Management Console cannot start successfully
    •     Problem 1.1: Click on SAP Management Console, but yellow light continues for a long period of time.
    •     Problem 1.2: In DOS, startsap command cannot start SAP R/3.
    •     Problem 1.3: Oracle 9i database automatically shutdown by itself.
    •     Problem 1.4: There is very low disk storage left (say less than 50MB) in the hard disk where Oracle 9i database is installed in the server.
    Problem 2: Problems in User Maintenance and Security of the SAP R/3 System
    •     Problem 2.1: Super user account password was lost (e.g. SAP* password was lost)
    •     Problem 2.2: Super users DDIC and SAP* were dropped in table usr02 in Oracle.
    •     Problem 2.3: Some users have been locked or deleted by an ABAP programmer who has been granted with almost superuser profiles.  For example, an ABAP programmer has been granted a profile of SAP_ALL and SAP_NEW but the system administrator would like to restrict all programmers form using SU01, SU02, SM01, so that no programmers can maintain other user's accounts.
    Problem 3: Problems in the configuration of client copy
    •     Problem 3.1: A copied client from the Client 000 cannot be customized.
    •     Problem 3.2: No sample data in IDES after a successful client copy.
    •     Problem 3.3: Logging on without being authorized.  A new client is created and client copied and transported successfully.  However, anyone can log into the system using user SAP* with the default password PASS.
    Problem 4:  Problems in the installation of SAP R/3 Server
    •     Problem 4.1: Computer Name of the SAP R/3 server has been changed after the full installation of Oracle 9i and SAP R/3.
    •     Problem 4.2: A network card of a server was faulty and it was replaced by a new network card but the SAP R/3 license was expired.
    •     Problem 4.3: You would like to reinstall SAP R/3 on a server which has previously installed with SAP R/3 but the same error message appears during the re-installation.
    Problem 5: Problems in the backup and recovery of Oracle 9i Database
    •     Problem 5.1: A redo log file was lost and the database could not be started.
    •     Problem 5.2: A group of data files were accidentally deleted and the database could not be started.
    •     Problem 5.3: Both the online redo log files and archived redo log files have been damaged.
    Problem 6: General problems regarding the general operations and the connection to the SAP R/3 System
    •     Problem 6.1: After a reboot of the Windows 2003 Server, SAP service is not automatically started.
    •     Problem 6.2: Some users complained that the performance of SAP R/3 is really very slow.
    •     Problem 6.3: A user complained that his/her password was correct but he/she could not lock on the client because it was locked.

    Problem 2
    2.1  If user account of the sap* is lost u can retrive by loging into os level as sidadm type this command
    DELETE  SAP<sid>.USR02 where BNAME='SAP*' AND MANDT=100
    This 100 is the client in which u want to delete the sap*
    after that restart the server and login as sap* with the default password as pass
    there is also another way of doing this if needed u can catch me at [email protected]

  • Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute then turn on wifi on iMac before it can reconnect. Need some help please.

    Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute, then turn on wifi on iMac before it can reconnect. Need some help please.
    Already gone through troubleshooting guide a zillion times. Thanks.

    This worked for me... A little time consuming but once you get rolling it goes GREAT... Thanks....
    I got my artwork and saved it to my Desktop
    Opened up Microsoft Paint and clicked on "File" and "Open" and found it to get it on the screen to resize it
    Clicked "resize" and a box for changing it opened up
    Checked the box "Pixels" and "Unchecked maintain aspect ratio"
    Set Horizontal for 640 and Vertical for 480
    Clicked on "OK" and went back to "File" and did a "Save As" and chose JPEG Picture
    It came up "File Already Existed" and clicked "OK" (really did not care about the original artwork I found because wrong size)
    Went to iTunes and on the movie right clicked on "Get Info", clicked on "Details", then "Artwork"
    Go to the little box on the top left that shows your old artwork and click on it to get the little blue border to appear around it and hit "Delete" to make it gone
    Click on "Add Artwork" and find it where you put the one from above on your Desktop and hit "Open" and OK and your new artwork is now there and all good.
    Sounds like a lot of steps to follow but after around 5 or so you will fly through it. This worked perfect on my iPhone 6 Plus and I have artwork on my Home Videos now.

Maybe you are looking for

  • Oracle Report in a J2EE Architecture

    Dear All, I have for this architecture: - Database Layer Oracle 8i in future 9i - Application Server Tomcat is possible to integrate this architecture with a Oracle Report Server? If yes how to transform the architecture? Thank's bye

  • Why is the soundtrack broken in slideshows?

    Hello everyone, I'm burning a PAL DVD with iDVD which contains a movie and two slideshows, which I've done many times before without a problem. Now though, the sound is broken, generally when the picture changes in the slideshows. It just drops out.

  • Serial numbers and equipment

    Hi, We have a setup where materials are managed with serial numbers (through serial number profile). An equipment record is created automatically together with each serial number. The serial numbers are assigned manually at the time of goods receipt.

  • Calling a jpeg compressio​n dll

    I use webcam images in a LabVIEW based equivalent of NetMeeting to allow communication between people in our laboratory. I currently compress my images by calling an LZW dll, but would prefer to use JPEG as lossy compression creates smaller data pack

  • IPTC - Tags & Keywords

    I am planning to switch from PhaseOne/MediaPro (MP) to Adobe PS13/LR. Before doing so I did some test, i.e. using PS13 I added places, people, events and ratings. I then looked at the image in PhotoMe and found the following: * People, Places and eve