Calling a meeting from nokia c6-00

Salam and good day
I've just setup my mail for exchange and it works fine. the question is how am I going to call or invite someone for a meeting using the built in calendar. i've tried to send the appointment to my friend's blackberry but he can't read the invitation. thanks in advance

did you do a full install or over the air? If over the air use NSU and reinstall it. 
Anna/Belle handsets : E6-00
s60 handsets : E71 grey steel, 6700slide Purple
s40 Handsets : Nokia C3-01, 6086, N6300.
JesusPad2 16gb, booklet3g (32gb ssd upgrade) eeepc701SD (64gb ssd) bauer mini laptop (32gb ssd)
Kudos is Nice - please. Pass it on, you'll make a geek happy
@hooker1uk (as a blogger my words do not represent the brands i work with unless stated otherwise.)

Similar Messages

  • I have my landline diverting to my iPhone. However, it does not distinguish whether the call has come from my diverted landline number. My old Nokia many years ago used to show an arrow symbol when it was a call thats source was diverted. I really need to

    I have my landline diverting to my iPhone. However, it does not distinguish whether the call has come from my diverted landline number. My old Nokia many years ago used to show an arrow symbol when it was a call thats source was diverted. I really need to know when a call has come from my landline so I can greet the caller in the appropriate way and also so I can be sufficiently short as I am getting charged for the call from my BT landline to my mobile.

    That is not a feature that's available on the iPhone. Sorry.

  • Unable to call a procedure from inside a another procedure

    Dear members
    I am trying to call a procedure from inside an another procedure.Both the procedures are present within the same package.I am trying to call the second procedure just before the end of the first procedure.Both the procedures are compiling fine but the tables are not getting populated inside the second procedure.Also the DBMS_OUTPUT statements present in second procedures are not getting displayed.(I feel the second procedured is not getting called).
    The package specification is as follows:
    CREATE OR REPLACE package ANVESH.conv_api_pkg
    is
        PROCEDURE PROC_CONVERSION_API(FILE_PATH IN VARCHAR2,FILE_NAME IN VARCHAR2) ;
        TYPE cts_order_details IS TABLE OF XXCTS_ORDER_DETAILS_STG%ROWTYPE;
        PROCEDURE proc_conversion_api2(p_orderdetails IN cts_order_details) ;
    end conv_api_pkg;The package body is as follows:
    CREATE OR REPLACE package body ANVESH.conv_api_pkg
    is
    PROCEDURE PROC_CONVERSION_API(FILE_PATH IN VARCHAR2,FILE_NAME IN VARCHAR2)
    IS
        v_file_type utl_file.file_type;
        v_buffer VARCHAR2(1000);
        V_CUSTOMER_NAME VARCHAR2(100);
        V_MANUFACTURER VARCHAR2(100);
        V_PRODUCT_NAME VARCHAR2(100);
        V_QUANTITY NUMBER;
        V_REQ_SHIP_DATE DATE;
        V_REQ_PRICE NUMBER;
        V_LOG_FILE utl_file.file_type;
        V_COUNT_CUST NUMBER;
        V_COUNT_PROD NUMBER;
       L_ORDER_LINES CONV_API_PKG.cts_order_details:=CONV_API_PKG.cts_order_details();
    BEGIN
        DBMS_OUTPUT.PUT_LINE('Inside begin 1');
        v_file_type := UTL_FILE.fopen(FILE_PATH, FILE_NAME, 'r',null);
            DBMS_OUTPUT.PUT_LINE('Inside begin 1.1');
        LOOP
            BEGIN
                        DBMS_OUTPUT.PUT_LINE('Inside begin 2');
                         UTL_FILE.GET_LINE (v_file_type,v_buffer);
                        DBMS_OUTPUT.PUT_LINE('Inside begin 2.1');
                        DBMS_OUTPUT.PUT_LINE('the  buffer is '||v_buffer);
                        DBMS_OUTPUT.PUT_LINE('the length of buffer is '||length(v_buffer));
                         V_CUSTOMER_NAME := trim(substr(v_buffer, 1, 30));
                         DBMS_OUTPUT.PUT_LINE('Customer Name is '||V_CUSTOMER_NAME);
                         V_MANUFACTURER  := trim(substr(v_buffer, 31, 40));
                         DBMS_OUTPUT.PUT_LINE('Manufacturer is '||V_MANUFACTURER);
                         V_PRODUCT_NAME  := trim(substr(v_buffer,  71, 20));
                         DBMS_OUTPUT.PUT_LINE('Product Name is '||V_PRODUCT_NAME);
                         V_QUANTITY      := to_number(trim(substr(v_buffer, 91, 5)));
                         DBMS_OUTPUT.PUT_LINE('Quantity is '||V_QUANTITY);
                         V_REQ_SHIP_DATE     := to_date(trim(substr(v_buffer, 96, 20)), 'DD-MON-YYYY');
                         DBMS_OUTPUT.PUT_LINE('Requested Ship Date is '|| V_REQ_SHIP_DATE);
                        V_REQ_PRICE        :=nvl(substr( trim(v_buffer), 116, length(v_buffer)-116),0);
                        --DBMS_OUTPUT.PUT_LINE('Requested Price is1 '||substr(v_buffer, 116, 5));
                        DBMS_OUTPUT.PUT_LINE('The requested price is  '||V_REQ_PRICE);
                V_LOG_FILE := UTL_FILE.FOPEN(FILE_PATH, 'LOG_FILE.dat', 'A');
                    IF (V_QUANTITY > 0)
                     THEN
                     DBMS_OUTPUT.PUT_LINE('The quantity is '||V_QUANTITY);
                       SELECT COUNT (*)
                       INTO V_COUNT_CUST
                       FROM CONVERSION_CUSTOMERS
                       WHERE CUSTOMER_NAME = V_CUSTOMER_NAME;
                       DBMS_OUTPUT.PUT_LINE('The Customer count is '||V_COUNT_CUST);
                       IF(V_COUNT_CUST > 0)
                       THEN
                           SELECT COUNT(*)
                           INTO V_COUNT_PROD
                           FROM conversion_products
                           WHERE PRODUCT_NAME = V_PRODUCT_NAME;
                           DBMS_OUTPUT.PUT_LINE('The Product count is '||V_COUNT_PROD);
                          IF(V_COUNT_PROD >0)
                           THEN
                                INSERT INTO XXCTS_ORDER_DETAILS_STG VALUES (V_CUSTOMER_NAME, V_PRODUCT_NAME, V_MANUFACTURER, V_QUANTITY, V_REQ_SHIP_DATE, V_REQ_PRICE, 'ACTIVE', 'ORDER TAKEN');  
                           ELSE
                                DBMS_OUTPUT.PUT_LINE('PRODUCT SHOULD BE VALID');
                                UTL_FILE.PUT_LINE(V_LOG_FILE, 'PRODUCT SHOULD BE VALID');                   
                           END IF;
                       ELSE
                          DBMS_OUTPUT.PUT_LINE('CUSTOMER SHOULD BE VALID');
                          UTL_FILE.PUT_LINE(V_LOG_FILE, 'CUSTOMER SHOULD BE VALID');
                       END IF;      
                    ELSE
                        DBMS_OUTPUT.PUT_LINE('QUANTITY SHOULD BE VALID');
                        UTL_FILE.PUT_LINE(V_LOG_FILE, 'QUANTITY SHOULD BE VALID');
                    END IF;
                    EXCEPTION
                    WHEN NO_DATA_FOUND THEN
                        EXIT;
                    END;
        END LOOP;
    SELECT CUSTOMER_NAME, PRODUCT_NAME, MANUFACTURER, QUANTITY, REQUESTED_SHIP_DATE, REQUESTED_PRICE, STATUS,MESSAGE
    BULK COLLECT
    INTO L_ORDER_LINES
    FROM XXCTS_ORDER_DETAILS_STG;
    DBMS_OUTPUT.PUT_LINE('values inserted');
    proc_conversion_api2(p_orderdetails=>L_ORDER_LINES);
    END;
    PROCEDURE proc_conversion_api2(p_orderdetails IN cts_order_details)
      IS
      V_AVL_QUANTITY CONVERSION_PRODUCTS.AVL_QUANTITY%TYPE;
      V_REQ_SHIP_DATE DATE;
      V_LIST_PRICE CONVERSION_PRODUCTS.LIST_PRICE%TYPE;
      V_NET_PRICE CONVERSION_PRODUCTS.LIST_PRICE%TYPE;
      V_NET CONVERSION_PRODUCTS.LIST_PRICE%TYPE;
      V_EXTN_PRICE CONVERSION_PRODUCTS.LIST_PRICE%TYPE;
      V_CUST_DISC CONVERSION_CUSTOMERS.DISCOUNT%TYPE;
      V_CERT_DISC CONVERSION_CERTIFICATION.DISCOUNT%TYPE;
      V_CUST_ID XXCTS_ORDER_DETAILS.CUSTOMER_ID%TYPE;
      V_PROD_ID XXCTS_ORDER_DETAILS.PRODUCT_ID%TYPE;
      V_DISC_PRICE CONVERSION_PRODUCTS.LIST_PRICE%TYPE;
      V_DISC_NAME CONVERSION_CERTIFICATION.CERTIFICATION%TYPE;
      V_TOTAL_DISC_AMT NUMBER;
      V_TOTAL_DISC NUMBER;
      V_LIMIT NUMBER;
    BEGIN
        DBMS_OUTPUT.PUT_LINE('INSIDE API_2 BEGIN 1');
            FOR i IN p_orderdetails.FIRST..p_orderdetails.LAST
            LOOP
                 BEGIN
                DBMS_OUTPUT.PUT_LINE('INSIDE API_2 BEGIN 2');
                SELECT PRODUCT_ID,AVL_QUANTITY,LIST_PRICE
                INTO V_PROD_ID,V_AVL_QUANTITY,V_LIST_PRICE
                FROM CONVERSION_PRODUCTS
                WHERE PRODUCT_NAME=p_orderdetails(i).PRODUCT_NAME;
                DBMS_OUTPUT.PUT_LINE('PRODUCT QUANTITY is '||V_PROD_ID);
                DBMS_OUTPUT.PUT_LINE('AVAILABLE QUANTITY is '||V_AVL_QUANTITY);
                DBMS_OUTPUT.PUT_LINE('LIST PRICE is '||V_LIST_PRICE);
                SELECT CUSTOMER_ID,NVL(DISCOUNT,0)
                INTO V_CUST_ID,V_CUST_DISC
                FROM CONVERSION_CUSTOMERS
                WHERE CUSTOMER_NAME=p_orderdetails(i).CUSTOMER_NAME;
                DBMS_OUTPUT.PUT_LINE('CUSTOMER ID is '||V_CUST_ID);
                DBMS_OUTPUT.PUT_LINE('CUSTOMER DISCOUNT IS '||V_CUST_DISC);
                SELECT A.DISCOUNT,A.CERTIFICATION
                INTO  V_CERT_DISC,V_DISC_NAME
                FROM CONVERSION_CERTIFICATION A,CONVERSION_CUSTOMERS B
                WHERE A.CERTIFICATION=B.CERTIFICATION(+)
                AND B.CUSTOMER_NAME=p_orderdetails(i).CUSTOMER_NAME;
                DBMS_OUTPUT.PUT_LINE('CERTIFICATION DISCOUNT IS '||V_CERT_DISC);
                V_NET:=((V_LIST_PRICE)-(V_LIST_PRICE)*(V_CERT_DISC)/100);
                DBMS_OUTPUT.PUT_LINE('NET PRICE AFTER CERTIFICATION DISCOUNT IS '||V_NET);
                V_NET_PRICE:=((V_NET)-(V_NET)*(V_CUST_DISC)/100);
                DBMS_OUTPUT.PUT_LINE('NET PRICE AFTER COMPLETE DISCOUNT IS '||V_NET_PRICE);
                V_EXTN_PRICE:=(V_NET_PRICE)*(p_orderdetails(i).QUANTITY);
                DBMS_OUTPUT.PUT_LINE('EXTENDED PRICE IS '||V_EXTN_PRICE);
                V_TOTAL_DISC:=((V_CERT_DISC)/100+(V_CUST_DISC)/100);
                DBMS_OUTPUT.PUT_LINE('TOTAL DISCOUNT IS '|| V_TOTAL_DISC);
                V_TOTAL_DISC_AMT:=(V_LIST_PRICE)-(V_NET_PRICE);
                DBMS_OUTPUT.PUT_LINE('TOTAL DISCOUNT PRICE IS '|| V_TOTAL_DISC_AMT);
                SELECT MAX(A.LIMIT)
                INTO V_LIMIT
                FROM CONVERSION_CERTIFICATION A,CONVERSION_CUSTOMERS B
                WHERE A.CERTIFICATION=B.CERTIFICATION(+)
                AND B.CUSTOMER_NAME=p_orderdetails(i).CUSTOMER_NAME;
                IF p_orderdetails(i).QUANTITY<V_AVL_QUANTITY THEN
                INSERT INTO XXCTS_ORDER_DETAILS VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,V_CUST_ID,V_PROD_ID,p_orderdetails(i).QUANTITY,p_orderdetails(i).REQUESTED_SHIP_DATE,p_orderdetails(i).REQUESTED_PRICE,V_LIST_PRICE,V_TOTAL_DISC,V_NET_PRICE,V_EXTN_PRICE,'QTY HOLD','REQ QNTY LESS THAN AVL QTY',SYSDATE);
                INSERT INTO xxcts_order_discounts VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,SEQ_DISCOUNT_ID.NEXTVAL,V_DISC_NAME,V_TOTAL_DISC_AMT);
                END IF;
                IF p_orderdetails(i).REQUESTED_SHIP_DATE<SYSDATE THEN
                INSERT INTO XXCTS_ORDER_DETAILS VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,V_CUST_ID,V_PROD_ID,p_orderdetails(i).QUANTITY,p_orderdetails(i).REQUESTED_SHIP_DATE,p_orderdetails(i).REQUESTED_PRICE,V_LIST_PRICE,V_TOTAL_DISC,V_NET_PRICE,V_EXTN_PRICE,'DATE HOLD','SHIPDATE CANNOT BE LESS THAN CURR DATE',SYSDATE);
                INSERT INTO xxcts_order_discounts VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,SEQ_DISCOUNT_ID.NEXTVAL,V_DISC_NAME,V_TOTAL_DISC_AMT);
                END IF;
                IF V_NET_PRICE>p_orderdetails(i).REQUESTED_PRICE THEN
                INSERT INTO XXCTS_ORDER_DETAILS VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,V_CUST_ID,V_PROD_ID,p_orderdetails(i).QUANTITY,p_orderdetails(i).REQUESTED_SHIP_DATE,p_orderdetails(i).REQUESTED_PRICE,V_LIST_PRICE,V_TOTAL_DISC,V_NET_PRICE,V_EXTN_PRICE,'PRICE HOLD','NET PRICE CANNOT BE MORE THAN REQ PRICE',SYSDATE);
                INSERT INTO xxcts_order_discounts VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,SEQ_DISCOUNT_ID.NEXTVAL,V_DISC_NAME,V_TOTAL_DISC_AMT);
                END IF;
               /* IF V_LIMIT<p_orderdetails(i).REQUESTED_PRICE THEN
                INSERT INTO XXCTS_ORDER_DETAILS VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,V_CUST_ID,V_PROD_ID,p_orderdetails(i).QUANTITY,p_orderdetails(i).REQUESTED_SHIP_DATE,p_orderdetails(i).REQUESTED_PRICE,V_LIST_PRICE,V_TOTAL_DISC,V_NET_PRICE,V_EXTN_PRICE,'ORDER LIMIT HOLD','PRICE CANNOT EXCEED ORDER LIMIT',SYSDATE);
                INSERT INTO xxcts_order_discounts VALUES(SEQ_HEADER_ID.NEXTVAL,SEQ_LINE_ID.NEXTVAL,SEQ_DISCOUNT_ID.NEXTVAL,V_DISC_NAME,V_TOTAL_DISC_AMT);
                END IF;*/
                EXCEPTION
                WHEN NO_DATA_FOUND THEN
                DBMS_OUTPUT.PUT_LINE(' INSIDE EXCEPTION BLOCK');
                END;
            END LOOP;
    END;
    end conv_api_pkg;
    /the pl/sql block to invoke the the procedure :
    declare
    begin
    PROC_CONVERSION_API('/usr/tmp' ,'Walmart_Orders_062908.dat');
    end;please let me know what is wrong in the program.
    Thanks
    Anvesh

    Hi Walter
    Yes 'Inside begin 1' and 'Inside begin 2' were printed.Please find the the DBMS_OUTPUT statements that were printed.
    Inside begin 1
    Inside begin 1.1
    Inside begin 2
    Inside begin 2.1
    the  buffer is BESTBUY                       SONY ERICSSON                           W580i               25   1-AUG-2008          50
    the length of buffer is 118
    Customer Name is BESTBUY
    Manufacturer is SONY ERICSSON
    Product Name is W580i
    Quantity is 25
    Requested Ship Date is 01-AUG-08
    The requested price is  50
    The quantity is 25
    The Customer count is 1
    The Product count is 0
    PRODUCT SHOULD BE VALID
    Inside begin 2
    Inside begin 2.1
    the  buffer is BESTBUY                       SAMSUNG                                 BLACKJACK           50   15-JUL-2008         150
    the length of buffer is 119
    Customer Name is BESTBUY
    Manufacturer is SAMSUNG
    Product Name is BLACKJACK
    Quantity is 50
    Requested Ship Date is 15-JUL-08
    The requested price is  150
    The quantity is 50
    The Customer count is 1
    The Product count is 1
    Inside begin 2
    Inside begin 2.1
    the  buffer is BESTBUY                       APPLE                                   IPHONE 4GB          50   15-JUL-2008        
    the length of buffer is 116
    Customer Name is BESTBUY
    Manufacturer is APPLE
    Product Name is IPHONE 4GB
    Quantity is 50
    Requested Ship Date is 15-JUL-08
    The requested price is  0
    The quantity is 50
    The Customer count is 1
    The Product count is 1
    Inside begin 2
    Inside begin 2.1
    the  buffer is BESTBUY                       ATT                                     TILT                100  15-JUN-2008        
    the length of buffer is 116
    Customer Name is BESTBUY
    Manufacturer is ATT
    Product Name is TILT
    Quantity is 100
    Requested Ship Date is 15-JUN-08
    The requested price is  0
    The quantity is 100
    The Customer count is 1
    The Product count is 1
    Inside begin 2
    Inside begin 2.1
    the  buffer is BESTBUY                       NOKIA                                   N73                 50   15-JUL-2008         200
    the length of buffer is 118
    Customer Name is BESTBUY
    Manufacturer is NOKIA
    Product Name is N73
    Quantity is 50
    Requested Ship Date is 15-JUL-08
    The requested price is  20
    The quantity is 50
    The Customer count is 1
    The Product count is 0
    PRODUCT SHOULD BE VALID
    Inside begin 2In the first procedure I am trying to read the data from a flat file and store it in a table.Here is the sample data from the flat file.
    BESTBUY                       SONY ERICSSON                           W580i               25   1-AUG-2008          50
    BESTBUY                       SAMSUNG                                 BLACKJACK           50   15-JUL-2008         150
    BESTBUY                       APPLE                                   IPHONE 4GB          50   15-JUL-2008        
    BESTBUY                       ATT                                     TILT                100  15-JUN-2008        
    BESTBUY                       NOKIA                                   N73                 50   15-JUL-2008         200When tried to execute the second procedure independently using the PL/SQL block,the tables in second procedure were populated and the DBMS_Output statements were also displayed.I have made use of the same query in that case
    Thanks
    Anvesh
    Edited by: Anvesh Reddy on Dec 23, 2008 12:40 PM

  • How to get the most from Nokia Support Discussions

    This forum is a community of users of Nokia products and services from around the world who share their experiences and help people to solve problems. I've been using this forum for a couple of years now, I originally joined because I work in telecomms and I was looking for answers to a few issues that I was experiencing, and like many of the regular members, I've been coming here ever since. There is a really good crowd here, and it is often fun to read the boards as well as informative.
    If you have a problem, if nobody else can help, and if you can find us (it's not hard, Discussions all over Google whenever you search for something Nokia-related), then maybe you can hire: The D Team!
    The communityThis is a peer-to-peer community, you are usually dealing with people who have an interest in mobile technology, albeit with a particular preference to Nokia, who can help on a wide range of questions - the advantage that we have as a community is that many users have experience of a range of devices and accessories, so you can often get help here about issues concerning Nokia products being used with products from other companies that even Nokia itself cannot offer. There has also recently been a presence of Nokia staff (their usernames are shown in green) who are also helping users on the forum in their own time.
    Unlike many forums that we all use regularly, this is an official forum owned and run by Nokia, not the creation of amateur enthusiasts like you and I, so they are much more strict about behaviour than other forums, and the moderators will remove anything that is offensive or disrespectful to other users, or which may cause offence to users of a sensitive nature. Basically, you should treat other users the way you could treat another member of the public in a public place - too many people take advantage of the anonymity offered by the internet to behave in a way that they would not normally do.
    This forum is not a source of official support from Nokia, for that you have to call or e-mail from the "Contact us" link. Most of us are just normal consumers like you, therefore we don't have information on when products, services, software updates etc. will be available so it's futile to ask. Nokia doesn't even publish this information in most cases, so even the Nokia employee members probably wouldn't be able to answer these sorts of questions even if they do have the information.
    Tips for getting your question answered:
     (1) Search firstSomebody else may already have posted the same question, so you can save yourself time by checking first if the answer you need is already published on the forum.
    (2) Choose the right boardPeople are online at different times, we may be taking a break from our work, relaxing at home after a meal, flicking back to the forum whilst doing other surfing on the 'net or anything else, and people will look in boards where they have a specific personal interest so, for example, if you have a problem playing a video on your N96 use the Imaging and videos board in the Ovi and Mobile Media section or if you have a problem installing themes or applications on your 6220 Classic, use the Phone Applications under Software. Posting these questions on the Nseries and S60 smartphones board might see them get lost amongst lots of technical questions about the phone itself, you have a better chance of getting an answer by choosing the right place to ask it.
    (3) Write a clear titleSpeaking for myself, I don't have time to read everything on the boards, so I look for topics that I might be able to answer; therefore don't just put the subject as a phone model number or the name of an application or users might just pass over your post without opening it to read. For example, a title like "Can't get GPS signal in 5800" is much more likely to catch the attention of an experienced GPS user or a 5800 user and get the question answered quicker.
    (4) Explain your problem clearlyPhones and the software that we use in them and with them grow ever more complex, just saying "I can't send an SMS" or "Mr camera isn't working" does not give any information with which an experienced user can help you to troubleshoot. Whatever the case, explain exactly what you are trying to achieve, what you tried, and describe what happened, for example: did an application shut itelf down? Did the phone freeze? Was there an error message, and if so what was it? All of this will help other users to identify what is going wrong for you and the less questions they have to ask you back, the quicker they might help you.
    Tips for making the right impression:
     (5) Use normal textWRITING ENTIRELY IN CAPITALS does not convey a sense of urgency, in internet communities it is perceived as shouting or other generally agressive behaviour, so it will not win the hearts and minds of the people whose help you need. Also, using large characters or bright colours may look nice to you, but too much text written in very large, bold or colourful letters can simply fill the screen unnecessarily and is not always any easier to read, so it can also put people off from helping you. Use these features when you need to highlight a particular point, not all of the time.  (6) Resize imagesIf you are embedding a picture in your post, resize it so that it fits into the frame of the normal page. A full screenshot of your PC or a megapixel+ picture will stretch the borders of the page so far that people have to scroll left and right repeatedly to read not only your post, but the entire page of the thread that it is on, and just as above, if you make it difficult for others to read the thread, they could miss some information or just pass over it altogether. If you want to share a large image, you can also add it as an attachment to the post so that people can view it when they choose without impacting on the display of the page for everybody.
    (7) Pleeeeaaaaazzzzeeee don't do thisFar from making most users take pity on you and try to help you, this kind of thing can be just as bad as all capitals, especially is you make a word so long that it affects the display of the page like inserting large images does. You are also better off not using SMS shorthand and local slang in your posts, because users of the boards are from all over the world and might be speaking English as a second, third, etc. language, so the person who knows the exact solution to your question might not understand the way you have asked it.
    Message Edited by mccbleue on 24-Sep-2009 03:48 PM

    You mention it is a DV/HDV Film - how did you edit it? Did you edit both formats on the same timeline in Final Cut? (What were the settings in Final Cut for the timeline?)
    If you are using HDV in a timeline due to the length of time to conform the output, you may be better off exporting the entire thing for testing (small enough for HDV, though I often use AIC or 422 nowadays).
    What settings are you using in Compressor? I know you mentioned many combinations, but did you use any frame controls? What was the rate? Did you use CBR/VBR?
    One thing to try to get things started. Use 8 CBR and in the frame controls set them to to "Better" for all of them. Will take a bit longer using the filters but should give you an idea where you are at. (Also take a look at the self contained movie to see if there are any artifacts/picels there).
    How are you watching the DVD - computer screen or burning to a DVD?

  • Calling Stored Procedure from Oracle DataBase using Sender JDBC (JDBC-JMS)

    Hi All,
    We have requirement to move the data from Database to Queue (Interface Flow: JDBC -> JMS).
    Database is Oracle.
    *Based on Event, data will be triggered into two tables: XX & YY. This event occurs twice daily.
    Take one field: 'aa' in XX and compare it with the field: 'pp' in YY.
    If both are equal, then
         if the field: 'qq' in YY table equals to "Add" then take the data from the view table: 'Add_View'.
         else  if the field: 'qq' in YY table equals to "Modify"  then take the data from the view table: 'Modify_View'.
    Finally, We need to archive the selected data from the respective view table.*
    From each table, data will come differently, means with different field names.
    I thought of call Stored Procedure from Sender JDBC Adapter for the above requirement.
    But I heard that, we cannot call stored procedure in Oracle through Sender JDBC as it returns Cursor instead of ResultSet.
    Is there any way other than Stored Procedure?
    How to handle Data Types as data is coming from two different tables?
    Can we create one data type for two tables?
    Is BPM required for this to collect data from two different tables?
    Can somebody guide me on how to handle this?
    Waiting eagerly for help which will be rewarded.
    Thanks and Regards,
    Jyothirmayi.

    Hi Gopal,
    Thank you for your reply.
    >Is there any way other than Stored Procedure?
    Can you try configuring sender adapter to poll the data in intervals. You can configure Automatic TIme planning (ATP) in the sender jdbc channel.
    I need to select the data from different tables based on some conditions. Let me simplify that.
    Suppose Table1 contains 'n' no of rows. For each row, I need to test two conditions where only one condition will be satisfied. If 1st condition is satisfied, then data needs to be taken from Table2 else data needs to be taken from Table3.
    How can we meet this by configuring sender adapter with ATP?
    ================================================================================================
    >How to handle Data Types as data is coming from two different tables?
    If you use join query in the select statement field of the channel then whatever you need select fields will be returned. This might be fields of two tables. your datatype fields are combination of two diff table.
    we need to take data only from one table at a time. It is not join of two tables.
    ================================================================================================
    Thanks,
    Jyothirmayi.

  • Call log issue in nokia 5230

    Hi all,
    i am having an issue in call log in my nokia 5230. It is logging call details only for 15 days in spite of making selection for 30 days. I am surprise to see it , when 15 days option it not available in the list, how it is happening.
    I have reloaded the software twice from Nokia site & several times selection for 30 days call log is selected, but all in vain. Can anybody help??
    Thanks  & regards 

    How did you reload the firmware? Did you backup the data and perform a reset using *#7370# before reloading? Try and reply.
    Nokia C7

  • Upload contact from Nokia to Iphone 3GS

    How can I upload contact from Nokia to Iphone 3GS?

    Or if your Nokia supports syncing contacts via bluetooth with an address book application on your computer that is supported for syncing contacts with the iPhone - iSync on a Mac provides for this - syncing contacts with the Address Book on a Mac with a number of cell phones this is supported with. Follow this by syncing your iPhone with the address book on your computer via the iTunes sync process.
    With Windows, this can be with Outlook 2003, 2007, or 2010 along with syncing calendar events and notes, or with the address book application used by Outlook Express or by Windows Mail called Windows Contacts for syncing contacts only.

  • Host A Meeting From An iPad?

    how can i host an online meeting from an ipad2 to demo an app?  the client/users are at a remote location, so mirroring to a tv is not an option.  there is an app called fuze that will allow you to host a meeting, but it will not allow you to display the iPad's screen to show a specific app.  any ideas?

    You need a second demo iPad that you can use to hold in front of your host iPad camera to demo the app.  Pretty sure you can't do both at the same time from one unit.

  • Txt from Nokia to say an update is available, but ...

    Last night I got a text from "My Nokia" which said:
    "A software update for your device is available from Nokia. Visit www.nokia.com/softwareupdate or your local Nokia support pages for more details."
    I've been waiting for v6.xx for my phone for a while now, so I got excited and plugged my phone up and tried to update. Nope, v4.84 is the latest!
    Just to make double sure, I checked the URL supplied in the text, and put my product code in - and it too told me v4.84 was the latest.
    I can't download the phone software with my phone, because I get the message "Update not allowed. Contact service provider."
    Nice. Thanks a bunch, Nokia!
    5800 v20.0.012 -- 6500s v9.40 -- 6233 v5.43 -- 5140 v3.13

    19-Jul-2008 05:27 PM
    basmic wrote:
    In any case, I do not call that a decent explanation. Nor does it excuse Nokia for misleading me.
    You are a funny fella. Like someone gives a damn about if find that a decent explanation or if you excuse it!
    By clicking the "Kudos!" or the "Solution?" button on the right you can say "Thank You" and you´ll show the author and others that the post is useful.
    The day we stop improving is the day we stop being good.

  • Can I move back from Nokia Belle to lower version ...

    I installed Belle on my E6 and having a lot of trouble with it. Main issue is that wherever there is an option key at the center of row at bottom, Touch functionality is disabled at center. I am not able to activate the center key.
    This means, I cannot even set an alarm, cannot add locations in World Clock menu, cannot search programs from main menu, etc...
    Need immediate solution please...
    Karthik

    Jimmy, it pains me to jump ship from Nokia. I don't take it lightly. I have been using Nokia phones for years. In fact right now I am using my 5 year old beat up old falling apart E71 while waiting for the S3 to arrive. The E71 is a way better phone that the E6. If the E6 had been built on S60 then we wouldn’t be having this discussion. I don’t care about album art flow and pretty icons and “Retina” screens, etc. I want a phone that is solid and works. Other than the camera (and it didn’t even have AF), the E6 was a huge disappointment across the board and Belle made it worse.
    Android is not what I would call a great OS and I am not looking forward to the switch but the choices are limited: Android, WP8 and iOS. And I am not going to use an Apple product. I demo’ed a 920 and it just didn’t feel like a Nokia. It may have Nokia hardware but what made Nokia great was Symbian and I am not talking about Belle. The Lumia feels like a Microsoft product. It doesn't really matter if it says Nokia or HTC or Samsung on the package, it's still driven by WP8. Symbian is what made Nokia unique and fun. Stuff that I loved about the E71 is no longer found on any Nokia products.
    I mean no disrespect, but the Nokia products and features that I loved are now gone, nowhere to be found.

  • Urgent - How to call native methods from J2ME

    Hi,
    I have to do some very heavy processing work, so I have my code written in C. And now I want these native functions to be called from a J2ME application. I had thought this was not possible and J2ME did not support something like JNI as J2SE did.
    However, when contacted with Sun Technical Support we were advised to use KNI in J2ME. I went through the KNI documentation and did not find any example to do so.
    On reading about it I understood that it cannot be implemented by developers as the native functions if any using KNI should be implemented while compiling the KVM.
    I would like to know whether my understanding is correct, or is it possible to call native functions from J2ME. Say I would like to have my native functions called from J2ME and run it on my Nokia N73 or other such phones.
    Experts please clear this.
    Regards,
    Kamalakshan

    Hi,
    You are right in your assumptions regarding KNI. Here is some related thread that might also help. There has been [some work|http://developer.symbian.com/main/downloads/papers/MIDlet_Native_Services_Framework/MIDlet_Native_Services_Framework_v1.1.zip] done in accessing native services through a MIDlet.
    Mihai

  • Nokia 808 Pureview- No downloading from Nokia Musi...

    Guys, I just got a Nokia 808 Pureview about 20 days back after a fantastic 2 years with my N8 (on Anna).
    Initially, I was downloading music fine. But one day, I tried downloading music from PC. I logged on to ovi.music.com using my Nokia ID, and tried downloading few songs from the site on my Laptop....
    It asked me to download a software called "Ovi Music Downloader". I downloaded & installed it. But songs did not get downloaded even then, on my PC....
    Now, the problem is that when I try downloading it in my mobile, it just pretends to download, but the download never fills up ... in other words, no song is getting downloaded now.
    Kindly help me to get my mobile Music downloads working again... What should I do now?
    Additional Details: I just checked on my PC: I am not logged into Nokia Ovi Music site. Also, my subscription has 340 days remaining.
    ================================
    ==============================
    My Story: Used 6670, Used N91, Used N8, Using Pureview 808 now. I requested Nokia to get N91's sound quality and features in the latest phones. No response from Nokia!
    Solved!
    Go to Solution.

    Hi Gaurav, Problem Solved! Problem Solved!! I got the solution. Read on... In your mobile:
    1. Open Nokia Music and Go to your "Download History", and sort by "Date"only (it is default).
    2. One by one from the top, click each song to open its window, and see if it is downloaded or not.
    * If it is downloaded, it will show a "Play" Icon on the right side of the song... Ignore it, exit this song by clicking "Back" and move on to the next song...
    * But, If it is not downloaded, it will show a "download arrow" icon... If it does show download icon, click on it to start the download, then "LONG PRESS/ HOLD AND PRESS" the same icon, till it shows you "Cancel Download? ".... Click "Yes" to cancel the download...
    3. Now move on to the next song in the List of "Download History", and do the same. If it downloaded, leave it.
    But, if it is not downloaded, click on download icon and when download starts, long press on the same icon to stop download. Same thing.
    4. After doing this on 5-6 songs, exit Nokia Music and restart it... You should see smaller numbers now in the Blue box.
    5. When this "blue circle" number reaches 1, keep on searching and you will find a DOWNLOAD STUCK file... This file's download will be stuck... It should show half downloaded, but it won't download further...
    Stop this download by long pressing the download/ play icon.... That's it.
    Problem solved. Now you can download any song, even the same song which was stuck. Today, I just downloaded the entire Christmas Album which had a song which stuck, and few more other songs.
    If you don't understand anything, then I'll add screenshots too.
    NOTE: My problem maybe solved, but its sad that Nokia ignored such problems even on complaining to them. Yes, 5-6 days ago, I sent a mail to customer care, and I didn't get a reply as yet. Just because we got a dying platform doesn't mean that it is bad and will not be supported.
    ==============================
    My Story: Used 6670, Used N91, Used N8, Using Pureview 808 now. I requested Nokia to get N91's sound quality and features in the latest phones. No response from Nokia!

  • Downloading photos from Nokia 6230i

    I have got pictures on my phone that I want to download to my pc to get copies printed.  I have looked at the boards here but only got more confused.  A phone shop I asked told me that a connecting cable should have been supplied with my Nokia 6230i to do this.  After searching through a heap of unidentifiable spaghetti kept over the years, I can't find the right thing.  I have a disc that I have never used called "PC Software for Nokia 6230i" - is this relevant?   I would be grateful for some basic information so I don't feel so foolish.  Thanks in advance.

    I have owned quite a few 6230i's and I don't remember any of them coming with a cable. I had to buy the cable myself.
    The cable you need is the DKU2. You could also use Bluetooth if you have a PC/laptop with Bluetooth. Last and my favourite solution is to remove the memory card from the phone and use the card reader which most pc's come with nowadays.  

  • Hi I have set up iCloud with Outlook 2010 where this bound notepad calendar contacts etc.. but when you go to schedule a meeting in outlook is below the hour. agendo eg a meeting from 13:00 to 14:00 and iCloud in outlook calendar leaves at 14:00 to 15:00.

    Hi I have set up iCloud with Outlook 2010 where this bound notepad calendar contacts etc.. but when you go to schedule a meeting in outlook is below the hour. agendo eg a meeting from 13:00 to 14:00 and iCloud in outlook calendar leaves at 14:00 to 15:00.
    If I could call serious alguine friendly thanks

    Hi I have set up iCloud with Outlook 2010 where this bound notepad calendar contacts etc.. but when you go to schedule a meeting in outlook is below the hour. agendo eg a meeting from 13:00 to 14:00 and iCloud in outlook calendar leaves at 14:00 to 15:00.
    If I could call serious alguine friendly thanks

  • Articles moved from Nokia Developer Wiki generated clone and crazy articles

    Hello,
    I am completely disappointed because my articles from Nokia Developer Wiki was moved to TechNet Wiki and I wasn´t notified....and of course it do mess, because I saved my articles to publish here and I just published some of them...and now I have cloned
    articles!! The owner should be notified and the article should be set to the owner profile, at least for how has it here...
    Some writers from Nokia Developer Wiki moved to here and I think the work should be respected, I saw the credits at bottom but wasn´t linked to the profile, really sad....
    And some articles has a crazy look!
    Sara Silva - Microsoft Visual C# MVP
    My blog |
    My Windows 8 Store Apps Samples |
    More Samples
    Follow me in Twitter @saramgsilva
    My Windows 8 Store Apps:
    Female Pill |
    Galinho (Tic tac Toe) |
    24 |
    My Snake
    My Windows Phone Apps

    At this moment is possible to read at the front page
    http://developer.nokia.com/community/wiki/Wiki_Home
    "Sara has contributed a total of 69 articles to the Developer Wiki. She writes in both in English and in Portuguese.
    is not 2 or 3 articles :(
    Updated
    Sara Silva - Microsoft Visual C# MVP
    My blog |
    My Windows 8 Store Apps Samples |
    More Samples
    Follow me in Twitter @saramgsilva
    My Windows 8 Store Apps:
    Female Pill |
    Galinho (Tic tac Toe) |
    24 |
    My Snake
    My Windows Phone Apps
    First of all, that's pretty awesome (the monthly winners and whatnot). They did that 100% manually. We'll see if we can find them and if they want to continue anything like that for Windows Dev articles on TNWiki.
    Second of all, it's kind of crazy. There are ZERO links from those weekly and monthly winner lists to your profile or any of the articles! Very high contrast to our Guru awards, where every article and author is called out and each one has a link.
    So I can't find articles from either of you on the Nokia wiki. Do you have a profile link for that site?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

Maybe you are looking for

  • Tables for Target Group

    Dear experts, I have been looking for the table that stores the target group. Could anyone please help? thanks Mehmet

  • Advice with Motion presets

    Hey guys, I'm working with Motion to do a 3 minute slideshow and I'd love to get some advice on the project setup and exports. What's the best setting for Motion if this slideshow's going to be displayed on a toshiba projector? You can find a link wi

  • Dreamweaver downloading issue.

    I have downloaded the trial of Dreamweaver in order to decide if I am going to purchase or not. While it was at 97%, it stopped and said "Update Failed" and gave me the option to retry. Every time I click "Retry" it doesn't work. How can I fix this?

  • Planning Applications

    Following the developers' guide on 'Business Planning and Analytical Services' for 2004S we got stuck on assigning custom Commands for Planning Applications in WAD, which were created in the planning wizard. The option for 'Commands for Planning Appl

  • Ssd in MBP late 2011

    Just purchased from Ebay a brand new sealed Samsung 840 series 250 Gb SSD i'm ok with the removal of HDD and re fitting of the SSD my question is what is the best method to reinstall Mountain Lion, a detailed blow by blow explaination would be greatl