Calling stored java-procedure in Oracle9i Lite from ODBC

I've got a problem:
I try to call a stored java-procedure through ODBC. The stored
java-procedure in Oracle 9i Lite is called successfully from
server console (MSQL). When I call my stored java-procedure from
my web-application (ASP) through ODBC connection (ODBC drivers
are from Oracle 9i Lite set V3.51) the server returns an error
(Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [POL-
8000] could not start the Java Virtual Machine),
however 'select' without java-procedure calls works
successfully. PATH and CLASSPATH variables are properly set up.
File jvm.dll is present.
Can anybody help me?

Pass String[] as an argument to mainbook():
create or replace PROCEDURE openpdffile
AS LANGUAGE JAVA
NAME 'pdfopenbook.mainbook(java.lang.String[])';Have you posted it on the Database forum?
Regards,
Nick

Similar Messages

  • Oracle 8i Stored Java Procedure and OAS 4.0.8

    Hi,
    I'd like to call a Java Stored Procedure
    from the OAS, like an ordinary PL/SQL
    package. The Java Stored Procedure should
    generate HTML-code to display in the browser.
    My first try was, to use the
    SQL wrapper function and the PL/SQL cartridge
    of the OAS, but unfortunately, I always
    get an "Request failed" with the error
    number 20001 (user defined error).
    Does anybody has managed to do this?
    Thanks,
    Thorsten.

    Please read the Jdeveloper release Notes...
    There is no version of Jdeveloper certified to deploy to OAS 4.0.8.2.

  • Cant Call Stored Java Method Oracle 8I

    I have some java code which I have compiled under the package schedsrv which I have loaded in the server with the loadjava facility
    I created the procedure link using
    create procedure as java using
    schedsrv.ClassName.Procedure(java.lang.String, etc
    I call the function and the server says no method name exists
    for schedsrv/Classname where is the problem
    I loaded the java from a .JAR and the classes were in a subdirectory called schedsrv and are in the .jar

    This is the wrapper
    create or replace procedure CreateScheduleEmp(EMP IN NUMBER, DID IN DATE, ENDD IN DATE) authid definer as language java name 'CreateScheds.processEmployee(java.lang.String,java.SQL.Date,java.SQL.Date)';
    Called by
    Execute CreateScjeduleEmp(1547,'00-JAN-00','07-JAN-00');
    this is the class.
    public class CreateScheds {
    public CreateScheds() {}
    public static void processEmployee(String emp, Date did, Date end) {
    try {
    CreateSchedules shed = new CreateSchedules();
    shed.processEmployee( emp, did, end );
    catch ( SQLException e ) {
    System.err.println(e.getMessage());
    it the class it creates and calls has an abstract base and is extended and completed in CreateSchedule which was written using
    SQLJ.
    The error I am getting says it can't find the
    processEmployee method.
    I tried it in a package which failed as well.
    This is the class it calls
    import java.lang.*;
    import java.util.*;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    import java.sql.Date;
    // Note that java.SQL.Date (and not java.UTIL.Date) is being used.
    #sql iterator DaySchedItr( String day_off, String start_time, String end_time, String int_type );
    public class CreateSchedules extends EmployeeProcessor {
    public CreateSchedules() {}
    /** Get an agreement for the employee id.
    @param emp is an employee_id code
    @return the agreement id or null if not found.
    @exception SQLException
    protected String getAgreement( String emp ) throws SQLException {
    String agree;
    #sql { SELECT AGREEMENT_ID INTO :agree FROM SCHED.EMPLAGREE WHERE EMPLOYEE_ID=:emp ORDER BY FROM_DATE DESC };
    return agree;
    /** Get a collection of empldaysched records
    @exception SQLException
    protected DaySchedItr getDaySched( String agree ) throws SQLException {
    DaySchedItr itr;
    #sql itr = { SELECT DAY_OFF, START_TIME, END_TIME, INT_TYPE FROM SCHED.DAYSCHED WHERE AGREEMENT_ID=:agree ORDER BY DAY_OFF };
    return itr;
    /** Insert a single EmplDaysched record
    @exception SQLException
    protected void insertEmplDaySched( String emp, Date did, DaySchedItr itr ) throws SQLException {
    String start_time, end_time, int_type;
    start_time = itr.start_time();
    end_time = itr.end_time();
    int_type = itr.int_type();
    int off = Integer.parseInt(itr.day_off(),10);
    off--;
    #sql { INSERT INTO SCHED.EMPLDAYSCHED(EMPLOYEE_ID, DATE_ID, START_TIME,
    END_TIME, INT_TYPE, STATUS)
    VALUES( :emp, :did+:off, :start_time, :end_time, :int_type, 1 )
    /**public abstract void processEmployee( String emp, Date did, Date end ) throws SQLException;
    @param String empl. The employee number employee_id
    @param Date The First Date in a series of dates
    @param end: The End Date in a series of dates
    @return void
    @exception SQLException
    If the employee is not assigned an agreement nothing happens.
    public void processEmployee( String emp, Date did, Date end ) throws SQLException {
    String agree;
    DaySchedItr itr;
    agree = getAgreement(emp);
    if ( agree == null )
    return;
    itr = getDaySched( agree );
    while ( itr.next() )
    insertEmplDaySched( emp, did, itr );
    itr.close();
    #sql { COMMIT };
    class TheTester3 extends Object {
    public static void main(String args[]) throws SQLException {
    String emp;
    Date did, end;
    Oracle.connect(CreateSchedules.class, "connect.properties");
    CreateSchedules shed = new CreateSchedules();
    emp = "2547";
    did = new Date(100,0,1);
    end = new Date(100,0,7);
    shed.processEmployee( emp, did, end );
    //shed.processEmployees( "999987654321", did, end );
    //shed.processAllEmployees( "test", did, end );
    This is the base class
    import java.lang.*;
    import java.util.*;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    import java.sql.Date;
    // Note that java.SQL.Date (and not java.UTIL.Date) is being used.
    #sql iterator EmplItr ( String employee_id );
    #sql iterator GrpItr ( String walloc_string );
    /** A base class to process employees
    Supports three methodologies for selecting employees
    1. Process a single employee for a date range
    2. Process all employees having a common walloc string selection
    3. Process all employees in an authority group. An authority group
    may handle multiple walloc string selections.
    public abstract class EmployeeProcessor {
    /** Single method that each derived class must implement
    public abstract void processEmployee( String emp, Date did, Date end ) throws SQLException;
    @param String empl. The employee number employee_id
    @param Date The First Date in a series of dates
    @param end: The End Date in a series of dates
    @return void
    @exception SQLException
    public abstract void processEmployee( String emp, Date did, Date end ) throws SQLException;
    /** Method to extract all employees with a given Group Authority ID
    public void processEmployees( String walloc, Date did, Date end ) throws SQLException {
    @param String Walloc. The first part of a walloc string only the length of this string is significant
    @param Date The First Date in a series of dates
    @param end: The End Date in a series of dates
    @return void
    @exception SQLException
    public void processEmployees( String walloc, Date did, Date end ) throws SQLException {
    int len = walloc.length();
    EmplItr itre;
    #sql itre = { SELECT EMPLOYEE_ID FROM SCHED.EMPLPROF WHERE SUBSTR(WALLOC_STR,1,:len)=:walloc };
    while ( itre.next() ) {
    processEmployee( itre.employee_id(), did, end );
    itre.close();
    /** Method to extract all employees with a given Group Authority code
    public void processAllEmployees( String grp, Date did, Date end ) throws SQLException {
    @param String Group. The Group Authority code
    @param Date The First Date in a series of dates
    @param end: The End Date in a series of dates
    @return void
    @exception SQLException
    public void processAllEmployees( String grp, Date did, Date end ) throws SQLException {
    GrpItr itrg;
    String walloc;
    #sql itrg = { select WALLOC_STRING from sched.USER_GROUPS where authority=:grp };
    while ( itrg.next() ) {
    walloc = itrg.walloc_string();
    walloc = walloc.trim();
    processEmployees( walloc, did, end );
    itrg.close();
    null

  • I need to call a java program and pass parameters from C#

    I'm new to C# and was given a project to rewrite some of my old VB.net programs to C# to help me learn.  These VB programs call quite a few .bat files that have calls to java programs in them. I'm doing okay converting my VB code, but I've been
    stumped for days trying to figure out how to call java from C#. 
    Does anyone here know how to do this?  I really should've had this figured out by now and my back is to the wall.  Ugh :(
    This is the line from the .bat file that I need to convert to C#. 
    call jvbat production_r115.Automotive m:\data\MK115mn.100 m:\data\MK115mn.101 %6
    There is one parameters being passed, %6
    I would be forever grateful if someone can show me how to do this!

    Hi Joni,
    Do you mean call a bat file that it is a Java program from C#?  If so, there is an article talking about it.
    If that's not what you're trying to do, please be more specific about what you're trying to do.
    http://www.c-sharpcorner.com/UploadFile/maheswararao/CallingJavaProgramfromCS12062005233321PM/CallingJavaProgramfromCS.aspx
    Now the next issue is pass some parameters from C#.
    The above article tells using Process.Start() method to call java program. Also  in this class, you could  specify them all in the
    Arguments property:
    var p = new Process();
    p.StartInfo.Arguments = string.Format("{0} {1}", argument1, argument2);
    For more detailed information, please refer to
    C# Passing Multiple Arguments to BAT File
    Note: This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control
    these sites and has not tested any software or information found on these sites;
    Therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information
    found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Calling one java program (with main method) from another

    Hello,
    How can I start another java program from one? Lets
    say I want Second.java to start by calling it from
    First.java. How do I do it? The two programs are given
    below. Any help is appreciated.
    Thanks,
    Amanda
    First.java
    import java.io.*;
    import java.lang.reflect.*;
    public class  First
         public static void main(String[] args)
              Process theProcess=null;
              System.out.println("Hello World from First.java!");
              String second=new String("Second.java");
              //System.load(second);
              //Runtime.getRuntime().load(second);
              try
                   theProcess=Runtime.getRuntime().exec( "Second.java"
                   System.out.println("after exec");
              catch (IOException ioe)
                   System.out.println(">>IOException thrown in
    First.java while calling
    Second.java."+ioe.getMessage());
    Second.java
    public class  Second
         public static void main(String[] args)
              System.out.println("Hello World from Second.java!");
    }

    Stop posting here. The crosspost remark was to alert others that there is a duplicate topic - all answers should be centralized in one so as to not waste people's time duplicating answers when they don't see both topics and the answers therein.

  • ADF call stored Oracle procedure - make transaction dirty

    Hi all,
    I have the next question:
    my ADF application is doing massive data processing that I placed in Oracle stored procedure/package to improve performance.
    Data processing takes 1-2 sec. I'm not doing any commit/rollback in my PL/SQL code.
    I have "Save"/"Undo" button in the GUI and I want, that an end user to make corresponding action to commit/rollback data by pressing one of the buttons.
    Normally those buttons are disabled since transaction is not dirty.
    Is it possible to mark transaction dirty, so that "Save"/"Undo" buttons are available?
    I know I can make buttons always available, but I not allowed to do so.
    Are any other workarounds? Or can it be done in another proper way?
    Thanks.
    Alexander

    Hi Timo!
    well , good idea!
    and I've already tried to fight with issue when I was getting transaction dirty by clicking on transient checkbox-attribute and tried to find a way to make a dirty transaction to clean :).
    What do you think if I run something like:
    this.saveButton.setDisabled(false);
    this.undoButton.setDisabled(false);
    after a call to stored procedure and use the next code
    this.saveButton.setValueExpression("disabled",getValueExpression("#{!bindings.Commit.enabled}"));
    this.saveButton.setValueExpression("disabled",getValueExpression("#{!bindings.Rollback.enabled}"));
    in commit/Save & rollbak/Undo button handlers? Would it work?
    Alexander

  • Calling a  java application in windows enviroment from a browser

    so for example first you install my java application.
    Then you surf to www.example.com and the page on that site calls my application installed on windows. Is this possible?
    thanks

    Yes. With Webstart, you can create a link that'll run a Webstart-distributed app when clicked. "Autoclicking" this link using Javascript should be easy.

  • To call Java Procedure inside Forms6i

    How do i call a java procedure (Stored either in Oracle8i database or application server )from Oracle Forms6i trigger / procedure.If this possible please let me know.
    Your help in this regard would be appreciated

    For java procedures in the database (stored java procedures) you just call the pl/sql wrapper function that was created for the java function.
    To call java functions on the application server you can use the java importer utility available with forms6i patch2 and above.

  • Please help to call oracle procedure with out paramter from shell script

    Hi
    I want to call a process with out parameter from shell script. I am calling process in shell script in below way
    function Process_loads {
    ( echo 'set serveroutput on size 1000000 arraysize 1'
    echo "set pagesize 0 term on verify off feedback off echo off"
    echo "BEGIN"
    echo " dbms_output.put_line('Before Calling The package'); "
    echo " x ( '$1', '$2', '$2', '$4', '$5', '$error_code'); "
    echo " dbms_output.put_line('After Calling The package'); "
    echo "EXCEPTION "
    echo " WHEN OTHERS THEN "
    echo " dbms_output.put_line('BIN_LOAD_ERROR' || SQLERRM); "
    echo " ROLLBACK;"
    echo "END;"
    echo "/" ) | sqlplus -s $USER/$PASSWORD@$SID
    Here $error_code is out paramter. All varaibles passed in process are declared with export command.
    When executing .sh it gives below error
    "sh ERROR at line 3: ORA-06550: line 3, column 99: PLS-00363: expression '' cannot be used as an assignment target ORA-06550: line 3, column 3: PL/SQL: Statement ignored".
    Please help to get rid from this error or please suggest how to call a oracle procedure with out paramter from unix shell script.
    Thanks in advance

    You can try this:
    From sql*plus
    SQL> ed
      1  create or replace procedure my_proc(p_id in int, p_result out int)
      2  as
      3  begin
      4  select 10 * p_id
      5  into p_result
      6  from dual;
      7* end my_proc;
    SQL> /
    Procedure created.
    SQL> set serveroutput on
    SQL> declare
      2  v_r int;
      3  begin
      4  my_proc(10,v_r);
      5  dbms_output.put_line(v_r);
      6  end;
      7  /
    100
    PL/SQL procedure successfully completed.
    from bash:
    testproc.sh:
    #!/bin/bash
    (echo 'set serveroutput on';
    echo 'declare';
    echo 'v_r int;';
    echo 'begin';
    echo 'my_proc(10,v_r);';
    echo 'dbms_output.put_line(v_r);'
    echo 'end;';
    echo '/';) | sqlplus -s u1/u1
    Console:
    oracle@mob-ubuntu:~$ chmod u+x testproc.sh
    oracle@mob-ubuntu:~$ ./testproc.sh
    100
    PL/SQL procedure successfully completed.With kind regards
    Krystian Zieja

  • Call procedure with MS SQL from linked Oracle server

    I have a procedure on a remote server that I can call from SQL*PLUS
    set serveroutput on
    declare rez varchar2(99); msg varchar2(99); begin radar.test('AL25',rez,msg); dbms_output.put_line('Rez='||rez);
    dbms_output.put_line('Msg='||msg);
    end;
    it gives me the neccessary result.
    But I need to call the same procedure with MS SQL from a linked Oracle server, I'm trying to do it through openquery for a while, but no success yet.
    Can someone tell me what is the right syntax for that query in OPENQUERY?

    Have you tried configuring Oracle Heterogenous Services/ Transparent Gateway? This would let you link Oracle to SQL Server via a database link which should solve your problem.
    Justin
    Distributed Database Consulting, Inc.
    www.ddbcinc.com

  • AES Algorithm error when trying to encrypt using stored Java class.

    Dear All,
    We have a specific reuirement where in we cannot use DBMS_CRYPTO package to encrypt/decrypt data using AES Algorithm
    So I am trying to use a stored Java class and I am getting "AES algorithm not available".
    I am using Oracle 10gR2 standard edition.
    Below is my code
    1. Stored Java class
    2. Stored function to access the above Java class.
    3. Test anonymus PL/SQL to test above code.
    Please help me finding the problem why I am getting "AES algorithm not available" error when I call stored Java class in Oracle.?
    **** If I use "DES" algorithm, it works. Also the Java code works well if I execute it as normal Java class from Eclipse.
    I verified the java.security file in jre/lib/security and I see that there is provider entry for SunJCE.
    The jre version in Oracle is 1.4.2.
    I appreciate your help.
    Thanks,
    Priyanka
    Step1: Stored java class to encrypt and decrypt data
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "EncryptUtil" AS
    import java.security.Key;
    import javax.crypto.Cipher;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.spec.SecretKeySpec;
    public class EncryptUtil
         public static String encrypt(String inStr)
         String outStr = "Test data 123";
    try
    KeyGenerator kgen = KeyGenerator.getInstance("AES");
    kgen.init(128);
    SecretKey skey = kgen.generateKey();
    byte[] raw = skey.getEncoded();
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
    byte[] encrypted =
    cipher.doFinal(inStr.getBytes());
    outStr =new String(encrypted);
    catch (Exception e)
         outStr = outStr + "exception thrown::" + e.getMessage();
    e.printStackTrace();
    return outStr;
    Step2: Stored function to access above stored java class.
    CREATE OR REPLACE FUNCTION SF_ENCRYPTUTIL(
    pKey1 VARCHAR2
    ) RETURN VARCHAR2 AS
    LANGUAGE JAVA NAME 'EncryptUtil.encrypt(java.lang.String ) return java.lang.String';
    Step3: Test encryption and descryption
    DECLARE
    outstr VARCHAR2(2000);
    BEGIN
    DBMS_OUTPUT.PUT_LINE('outstr-->' || SF_ENCRYPTUTIL('12345'));
    END;
    Below code example using DBMS_CRYPTO. This works, but we do not want to use this.
    declare
    l_in_val varchar2(2000) := 'Test data 123';
    l_mod number := dbms_crypto.ENCRYPT_AES128
    + dbms_crypto.CHAIN_CBC
    + dbms_crypto.PAD_PKCS5;
    l_enc raw (2000);
    l_enc_key raw (2000);
    l_dec raw (2000);
    begin
    l_enc := dbms_crypto.encrypt
    UTL_I18N.STRING_TO_RAW (l_in_val, 'AL32UTF8'),
    l_mod,
    HEXTORAW('156ae12300ccfbeb48e43aa016febb36'),
    HEXTORAW('001122230405060708090a0b0c0d0e0f')
    dbms_output.put_line ('Encrypted='||l_enc);
    end;
    Edited by: user5092433 on Sep 10, 2009 12:26 AM

    I guess I'd be a bit curious about why you can't use a DBMS_CRYPTO solution that provides identical output. It seems odd to want to have a procedure running inside Oracle and then dictate that it has to be Java and not PL/SQL...
    I verified the java.security file in jre/lib/security and I see that there is provider entry for SunJCE.
    The jre version in Oracle is 1.4.2.Which java.security file are you talking about? The JVM that is inside the Oracle database does not and can not use configuration files that are outside the database. I suspect when you talk about files and paths that you're looking at a JVM outside the database, which is not the JVM that your Java stored procedure would be using.
    Looking at the error, my assumption is that some JAR file needs to be loaded into the internal JVM in order for the AES algorithm to be available. But I'm unfortunately not familiar enough with these classes to say what that would be.
    Justin

  • Calling a package procedure with Date parameter only

    Hi All,
    Please help me to call a package procedure with Date parameter from sql prompt.
    Arif

    Check the below procedure.
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace procedure procdate (p_date_in date)
      2  is
      3  p_date_out date;
      4  begin
      5  p_date_out := add_months(p_date_in,6);
      6  dbms_output.put_line(p_date_out);
      7* end;
    SQL> /
    Procedure created.
    SQL> exec procdate('01-JAN-2010');
    01-JUL-10
    PL/SQL procedure successfully completed.
    SQL> exec procdate(to_date('01/01/2010','DD-MM-YYYY'));
    01-JUL-10
    PL/SQL procedure successfully completed.
    SQL> exec procdate('31-DEC-2010');
    30-JUN-11
    PL/SQL procedure successfully completed.

  • Oracle9i Lite Downloads

    Customers are reporting a broken link when trying to download Oracle9i Lite from the location:
    http://download.oracle.com/otn/nt/oraclelite/olite502_win.zip
    Could you check this link for validity from outside the Oracle subnet?
    TNX,
    Phil

    We have tested this download to completion and it checks out fine. Is the customer able to access any OTN downloads?
    Regards,
    OTN

  • Calling stored procedures in Sybase from java

    Hi,
    I am using the following stored procedure in Sybase
    use xyzdb
    go
    -- drop procedure if it already exist
    if object_id('up_name_select') is not null
    begin
    drop procedure up_name_select
    end
    go
    create procedure up_name_select
    @zid          numeric(7,0),
    @firstname     char(40),
    @lastname     char(40)
    as
    select zid,
    firstname,
    lastname
    from name
    where zid = @zid or
    (lastname like @lastname or firstname like @firstname)
    go
    -- update documentation records in object_docs
    delete object_docs
    from object_docs
    where object_name = "up_name_select"
    go
    insert into object_docs values("up_name_select","Selects records from the name table based upon the values of the input parameters.")
    go
    -- update documentation records in column_docs
    delete column_docs
    from column_docs
    where object_name = "up_name_select"
    go
    insert into column_docs values("up_name_select","@zid","System generated ID for an individual contact.")
    insert into column_docs values("up_name_select","@firstname","First name of the contact. SQL wild card characters are accepted.")
    insert into column_docs values("up_name_select","@lastname","Last name of the contact. SQL wild card characters are accepted.")
    go
    -- print success message and grant permissions
    if object_id('up_name_select') is not null
    begin
    print "Procedure up_name_select created."
    grant execute on up_name_select to developer_role
    end
    go
    This stored procedure selects the values from the table "name" for a given where condition (if I am not wrong).
    Can any one give me sample java code to select the records from the table "name" for a given zid.
    Thankyou in advance.
    Regards
    sgatl2

    calling stored procedures from java
    here is the sample code
    CallableStatement cs = con.prepareCall("{call selectlogin (?)}");
    cs.setString (1, "value");         
    ResultSet rs = cs.executeQuery ();
                while (rs.next ())
                //your code for display
                } more on gooooooogle
    http://www.google.com/search?q=calling+stored+procedures+from+java+with+sample+example&client=netscape-pp&rls=com.netscape:en-US

  • Read item from Java class and call to stored function/procedure of database

    Hi,
    I am looking solution that I was trying to find becasue of I am not expert and novice of ADF so I am getting problem to do. I am trying migrating from oracle forms to JDeveloper[ADF].
    I want to call database stored function from JSF pages by java bean class of a button press event (manually created) and after button event I have called java class which I created manually. But I can not read that values what I given into jsp page.
    question1: How can I read jsp pages items value to java class ?
    question2: How can I call to database stored function/procedure with that parameter?
    question3: How can I use return value of that stored function/procedure ?
    Please reply me .
    Thanks,
    zakir
    ===
    Edited by: Zakir Hossain on Mar 29, 2009 10:22 AM

    ---

Maybe you are looking for

  • Guest Login feature in SRM 7.0

    Hi,   How do we use Guest Login feature in SRM 7.0? Requirements are given below. 1. Purchaser publishes Public RFx. 2. In Conpany's web portal, link is given as "Open Tender-Click here" to enable one time bidder to participate in the Open tender. 3.

  • How can I make hyperlinks work from a Flash/SWF presentation?

    How do you make hyperlinks/buttons work in Flash/SWF Captivate 5.5 presentations? This did not seem to be an issue with Version 4. I cannot publish to video (i.e. mp4) or as an executable file for posting on our internal system. If it cannot be done

  • Aspect ratio value should be a dynamic collection criteria

    Currently, only generic criteria like 'Portrait' or 'Landscape' can be used. It will be huge to also say '4:3', '4:5', ... With the multiplication of display formats and devices, having a publish service dedicated to a given device becomes the norm.

  • Snapz Pro X and Final Cut Pro

    I'm screen capturing QuickTime movies of usage of a website via a web browser to include in a video production. I'm using Ambrosia's Snapz Pro X to do the video capture. I've sized the browser to 720x480 for the capture. I'm exporting the capture usi

  • Output Type determination in Delivery

    I have maintained the Output conditions for the Shipping point in VV21.  But during delivery, the out put type is not getting determined.  I have done the same for other plants and it works well. Can anyone suggest what I should be looking at? Regard