Passing date parameters to a custom folder

Is there any simple way to pass date parmeters to a custom folder?

I think I recognize a question very similar to this recently.
And it's the same situation, in that - what do you mean by passing a date?
I understand it to mean that you want a user - at run time - to enter a date or date range that will then return only that data from a custom folder.
1. You could have all data returned (ie: no date conditions applied to the SQL) and then filter using the Disco tool (ie: plus, viewer, desktop).
2. If you want to 'pass' those date parameters into the actual folder in the EUL, then there is a method that you can use using functions you write.
3. Or you could code the actual database SQL view with some kind of hard-coded date parameters (ie: SYSDATE - 30), etc.
Russ

Similar Messages

  • Problem with passing date parameters in cursor

    Is there any problem in passing date parameters and like clause as below
    CURSOR eftcursor(start_date DATE, end_date DATE, where_clause varchar2) IS
    select * from r_records
    where created_date between start_date and end_date and description like where_clause;
    and in the open statement
    select to_date('01/06/2010 00:00:00', 'dd/mm/yyyy hh24:mi:ss') into startDate from dual;
    select to_date('01/07/2010 00:00:00', 'dd/mm/yyyy hh24:mi:ss') into endDate from dual;
    str := '%something%aaaaa%';
    open eftcursor(startDate ,endDate , str);
    Do i need to do any kind of conversion in the cursor where clause or when i am passing the parameter in open statement.

    Almora wrote:
    Do i need to do any kind of conversion in the cursor where clause or when i am passing the parameter in open statement.No, your code looks correct -- ou're passing a date to the cursor.
    You might consider whether you really need an explicit cursor though. An implicit cursor is easier to code and performs better.

  • Pass date parameters to dataprocessor in Java

    Hello I have created java class to execute data templates, but I have problem when I pass date parameters as it was from application dataprocessor fails without any error message and does not return any data (except output xml file header). How to pass date parameters correctly?
    import java.sql.*;
    import oracle.apps.xdo.dataengine.DataProcessor;
    import com.sun.java.util.collections.Hashtable;
    class oraConn
    public static void main (String args []) throws SQLException
    System.out.println("Start");
    try {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    java.util.Properties ora_property = new java.util.Properties();
    Connection conn =
    DriverManager.getConnection("jdbc:oracle:thin:user/pass@host:port:sid");
    try {
    DataProcessor dataProcessor = new DataProcessor();
    dataProcessor.setDataTemplate("/home/user/definition.xml");
    Hashtable parameters = new Hashtable();
    parameters.put("c_period_start_date","2009/01/01 00:00:00");
    parameters.put("c_period_end_date","2009/12/31 00:00:00");
    parameters.put("c_employed_before_date","");
    parameters.put("c_org_hierarchy","63");
    dataProcessor.setParameters(parameters);
    dataProcessor.setConnection(conn);
    dataProcessor.setOutput("/home/user/Out.xml");
    dataProcessor.processData();
    } catch (Exception e)
    {System.out.println ("Data procesor Fail.");}
    } catch (SQLException ex) {
    System.out.println ("\n*** SQLException caught ***\n");
    while (ex != null) {
    System.out.println ("SQLState: " + ex.getSQLState ());
    System.out.println ("Message: " + ex.getMessage ());
    System.out.println ("Vendor: " + ex.getErrorCode ());
    ex.printStackTrace();
    ex = ex.getNextException ();
    System.out.println ("");
    }}}}

    Found out solution to my problem. I needed to import date not as string but as Date type.

  • Date Parameter in Discoverer Custom Folder

    Hi All,
    We have a requirement where i need to filter sql query data in the where condition as below.
    WHERE 1=1
    AND TRANSACTION_DATE BETWEEN :PARAMETER_DATE-90 AND :PARAMETER_DATE-9
    Can anyone of you help me on achieving that in discoverer.
    Thank You
    gt0990

    Hi,
    to do that inside the custom folder you can use DB contexts, read the following :
    http://learndiscoverer.blogspot.com/2008/11/metalink-note-304192.html
    Re: Passing multiple parameters into Custom Folder...
    Tamir

  • Error while passing date parameters in procedure and commit issue

    Hi
    1) I am doing a archiveing records and pls find my code below and i have couple of issue,pls find my code and want to ensure the commit is happening every 100000 rows inserted but i am archeiving a huge table but when i checks the table frequently it shows 0 records and after it shows count the actual rows around 20 million records.How can i ensure it commiting on every 100000 records. pls find my code my db version is 10g on windows
    CREATE OR REPLACE PROCEDURE doins as
    cnt number:=0;
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    2) Error while passing date as parameter i am getting following errors while passing date parameter pls find my code and errors
    CREATE OR REPLACE PROCEDURE doins(p_date date) as
    cnt number:=0;
    begin
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    exec doins(11-Aug-2008) then gives
    SQL> exec doins(11-Aug-2008);
    BEGIN doins(11-Aug-2008); END;
    ERROR at line 1:
    ORA-06550: line 1, column 16:
    PLS-00201: identifier 'AUG' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    if i gave exec doins(11-08-2008) it gaves
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'DOINS'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    rgds
    rosh

    CREATE OR REPLACE PROCEDURE doins(p_date varchar2) as
    cnt number:=0;
    begin
    FOR x IN (select A.rowid,A.* from Call_log A
    where trunc(c_date) = to_date(p_date,'DD-MON-YYYY'))
    --hope that's c_date columne is   DATE datatype
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where rowid=x.rowid;
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    thats your correct procedure - but NOT CORRECT ISSUE.
    You should use bulk collect with limit clause and forall clause to do it faster!!! Or Merge clause.

  • Passing DATE parameters to Oracle Stored Procedures using ADO

    Does anyone know how can I pass a date parameter to an Oracle
    Stored Procedure? The IN parameter of the procedure is of type
    DATE and the ADO parameter is of type DBDate (I've tried Date
    and DBTimeStamp,too). The execution freezes at "Cmd.Execute".
    Can anyone suggest a solution?
    Thanx for any tips

    As far as I know the documentation on CR & stored procedures says that the REF CURSOR has to be a strongly bound one.
    Could you go into a little more detail? Do you mean I should put a multi-valued parameter into a REF CURSOR? Can you post some code snippets here?

  • How to Pass Multiple Parameter to Discoverer Custom Folder Created in Admin

    Hi,
    I have done as describe in doc id (metalink) note 304192.1 and it's ok.
    Now, my scope is to use the parameter declared in SETPARAMS not with the "=" condition but with "IN CLAUSE" (multipe values).
    for example (SQL Inspector):
    SELECT i106116 as E106116,i106117 as E106117,SUM(i106118) as E106118_SUM
    FROM ( SELECT DS_COMMESSA AS i106116, DS_SCENARIO AS i106117, DS_VALUE AS i106118 FROM (select ds_commessa, ds_scenario, DS_VALUE
    from dw_ods.ods_mbo_commessa
    where DS_TIPO_COSTO='COSTI MEDI'
    and ds_label='DIR'
    and cd_scenario in (1,2)
    and ds_commessa IN DW_ODS.SETPARAM.GET_PARAM1
    union all
    select 'Totale' as ds_commessa, ds_scenario, sum(DS_VALUE)
    from dw_ods.ods_mbo_commessa
    where DS_TIPO_COSTO='COSTI MEDI'
    and ds_label='DIR'
    and cd_scenario in (1)
    and ds_commessa IN DW_ODS.SETPARAM.GET_PARAM1
    group by ds_scenario
    ) CUO106102 ) o106102
    WHERE (1 IN (DW_ODS.SETPARAM.SET_PARAM1(:"Commessa")))
    GROUP BY i106116, i106117;
    where the parameter "commessa" is used with "IN" operator.
    Also tried to modifiy the SET_PARAM1 and GET_PARAM1 in order to use a "table of varchar2" ... but with no succes.
    Help please

    Rod,
    for the first "problem" I find the solution on metalink (note 304192.1) and works fine (also combining SET and GET together)... otherwise I don't know how use this "workaround"...
    for the multiple values on a single parameter (for example: Month='Jan,'Feb') I have tried to understand how DISCO pass these values to the SET function (I suppose like an array of varchar2) but don't work. After the first values (Jan) the reports stop... The problem in not how stored the values but understan how DISCO "pass/manage" these values (Jan,Feb)... Can u help me?
    my actual SETPARAMS package body is (like metalink):
    CREATE OR REPLACE PACKAGE BODY SETPARAM AS
    FUNCTION SET_PARAM1(P1 IN VARCHAR2) RETURN NUMBER IS
    BEGIN
    param1 := P1;
    return 1;
    END;
    FUNCTION GET_PARAM1 RETURN VARCHAR2 AS
    BEGIN
    return param1;
    END;
    FUNCTION SET_PARAM_MBO(p_anno IN VARCHAR2) RETURN NUMBER IS
    BEGIN
    anno := p_anno;
    return 1;
    END;
    FUNCTION GET_PARAM_MBO RETURN VARCHAR2 AS
    BEGIN
    return anno;
    END;
    END SETPARAM;
    ----------------------------------------------------------------------

  • Passing multiple parameters into Custom Folder...

    Hi,
    We have created a Package as per Metalink Note:304192 to pass parameters to the Custom folder in Disc admin. It is working for some simple sql custom folders. But not for the Custom folder which has some subqueries and inline views. Ex:
    This is my query in Admin...
    SELECT ENAME, SALARY FROM EMP_HISTORY
    WHERE EMP_NO IN (SELECT EMP_NO FROM EMP_WAGES
    WHERE WAGE_MONTH = TO_CHAR(SYSDATE, 'MMYYYY')
    AND JOIN_DATE BETWEEN APPS.GET_DATE_PARAM1
    AND APPS.GET_DATE_PARAM2;
    GET_DATE_PARAM function returns the Package variables which were set in Disc Desktop like below.
    Created worksheet in Desktop with parameters, p_begin_date and p_end_date and conditions:
    1 = SET_DATE_PARAM1(:P_BEGIN_DATE) AND
    1 = SET_DATE_PARAM2(:P_END_DATE).
    SET_DATE_PARAM Fucntions set Package variables for that seesion at runtime for the related parameters entered by the user. After creating the conditions, the Sql created by Discoverer shows like this:
    SELECT O123.ENAME, O123.SALARY
    FROM
    (SELECT ENAME, SALARY FROM EMP_HISTORY
    WHERE EMP_NO IN (SELECT EMP_NO FROM EMP_WAGES
    WHERE WAGE_MONTH = TO_CHAR(SYSDATE, MMYYYY)
    AND JOIN_DATE BETWEEN APPS.GET_DATE_PARAM1
    AND APPS.GET_DATE_PARAM2
    ) O123
    WHERE (1 = SET_DATE_PARAM1(:"P_BEGIN_DATE")) AND
    (1 = SET_DATE_PARAM2(:"P_END_DATE"))
    So now the problem is: GET_PARAM functions are being executed first rather than SET_PARAM function. So it is not returning any data. If I remove Subquery it works great. So Is there any way to force the optimizer that it executes the Outer condition first and then rest of the inside joins/subqueries/filters ???
    Thanks,
    Ram.

    Hi,
    There are many ways of doing this. Personally, I prefer to use database contexts as these are more efficient and flexible than other methods. You can access your parameters in a view using SYS_CONTEXT so it avoids a context switch between PL/SQL and SQL database engines.
    The steps to set this up are:
    1. CREATE OR REPLACE CONTEXT EUL_DISCO USING your_package;
    2. CREATE OR REPLACE your_package containing the following functions:
    FUNCTION set_context(p_name VARCHAR2,
    p_value VARCHAR2) RETURN VARCHAR2
    IS
    BEGIN
    dbms_session.set_context('EUL_DISCO', p_name, p_value);
    RETURN p_value;
    EXCEPTION
    WHEN OTHERS THEN RETURN 'FALSE';
    END set_context;
    -- show xxmod_disco context
    FUNCTION show_context(p_name VARCHAR2) RETURN VARCHAR2
    IS
    BEGIN
    RETURN SYS_CONTEXT('EUL_DISCO', p_name);
    END show_context;
    3. You can define your parameters in one worksheet by creating calculations calling the set_context function, (you will have to convert into VARCHAR as context can only be VARCHAR) e.g.
    set_context('START_DATE', TO_CHAR(:start_date_param))
    You can define as many parameters as you want.
    4. In another sheet (or even another workbook), you can access those parameters using the show_context function or if you are using a custom folder or view you can use TO_DATE(SYS_CONTEXT('START_DATE')) to obtain the value of the date parameter.
    Using this approach you can implement a set_effective_date workbook, so that all your workbooks pick up the effective date set up for your session. This enables you to implement similar effective data functionality as in HR applications.
    Hope that helps,
    Rod West

  • Discover custom folder parameter

    Greetings everyone,
    I`m working with Oracle Discoverer Release 3.1 Admin and User Edition. I would like to pass parameters to a custom folder, have followed the steps specified in Doc ID: Note:282249.1 and Doc ID: Note:304192.1, everything works fine but when i close the workbook (User Edition) and reopen again i get the following message:
    "1 = SET_PARAM(:PARAMETER)
    Do u want to substitute another condition, ignore this message, ignore all missing items, or cancel opening this workbook", when i choose any of this option the conditon 1 = SET_PARAM(:PARAMETER) dissapeare, so i have to create it again.
    By the way, i have saved all the changes before closing the workbook. What could be happeing.??
    Thanks beforehand
    Jorge

    Jorge.
    I know if I don't say it ... someone else will. So let me be the first.
    Maybe it's because you're still using v3.1.
    All kidding aside, I figure v3.1's got to something like 5 years old now? If you could patch up to atleast 4.148 - which is still extremely old, but pretty stable, you may have more luck.
    What I'm wondering is if that note applies to v3.1 or is it something it simply won't support (ie: there were many changes made to the actual EUL and what it supports between various v3 and v4 versions).
    Russ

  • Parameter Form to Pass Dates to Report

    Hi,If anyone have a sample Form that passing
    date parameters to a report so that a report can select only the Date ranges passed from the Parameter Form. I need to set up a trigger at the Form Control block. Thanks.

    For your 1st problem it seems to be a bug in Forms 6i - you can visit this site:
    http://pipetalk.revealnet.com/~plsql/
    and find there 41211.
    Helena

  • Pass additional parameters to AII

    Hi,
    Is it possible to pass additional parameters for Serial Number Request through Name Value pair in a xml? If so then please cite an example.
    The scenario requirement is 3rd party non SAP systems will be requesting Serial Numbers from AII via SAP XI. However additional parameters will also be sent in Name Value pair for certain validations by SAP XI.

    no, you can't do that.
    you could create your own class to extend your
    interactiveobjects and pass additional parameters in your custom
    mouse handlers, but it's even easier, in your situation, to use
    movieclips to dispatch your mouse events and define whatever
    properties you need to use in functionName() as movieclip
    properties and retrieve them using
    MovieClip(e.currentTarget).whateverProperty.

  • Pass additional parameters AS 3

    I am new to Flash and AS3 language. I would like to pass
    additional parameters to a function from an EventListener (or other
    events). I have tried variations of:
    button.addEventListener (MouseEvent.CLICK, stringParam,
    intParam, functionName);
    function functionName(e:MouseEvent,str:String,i:int)
    I receive coercion of value or expecting boolean...
    Can this be done or have I not supplied the correct
    order?

    no, you can't do that.
    you could create your own class to extend your
    interactiveobjects and pass additional parameters in your custom
    mouse handlers, but it's even easier, in your situation, to use
    movieclips to dispatch your mouse events and define whatever
    properties you need to use in functionName() as movieclip
    properties and retrieve them using
    MovieClip(e.currentTarget).whateverProperty.

  • How scheduler job in HPUX and Data Parameters

    Hi guys, is there a way to invoke a PAS procedure from an external scheduler?
    Anyone have an procedure example that passes date parameters for the load data procedure?
    Thank you,
    Rgrds, Vitoriano

    Hi Luis,
    On how to call PAS procedures you might want to check the following thread: Re: Run procedure in Application Server from the command line
    Regarding the date parameters, what are you trying to achive? You can anyway get very good ideas from the wfmde_setup.pro file, used for E&A. There you have some code to turn the actual system date into a PAS parameter.
    Best regards,
    Ricardo Vieira

  • Passing parameter to a query in Discoverer Admiin custome folder.

    I am developing a report in which I need to paa in the request Id as parameter to display the user the data corresponding to that request Id. However the query is very complex and If I am enetering the request Id in Discoverer Desktop se as Condition for the workbook created the report takes a lot of time to generate. Is there any mechanism through which I can pass the parameter directly to the Custome folder query. As this will reduce my computation time since all the joins will be done only for the rows with that given request Id rather than for all the rows which is happenning correctly.
    Thanks.

    Hi,
    Well there is no straight forward way to do that.
    There is a work around to get that functionality by using outer tables or context.
    Take a look at the following posts:
    Re: Parameters in SubQuery
    Re: Parameters in Discoverer Administration
    Re: Passing multiple parameters into Custom Folder...

  • How to pass parameter in where clause in custom folder?

    I have the follow query
    blue color are the parameters
    i have paste this to a custom folder
    and
    select last_update_date, creation_date
    from ra_customer_trx_all
    where trunc(last_update_date)='29-SEP-2012'
    and customer_trx_id=1109
    to another custom folder returning 1 row only and create another worksheet in the same workbook and create
    3 parameter and 2 of them pointing to the 1 row query and create calcualtion
    SET_CONTEXT('Date_From',TO_CHAR(:Date From)) and SET_CONTEXT('Date_TO',TO_CHAR(:Date To))
    and 1 condition 1= SET_PARAM3(:Period)
    but this doesnt work for me, no data return please help
    select m.party_name TENANT_NAME 
    , b.interface_line_attribute10 lease_num
    --, b.interface_line_attribute12 "PPS Number" 
    ,b.interface_line_attribute2 LOCATION_CODE
    ,flexv.description property_name
    , a2.trx_number INVOICE_NUMBER
    --, t.name "Transaction Type" 
    --, e.attribute15 "AS400 Key" 
    , b2.description "BILL_ITEM_INVOCIE_DESCRIPTION" 
    ,case when gcc.segment5 like '6%' then 'P/L'
    when gcc.segment5 like '7%' then 'P/L'
    when gcc.segment5 like '8%' then 'P/L'
    when gcc.segment5 like '9%' then 'P/L'
    else 'B/S'
    end as account_nature
    --, gcc.concatenated_segments as "Charge Account" 
    ,gcc.segment1 company_code
    ,gcc.segment2 department_code
    ,gcc.segment3 property_code
    ,gcc.segment4 business_segment
    ,gcc.segment5 account_code
    ,gcc.segment6 project_code
    ,gcc.segment7 intercom_code
    ,gcc.segment8 spare1
    ,gcc.segment9 spare2
    , b2.extended_amount BILL_ITEM_INVOICE_AMOUNT
    ,to_char(substr(ps.gl_date,4,8)) gl_period
    , b.interface_line_attribute11 bill_start_date
    , b.interface_line_attribute14 bill_end_date 
    , decode(a2.invoicing_rule_id, '-2',  
       DECODE(TO_CHAR(b.RULE_START_DATE, 'YYYYMM'), to_char(to_date(to_char(TRUNC(to_date(SETPARAM.GET_PARAM3,'yyyymm') , 'Month')-1),'DD-MON-YYYY'),'YYYYMM'), 'Current', 'In Advance'), 
       'Current') bill_nature 
    , to_char(a2.trx_date, 'DD-MON-YYYY') invoice_date
    ,pal.lease_commencement_date
    ,pal.lease_termination_date
    ,h.user_name created_by
    --, NULL as remarks 
    from ra_customer_trx_all a 
    , ra_customer_trx_lines_all b 
    , pn_leases_all d 
    , pn_tenancies_all e 
    , hz_cust_accounts l 
    , hz_parties m 
    , fnd_user h 
    , ar_payment_schedules_all ps 
    , RA_CUST_TRX_LINE_GL_DIST_ALL dist 
    , gl_code_combinations_kfv gcc 
    , AR_RECEIVABLE_APPLICATIONS_all app 
    , ra_customer_trx_all a2 
    , ra_customer_trx_lines_all b2 
    , RA_CUST_TRX_TYPES_all t 
    , fnd_flex_values_vl flexv
    ,pn_lease_details_all pal
    where  
    app.APPLICATION_TYPE = 'CM' 
    and flexv.flex_value=gcc.segment3
    and flexv.FLEX_VALUE_SET_ID=1014916
    and pal.lease_id=d.lease_id
    and app.applied_customer_trx_id = a.customer_trx_id 
    and app.customer_trx_id = a2.customer_trx_id 
    and a2.cust_trx_type_id = t.cust_trx_type_id(+) 
    and a2.org_id = t.org_id(+) 
    and b.customer_trx_line_id = b2.previous_customer_trx_line_id 
    and dist.CUSTOMER_TRX_LINE_ID = b2.CUSTOMER_TRX_LINE_ID 
    and dist.account_class = 'REV' 
    and dist.account_set_flag = DECODE(NVL(a2.invoicing_rule_id,1), -2, 'Y', 'N') 
    and gcc.CODE_COMBINATION_ID(+) = dist.CODE_COMBINATION_ID 
    and b.interface_line_attribute10 = d.lease_num 
    and d.lease_id = e.lease_id 
    and e.primary_flag = 'Y' 
    and b2.customer_trx_id = a2.customer_trx_id 
    and a2.bill_to_customer_id = l.cust_account_id 
    and l.party_id = m.party_id 
    and a2.created_by = h.user_id 
    and ps.customer_trx_id = app.customer_trx_id 
    and ps.gl_date between trunc(trunc(TO_DATE(SYS_CONTEXT('DISCO_CONTEXT','Date_From')),'MM')-1,'MM') and trunc(TO_DATE(SYS_CONTEXT('DISCO_CONTEXT','Date_To')),'MM')-1

    What exactly is wrong with the results? Can you make the report include the gl_date so that you can see exactly what is being included?
    The only way to troubleshoot this is to go back to basics. You have to be 100% certain that the parameter and calculations for the dates are working. You have granted execute permission over the function to your EUL owner - yes? What I did was create the function in a package owned by EUL_US then I had no issue with grants or permissions.
    Also, gl_date is a DATE and not a string right? I ask because if it is not a date but a string then some dates might be left out.
    Assuming you are 100% certain of the building blocks you should start by including only the gl_date and primary key from the table you are using. Once you are sure you are getting the right data you can start to add in more fields.
    I do notice you are using E-Business Suite objects. I copied the code into my system where I am not using leasing. So I commented out the references to the 3 PN tables. I got 150 rows of data when I queried using the parameter and again when I hard coded the BETWEEN for the gl_date. You do have to make sure that your EUL owner has been granted SELECT right from all the tables and views used in your code and, if you intend to share this code with someone else, you will also need to have GRANT rights.
    Try your code in a SQL tool such as TOAD and see what happens. Are you absolutely sure that every one of your transactions has an entry in the PN tables? This might be why you are not getting the results you expect. You could try, as I did, to comment those lines out and then see what happens.
    Hope this has given you enough to solve your issue
    Michael
    PS. It would be nice to know your name. You haven't used it once in your thread.

Maybe you are looking for

  • Applications tab doesn't work - apps won't sync

    I'm starting to go a bit bonkers. It's been a while since I updated iTunes, and the Applications tab still doesn't work right. Is it just me? I can't click on anything/manipulate anything in that part of iTunes. And when I download new apps through t

  • Output Timecode to DSR-45

    Hi All, I'm trying to figure out how to output timecode to my Sony DSR-45 DVCAM deck. I know FCP doesn't output TC over firewire, so I purchased the Keyspan USA-28X to connect the RS-422 deck control to a USB port. I have no problem capturing video a

  • Apple TV plays iTunes songs at random

    OK. So I'm navigating the options in AppleTV. I scroll over to "Computers" then down to "Settings". When I hit Computers, all of a sudden random songs from my iTunes music collection on my MAC! start playing over the stereo speakers, not the TV. (App

  • HOW to retrive data from SAP Tabel

    Hi Friends,    1)Can you please explain how to retrive data from SAP table(example AFRU).    2) we had requriment based on the qunatity , Product name and date we need to display KPI's .KPI is based no products manfactured per day with some condition

  • RV220W - Content filtering not working (?)

    Hello, I bought a router model RV200W fw 1.0.1.0... nice toy. It all works very well with the exception of content filtering. The rule only works if connections are made with the HTTP protocol, but if the user connects with HTTPS, then the rule is no