Let me know about the code inspector ?

Hi
Let me know about the code inspector ?
thanks in advance

hi
The transaction for the code inspector is SCI / SCID. Code inspector generally used to check for Syntax Checks, Security checks and Performance checks.
<b>Check these links on Code Inspector:</b>
http://sap.ittoolbox.com/groups/technical-functional/sap-dev/abap-code-inspector-1441023
/people/randolf.eilenberger/blog/2007/03/12/code-inspector146s-performance-checks-i
/people/peter.inotai/blog/2006/11/02/code-inspector--how-to-create-a-new-check
http://help.sap.com/saphelp_nw04/helpdata/en/56/fd3b87d203064aa925256ff88d931b/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/56/fd3b87d203064aa925256ff88d931b/frameset.htm
<b>reward points for useful ans</b>
Regards
Aarti

Similar Messages

  • How do we let Apple know about the Apple ID Issue?

    Hi, there seems to be an issue (Apple's end)  with signing in to the Itunes store and the Mac App store. How do we let them know about the issue? Their service status shows all green lights so it seems they are not aware of the problem.... I don't know about you but I'm getting really frustrated.. !! PS It seems that my warranty has expired so I don't have direct access to their support ?! HEEEEEEEEELP! THAAAAAANX!!!!!
    Milan, Italy, March 11

    Hi valelorandi,
    I understand that you are seeing an issue with your connection to the iTunes Store and Mac App Store. I have an article for you that will help you address this issue, and it can be found below:
    Can't connect to the iTunes Store - Apple Support
    https://support.apple.com/en-us/HT201400
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Please let me know about the  Tibco  ?

    plz let me know abt the tibco in BW environment ?

    It would depend on what you want to know about TIBCO ...?
    you can get more from :
    http://spotfire.tibco.com/Products/Application-Data-Services.aspx and
    also search the PI / XI forums for information on TIBCO...
    P.S - I found this using a simple google search - wonder if you can do it too...?
    http://www.google.com/search?q=tibco%2Bsap+bw
    Edited by: Arun Varadarajan on Feb 22, 2010 8:50 PM

  • Please let me know if the code works.

    When I do the conversion with the following data file,stag table the program doesn't populate the data in the mtl_transactions_interface table and the following error is thrown.
    FDPSTP failed due to ORA-20100: File o0046035.tmp creation for FND_FILE failed.
    Please help.
    create or replace package XX_INV_ONHAND_QTY_PKG
    -- CREATED BY :JHANSI
    -- PURPOSE This Pl/sql package for Onhand Quantities Conversion
    -- N : New Record
    -- E : Errored Record
    -- p : Processed Record
    -- CHANGE HISTORY
    -- Date Version CR# Change Author
    -- 24-Nov-2007 1.00 suhasini
    -- DYNAMIC SQL :NO
    -- Note
    as
    procedure insert_data;
    procedure validate;
    procedure XX_INV_ONHAND_QTY_PROC(errbut OUT VARCHAR2,
    retcode OUT NUMBER
    end XX_INV_ONHAND_QTY_PKG;
    CREATE OR REPLACE PACKAGE BODY XX_INV_ONHAND_QTY_PKG
    -- CREATED BY :JHANSI
    -- PURPOSE This Pl/sql package for Onhand Quantities Conversion
    -- N : New Record
    -- E : Errored Record
    -- p : Processed Record
    -- CHANGE HISTORY
    -- Date Version CR# Change Author
    -- 24-Nov-2007 1.00 suhasini
    -- DYNAMIC SQL :NO
    -- Note
    IS
    /*PROCEDURE LOG (p_msg VARCHAR2)
    IS
    BEGIN
    IF (fnd_global.user_id = -1)
    THEN
    NULL;
    DBMS_OUTPUT.put_line (p_msg);
    ELSE
    fnd_file.put_line (fnd_file.LOG, p_msg);
    END IF;
    END LOG;*/
    PROCEDURE insert_data
    IS
    CURSOR cur_xx_inv_onhand_conv_stg
    IS
    SELECT ROWID, a.*
    FROM xx_inv_onhand_conv_stg a
    WHERE status_flag = 'V';
    l_err_msg VARCHAR2 (1000);
    l_source_line_id NUMBER := 1;
    l_source_header_id NUMBER := 1;
    l_process_flag NUMBER := 1;
    l_transaction_mode NUMBER := 3;
    l_transaction_header_id NUMBER := 1;
    l_transaction_type_id NUMBER;
    BEGIN
    BEGIN
    l_transaction_type_id := 0;
    SELECT transaction_type_id
    INTO l_transaction_type_id
    FROM mtl_transaction_types
    WHERE UPPER (transaction_type_name) =
    UPPER ('Miscellaneous receipt');
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line(fnd_file.log,' TRANSACTION_TYPE_NAME Miscellaneous receipt Is Not Defined In The System');
    END;
    FOR rec_xx_inv_onhand_conv_stg IN cur_xx_inv_onhand_conv_stg
    LOOP
    l_err_msg := NULL;
    BEGIN
    INSERT INTO mtl_transactions_interface
    (source_code,
    source_header_id, source_line_id,
    process_flag, transaction_mode,
    transaction_header_id,
    transaction_quantity,
    transaction_uom, transaction_type_id,
    item_segment1, created_by,
    creation_date, last_update_date, last_update_login,
    last_updated_by,
    organization_id, transaction_date,
    subinventory_code, distribution_account_id,
    inventory_item_id)
    VALUES (rec_xx_inv_onhand_conv_stg.source_code,
    l_source_header_id, l_source_line_id,
    l_process_flag, l_transaction_mode,
    l_transaction_header_id,
    rec_xx_inv_onhand_conv_stg.onhand_qty,
    rec_xx_inv_onhand_conv_stg.uom, l_transaction_type_id,
    rec_xx_inv_onhand_conv_stg.item, fnd_global.user_id,
    SYSDATE, SYSDATE, fnd_global.user_id,
    fnd_global.user_id,
    rec_xx_inv_onhand_conv_stg.organization_id, SYSDATE,
    rec_xx_inv_onhand_conv_stg.subinventory_code, 13401,
    rec_xx_inv_onhand_conv_stg.inventory_item_id);
    UPDATE xx_inv_onhand_conv_stg
    SET status_flag = 'P'
    WHERE ROWID = rec_xx_inv_onhand_conv_stg.ROWID;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_err_msg := ' Insert Error ' || SQLERRM;
    UPDATE xx_inv_onhand_conv_stg
    SET status_flag = 'E',
    error_msg = l_err_msg
    WHERE ROWID = rec_xx_inv_onhand_conv_stg.ROWID;
    END;
    END LOOP;
    COMMIT;
    END insert_data;
    -- exec xxqc_inv_onhand_pck. xxqc_inv_onhand_proc('V1');
    PROCEDURE VALIDATE
    IS
    l_account_alias_receipt mtl_transaction_types.transaction_type_id%TYPE
    DEFAULT NULL;
    l_acct_period_id org_acct_periods.acct_period_id%TYPE
    DEFAULT NULL;
    l_transaction_type_id mtl_transaction_types.transaction_type_id%TYPE
    DEFAULT NULL;
    l_transaction_action_id mtl_transaction_types.transaction_action_id%TYPE
    DEFAULT NULL;
    l_transaction_source_id mtl_generic_dispositions.disposition_id%TYPE
    DEFAULT NULL;
    l_transaction_source_type_id mtl_txn_source_types.transaction_source_type_id%TYPE
    DEFAULT NULL;
    l_location_id mtl_item_locations_kfv.inventory_location_id%TYPE
    DEFAULT NULL;
    l_organization_id org_organization_definitions.organization_id%TYPE
    DEFAULT NULL;
    l_inventory_item_id mtl_system_items_b.inventory_item_id%TYPE
    DEFAULT NULL;
    l_secondary_inventory_name mtl_secondary_inventories.secondary_inventory_name%TYPE
    DEFAULT NULL;
    l_inventory_location_id mtl_item_locations.inventory_location_id%TYPE
    DEFAULT NULL;
    l_lot_control_code mtl_system_items_b.lot_control_code%TYPE
    DEFAULT NULL;
    l_serial_number_control_code mtl_system_items_b.serial_number_control_code%TYPE
    DEFAULT NULL;
    l_shippable_item_flag mtl_system_items_b.shippable_item_flag%TYPE
    DEFAULT NULL;
    l_trans_enb_flag mtl_system_items_b.mtl_transactions_enabled_flag%TYPE
    DEFAULT NULL;
    l_lot_count NUMBER DEFAULT NULL;
    l_uom_count NUMBER DEFAULT NULL;
    l_error_count NUMBER DEFAULT NULL;
    l_lot NUMBER DEFAULT NULL;
    l_serial_number NUMBER DEFAULT NULL;
    l_code_combination_id gl_code_combinations.code_combination_id%TYPE
    DEFAULT NULL;
    l_reason_id mtl_transaction_reasons.reason_id%TYPE
    DEFAULT NULL;
    l_reason_name mtl_transaction_reasons.reason_name%TYPE
    DEFAULT NULL;
    l_process_flag NUMBER DEFAULT NULL;
    l_user NUMBER DEFAULT NULL;
    l_transaction_error_flag VARCHAR2 (4) DEFAULT NULL;
    l_trans_date DATE;
    l_tran_type VARCHAR2 (1000) := NULL;
    l_locator_name VARCHAR2 (2000) := NULL;
    l_new_uom VARCHAR2 (10) := NULL;
    l_master_org mtl_parameters.organization_code%TYPE;
    l_status VARCHAR2 (10);
    l_valerr_count NUMBER;
    l_val_count NUMBER;
    l_err_msg VARCHAR2 (2000);
    l_message VARCHAR2 (2000);
    l_uom_code VARCHAR2 (10);
    l_count NUMBER;
    l_commit_count NUMBER := 0;
    CURSOR cur_inv_onhand_stg
    IS
    SELECT a.*, ROWID
    FROM xx_inv_onhand_conv_stg a
    WHERE status_flag = 'N';
    BEGIN
    FOR rec_inv_onhand_stg IN cur_inv_onhand_stg
    LOOP
    l_err_msg := NULL;
    l_organization_id := 0;
    l_inventory_item_id := 0;
    -- Start Of Validation Block For Organization Code
    BEGIN
    SELECT organization_id
    INTO l_organization_id
    FROM mtl_parameters
    WHERE organization_code = rec_inv_onhand_stg.organization_code;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_message := ' Invalid Org Code '
    || rec_inv_onhand_stg.organization_code;
    WHEN TOO_MANY_ROWS
    THEN
    l_message :=
    ' Org Code Error ... Too Many Rows Errors For Organization '
    || rec_inv_onhand_stg.organization_code;
    WHEN OTHERS
    THEN
    l_message :=
    ' Org Code Error ... Un Handled Exception Error For Organization '
    || rec_inv_onhand_stg.organization_code
    || ' '
    || SQLERRM;
    END;
    -- Check Item Exists in Oracle
    IF (l_organization_id <> 0)
    THEN
    -- Validation Block For Item And Bom Enabled Flag At Assembly Level
    BEGIN
    SELECT inventory_item_id
    INTO l_inventory_item_id
    FROM mtl_system_items_b
    WHERE segment1 = rec_inv_onhand_stg.item
    AND organization_id = l_organization_id;
    IF (l_inventory_item_id <> 0)
    THEN
    BEGIN
    SELECT COUNT (1)
    INTO l_count
    FROM mtl_system_items_b
    WHERE inventory_item_id = l_inventory_item_id
    AND organization_id = l_organization_id
    AND mtl_transactions_enabled_flag = 'Y';
    IF (l_count = 0)
    THEN
    l_message := ' Item '
    || rec_inv_onhand_stg.item
    || ' Is Not TRANSACTIONS ENABLED '
    || ' In Organization '
    || rec_inv_onhand_stg.organization_code;
    END IF;
    END;
    END IF;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_message := ' Invalid Item '
    || rec_inv_onhand_stg.item
    || ' In Organization '
    || rec_inv_onhand_stg.organization_code;
    WHEN TOO_MANY_ROWS
    THEN
    l_message := ' Retrive Of Too Many Rows In Org '
    || rec_inv_onhand_stg.organization_code
    || ' For Item '
    || rec_inv_onhand_stg.item;
    WHEN OTHERS
    THEN
    l_message := 'Un Handled Exception For Item '
    || rec_inv_onhand_stg.item
    || ' In Organization '
    || rec_inv_onhand_stg.organization_code;
    END;
    END IF;
    -- Validation For UOM
    BEGIN
    SELECT unit_of_measure
    INTO l_uom_code
    FROM mtl_units_of_measure
    WHERE UPPER (unit_of_measure) = UPPER (rec_inv_onhand_stg.uom);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_message := l_message
    || 'Unit Of Measure is Not Defined '
    || rec_inv_onhand_stg.uom;
    WHEN TOO_MANY_ROWS
    THEN
    l_message := l_message || SQLERRM || rec_inv_onhand_stg.uom;
    WHEN OTHERS
    THEN
    l_message := l_message || SQLERRM || rec_inv_onhand_stg.uom;
    END;
    BEGIN
    SELECT secondary_inventory_name
    INTO l_secondary_inventory_name
    FROM mtl_secondary_inventories
    WHERE UPPER (secondary_inventory_name) =
    UPPER (rec_inv_onhand_stg.subinventory_code)
    AND organization_id = l_organization_id;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_message := l_message
    || ' Invalid Sub Inventory Code '
    || rec_inv_onhand_stg.subinventory_code
    || ' In Organization '
    || rec_inv_onhand_stg.organization_code;
    WHEN TOO_MANY_ROWS
    THEN
    l_message := l_message
    || ' Retrive Of Too Many Rows In Org '
    || rec_inv_onhand_stg.organization_code
    || ' For Sub Inventory Code'
    || rec_inv_onhand_stg.subinventory_code;
    WHEN OTHERS
    THEN
    l_message := l_message
    || 'Un Handled Exception For ISub Inventory Code'
    || rec_inv_onhand_stg.subinventory_code
    || ' In Organization '
    || rec_inv_onhand_stg.organization_code;
    END;
    -- Check On Hand QTY Should be Greater than Zero
    BEGIN
    IF (rec_inv_onhand_stg.onhand_qty <= 0)
    THEN
    l_message :=
    l_message
    || 'ONHAND QUANTITY CANNOT BE LESS THEN OR EQUAL TO ZERO ';
    END IF;
    END;
    IF l_message IS NOT NULL
    THEN
    UPDATE xx_inv_onhand_conv_stg
    SET status_flag = 'E',
    error_msg = l_message
    WHERE ROWID = rec_inv_onhand_stg.ROWID;
    l_error_count := l_error_count + 1;
    ELSE
    UPDATE xx_inv_onhand_conv_stg
    SET status_flag = 'V',
    organization_id = l_organization_id,
    inventory_item_id = l_inventory_item_id
    WHERE ROWID = rec_inv_onhand_stg.ROWID;
    END IF;
    l_commit_count := l_commit_count + 1;
    IF MOD (l_commit_count, 100) = 0
    THEN
    COMMIT;
    END IF;
    END LOOP;
    COMMIT;
    SELECT COUNT (*)
    INTO l_val_count
    FROM xx_inv_onhand_conv_stg
    WHERE status_flag = 'V';
    SELECT COUNT (*)
    INTO l_valerr_count
    FROM xx_inv_onhand_conv_stg
    WHERE status_flag = 'E';
    fnd_file.put_line(fnd_file.log,'Total validated records ' || l_val_count);
    fnd_file.put_line(fnd_file.log,'Total records in Error ' || l_valerr_count);
    IF (l_val_count > 0)
    THEN
    --insert_onhand_qty;
    NULL;
    END IF;
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line(fnd_file.log,'Program Failed ' || SQLERRM);
    END VALIDATE;
    PROCEDURE XX_INV_ONHAND_QTY_PROC (errbut OUT VARCHAR2, retcode OUT NUMBER)
    IS
    l_count NUMBER := 0;
    l_start_time VARCHAR2 (20);
    l_end_time VARCHAR2 (20);
    l_start_date DATE;
    l_end_date DATE;
    l_time_taken VARCHAR2 (250);
    BEGIN
    BEGIN
    fnd_global.apps_initialize (
    user_id => 1008604,
    resp_id => 20566,
    resp_appl_id => 702,
    security_group_id => 0,
    server_id => -1
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line(fnd_file.log,' Error While Initializing Fnd Global Package');
    fnd_file.put_line(fnd_file.log,' Sql Error Message is ' || SQLERRM);
    END;
    SELECT SYSDATE
    INTO l_start_date
    FROM DUAL;
    SELECT TO_CHAR (SYSDATE, 'HH24:MI:SS')
    INTO l_start_time
    FROM DUAL;
    fnd_file.put_line(fnd_file.log,CHR (10));
    fnd_file.put_line(fnd_file.log,' Program Started On '
    || TO_CHAR (SYSDATE, 'DD-MON-RRRR')
    || ' At '
    || l_start_time
    VALIDATE;
    insert_data;
    fnd_file.put_line(fnd_file.log,
    SELECT SYSDATE
    INTO l_end_date
    FROM DUAL;
    SELECT TO_CHAR (SYSDATE, 'HH24:MI:SS')
    INTO l_end_time
    FROM DUAL;
    fnd_file.put_line(fnd_file.log,CHR(10)
    || ' Program Ended On '
    || TO_CHAR (SYSDATE, 'DD-MON-RRRR')
    || ' At '
    || l_end_time
    SELECT FLOOR (((l_end_date - l_start_date) * 24 * 60 * 60) / 3600)
    || ' HOURS '
    || FLOOR (
    ( ((l_end_date - l_start_date) * 24 * 60 * 60)
    - FLOOR (
    ((l_end_date - l_start_date) * 24 * 60 * 60)
    / 3600
    * 3600
    / 60
    || ' MINUTES '
    || ROUND (
    ( ((l_end_date - l_start_date) * 24 * 60 * 60)
    - FLOOR (
    ((l_end_date - l_start_date) * 24 * 60 * 60) / 3600
    * 3600
    - ( FLOOR (
    ( ((l_end_date - l_start_date) * 24 * 60 * 60)
    - FLOOR (
    ( (l_end_date - l_start_date)
    * 24
    * 60
    * 60
    / 3600
    * 3600
    / 60
    * 60
    || ' SECS '
    INTO l_time_taken
    FROM DUAL;
    fnd_file.put_line(fnd_file.log,
    CHR (10)
    || 'TIME TAKEN TO RUN On Hand Qty CONVERSION PROGRAM IS :: '
    || l_time_taken
    || CHR (10)
    || CHR (10)
    fnd_file.put_line(fnd_file.log,' END OF QTM On Hand Qty Conversion Program ');
    -- exec xxqc_inv_onhand_pck.xxqc_inv_onhand_proc(:a,:b)
    END XX_INV_ONHAND_QTY_PROC;
    END XX_INV_ONHAND_QTY_PKG;
    create table xx_inv_onhand_conv_stg
    SOURCE_CODE     VARCHAR2(100),
    ORGANIZATION_CODE     VARCHAR2(10),
    SUBINVENTORY_CODE     VARCHAR2(10),
    ITEM     VARCHAR2(30),
    UOM     VARCHAR2(10),
    ITEM_STATUS     VARCHAR2(10),
    ONHAND_QTY     NUMBER,
    SOURCE     VARCHAR2(10),
    CREATED_BY     NUMBER,
    LAST_UPDATE_LOGIN     NUMBER,
    LAST_UPDATED_BY     NUMBER,
    PROCESS_FLAG     NUMBER,
    ORGANIZATION_ID     NUMBER,
    STATUS_FLAG     VARCHAR2(2),
    INVENTORY_ITEM_ID     VARCHAR2(100),
    ERROR_MSG      VARCHAR2(2)
    INVENTORY,V1,Mobile B,Computer,Ea,Active,20,RENOVA,12345,12345,12345,1,204,N,12816
    INVENTORY,V1,Stores,Computer,Ea,Active,20,RENOVA,12345,12345,12345,1,204,N,12816
    INVENTORY,V1,Stores,Cabinet ATX,Ea,Active,15,RENOVA,12345,12345,12345,1,204,N,12817
    INVENTORY,V1,Mobile B,Cabinet ATX,Ea,Active,15,RENOVA,12345,12345,12345,1,204,N,12817
    INVENTORY,V1,Stores,Cabinet Multimedia,Ea,Active,35,RENOVA,12345,12345,12345,1,204,N,12818
    INVENTORY,V1,Stores,Cabinet Multimedia,Ea,Active,35,RENOVA,12345,12345,12345,1,204,N,12818
    INVENTORY,V1,Mobile B,Cabinet Zoom,Ea,Active,12,RENOVA,12345,12345,12345,1,204,N,12819
    INVENTORY,V1,Stores,Processor Citrix,Ea,Active,40,RENOVA,12345,12345,12345,1,204,N,12820
    INVENTORY,V1,Mobile B,Processor Dual Core,Ea,Active,15,RENOVA,12345,12345,12345,1,204,N,12821
    INVENTORY,V1,Mobile B,Ram 1 GB,Ea,Active,75,RENOVA,12345,12345,12345,1,204,N,12822
    INVENTORY,V1,Stores,Ram 1 GB,Ea,Active,75,RENOVA,12345,12345,12345,1,204,N,12822
    INVENTORY,V1,Stores,Ram 1 GB,Ea,Active,75,RENOVA,12345,12345,12345,1,204,N,12822
    INVENTORY,V1,Mobile B,Ram 1 GB,Ea,Active,75,RENOVA,12345,12345,12345,1,204,N,12822
    INVENTORY,V1,Mobile B,Ram 1 GB,Ea,Active,75,RENOVA,12345,12345,12345,1,204,N,12822
    INVENTORY,V1,Stores,Ram 2 GB,Ea,Active,17,RENOVA,12345,12345,12345,1,204,N,12823
    INVENTORY,V1,Mobile B,Key Board TVS,Ea,Active,25,RENOVA,12345,12345,12345,1,204,N,12824
    INVENTORY,V1,Mobile B,Key Board Multi Media,Ea,Active,35,RENOVA,12345,12345,12345,1,204,N,12825
    INVENTORY,V1,Mobile B,Key Board Intel,Ea,Active,25,RENOVA,12345,12345,12345,1,204,N,12826
    INVENTORY,V1,Stores,Key Board Dell,Ea,Active,60,RENOVA,12345,12345,12345,1,204,N,12827

    FDPSTP failed due to ORA-20100: File o0046035.tmp creation for FND_FILE failed.
    Please help.Please verify the following:
    1) Make sure that APPLPTMP is set to a valid directory as shown above (Verify from the OS by issuing "echo $APPLPTMP" as applmgr user)
    2) Make sure that both the applmgr user and the database user "oracle" have read/write permissions on $APPLPTMP
    3) Make sure that APPLPTMP is the first entry in utl_file_dir (utl_file_dir is set in the init<SID>.ora file). To verify to what "utl_file_dir" is set:
    SQL> connect / as sysdba
    SQL> show parameter UTL_FILE_DIR

  • Just a note to let you know about the Refurbished iPhones....

    Good morning.
    I'm sure a number of you will not agree but.....
    I purchase all my Apple products refurbished and have never had a single days' problem with anything from a laptop to a Tower and now, the same with my iPhone. As soon as it went on Refurbished sale site I purchase an 8 gig and last weekend a 4 gig for my son. It's amazing.
    This is just an fyi, I'm sure some had problems with refurbished products but I've been very lucky thus far.
    Tom

    But... just like computers that are refurbished, the iPhone is certified as operating as "NEW".
    In the computer business this certification is important since the Government won't accept used equipment but will accept equipment certified as NEW with a totally refresed Warranty.
    If the iPhone is certified to work as NEW and Warranted as NEW, the consumer should not be concerned about it's performance as long as the problem that the iPhone had is resolved.
    mikeab

  • [Info] Want to know about the existence of Illustrator debug build

    Hi All,
    I am the new one in Illustrator. and have a query about Adobe Illustrator product.
    Question: Does Adobe provide a debug build for Illustrator?
    Please let me know about this.
    Regards,
    Alam

    As we have two separate build(debug and release) for InDesign
    So let me know clearly - Does we have two separate build(debug and release) in Illustrator or We have only one build.
    Regards
    Alam

  • M from india, i purchase iphone 4s around 18 mnths ago. I was having 1 year warranty of 1 year that has been expired 6 months ago. Now how can i extend my iphone warranty. Please let me know about this. Thanks in advance..

    M from india, i purchase iphone 4s around 18 mnths ago. I was having 1 year warranty of 1 year that has been expired 6 months ago. Now how can i extend my iphone warranty. Please let me know about this. Thanks in advance..

    If you don't know the sender, then it is most likely a scam or spam email. I get them every day - I just delete them. I also get daily notices from Facebook or someone called Adriana at Facebook even though i do not have an account there. Can't do anything about it - just delete it.

  • Let me know about oracle apps

    i am a trainee software engg.
    can u let me know about oracle apps/financials etc.
    i m keen to know about it as in near future i may be working on it.
    let me know where do i get the technical know how etc.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Navin Kapoor ([email protected]):
    The following websites may be helpful to you
    www.oracle.com www.technet.oracle.com www.metalink.oracle.com and
    ofcourse the appscommunity
    Thanks
    Navin<HR></BLOCKQUOTE>
    Hi Navin!
    I found that so many of queries were answered by u to the queries posted here.
    Can you please answer to my following queries?
    1. How will be the future of Oracle financials? i.e. I want to choose my career
    towards oracle financial..Currently I'm
    working with a financial application(m/f)
    2. Who are the major clients for
    oracle financials in US?
    3. Is it possible to attend OCP exams only
    with theoritcal knowledge(w/o doing any
    practicing on computer).
    I will appreciate if u can send ur reply to
    [email protected]
    Thanks,
    kishor
    null

  • I need to upgrade memory slots on my Mac mid 2010 up to 4 GB module which is currently 2GB with two different 1GB memory  slots.Is it compatible and would like to know about the cost?

    I need to upgrade memory slots on my Mac mid 2010 up to 4 GB module which is currently 2GB with two different 1GB memory  slots.Is it compatible and would like to know about the cost?

    this sub forum is about running windows on macs maybe you should try
    https://discussions.apple.com/community/notebooks/macbook

  • Customizing the code inspector with check for two executable statements in same line

    Hi Everyone,
    I have a reuirement to customize the code inspector.I need to create a check 'Two executable statements should not be in the same line'.
    While doing so i am facing one problem as in internal table it is capturing the report as word by word with same row number nd different line number.
    If anyone have worked on this before then help me out.
    I am using CL_CI_TEST_SCAN as superclass and making the changes in the run method.
    Regards,
    Khushboo

    In the source code you will have this in comment right, use the "#EC ENHOK.

  • Hi, Dear. I purcahse my iphone 4S on of the guy, my problem is when i update any app from App store and i click update there is an e-mail address is coming which i doesnt know about the password, how can i revome the e-mail address for update our apps.

    Hi, Dear. I purcahse my iphone 4S on of the guy, my problem is when i update any app from App store and i click update there is an e-mail address is coming which i doesnt know about the password, how can i revome the e-mail address for update our apps.

    Yes. Delete the Apps that were not Purchased using Your Apple ID.
    But a Restore as New is the way to go.

  • What if a person no longer has access to the house in which the card itself, but iTunes recognizes my login, shows my balance, won't let me get past the "code" page?

    What if a person no longer has access to the card itself, but iTunes recognizes my login, shows my balance, won't let me get past the "code" page?

    What pops up is the page that tells me I can use my camera to take a photo - since I don't have access to the card, useless.  I am caught going round in this loop - there's that one button, no other option.  Thanks in advance. 

  • I have a ipod classic 160GB , the problem with it is that it is dead no respond at all, i even tried to do a hard reboot, i tried to connect to itunes but it did not work, if somebody has a solution please let me know! the screen on the ipod shows nothing

    I have a ipod classic 160GB , the problem with it is that it is dead no respond at all, i even tried to do a hard reboot, i tried to connect to itunes but it did not work, if somebody has a solution please let me know! the screen on the ipod shows nothing........

    This is the iPod touch forum. I will request that you post be moved to the iPod Classic forum.

  • TS3579 I found this useful because I did not know about the effect of typing in data and that you could only drag to rearrange the data.  I had typed in data before and this had caused problems but restoring defaults did not cause correct dates to show up

    I found this  (TS3579: If the wrong date or time is displayed in some apps on your Mac Learn about If the wrong date or time is displayed in some apps on your Mac) useful because I did not know about the effect of typing in data and that you could only drag to rearrange the data.  I had typed in data before and this had caused problems but restoring defaults did not cause correct dates to show up in Finder. 

    It sounds like there are a couple things going on here.  First check if you have a successful install of SQL Server, then we'll figure out the connection issues.
    Can you launch SQL Server Configuration Manager and check for SQL Server (MSSQLSERVER) if default instance or SQL Server (other name) if you've configured your instance as a named instance.  Once you find this, make sure the service is started. 
    If not started, try to start it and see if it throws an error.  If you get an error, post the error message your hitting.  If the service starts, you can then launch SSMS and try to connect.  If you have a default instance, you can use the machine
    name in the connection dialog.  Ex:  "COWBOYS" where Cowboys is the machine name.  However, if you named the SQL Server instance during install, you'll need to connect using the machine\instance format.  Ex:  COWBOYS\Romo (where Romo
    is the instance name you set during install).
    You can also look at the summary.txt file in the SQL Server setup error logs to see what happened on the most recent install.  Past install history is archived in the log folder if you need to dig those up to help troubleshoot, but the most
    recent one may help get to the bottom of it if there is an issue with setup detecting a prior instance that needs to be repaired.
    Thanks,
    Sam Lester (MSFT)
    http://blogs.msdn.com/b/samlester
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • [URXVT] Did you know about the contextual menu ?

    Hey folks,
    I've been using urxvt for some years now but just realized that if you select some text, and do a Ctrl+right click, you get a menu with things like copy to clipboard or rot13 (??).
    Did you know about this ? Is it a new feature ?
    Are there more hidden things like this ?
    I know about the Ctrl+Shift keycapture mode.
    Cheers,
    ~k

    What would you like in the documentation? Do you have specific questions about particular components? Do you want examples? What's missing from the online help at http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/components/advanced_list.html?

Maybe you are looking for

  • Problems with Vista and nano

    Nano seem to hang up my startup menu. If I unplug the ipod windows boots. When I plug it in after booting it seems OK. Itunes will not allow me to dump music from the ipod to library keeps giving me a not authorized message even though I have gone th

  • Questions: First Downloaded Video to Mac

    I have a Panasonic VDR-M30 with a mini USB port for downloading videos. It does not have a Firewire port. My PowerBook, using iMovieHD and iDVD, does not seem to recognize the camera, which is connected with a USB. 1) Is there a way to get my Mac to

  • Error creating DRAFT of sales order DTW

    Dear Experts Im facing the next issue, im trying to import a DRAFT from sales order in DTW, this DRAFT is with List of materials, but when running the import process the next error messages appears: 1470000840 - Incorrect "Qty (Inventory UoM)" in lin

  • Replace Internet Explorer Image with Site Image

    I would like to replace the IE image or any image in the address bar with the image of the website. Is this doable and if so how would I go about doing this. Thank you in advance.

  • Missing lens profiles in L4?

    Why so litthe of them so far? When will be updatet to at least L3.6 amount?