Issue in COPY function in IP

HI,
We are facing an issue in COPY function in IP. Few Time characteristics are not copying from Actual to plan cube. We have Three Actual cubes and one plan cube. We are using COPY function and changing Info provider , currency and version Characteristics.
We have tried with FOX code also but Time characteristics 0CALMONTH2, 0CALQUART1 are not getting copied, They are displaying as # but we have data in all the actual cubes. These chars in Multiprovider are mapped with all the infoprovider.
Kindly Provide your valuable inputs.
Thanks & Regards

Hi Pratyush and Cornelia,
We are not using derivations.
Following is the sample data as it is stored in actual cube
0CAlMONTH      =   1
0CALQUART1   =   1
0FISCPER          =    2006001
0FISCPER3        =    1
0FISCVARNT    =     K4
0FISCYEAR      =     2006
We have some planning sequences which get excuted through a portal based on a planning template. The planning sequences are failing as they are not getting the input parameters when we run them on portal. We ran the sequences individually through the modeller with the necessary input parameters. The actual cube data is read succesfully but the 2 time characteristic are showing # values.On trying to save the data in the plan cube we get this error "Access via Null object reference not possible.error key: RFC_ERROR_SYSTEM_FAILURE". Please suggest.
Thanks & Regards,
Saurav
Edited by: Saurav Chetry on Jun 6, 2011 4:10 PM

Similar Messages

  • Item Conversion Template Issue for Oracle Migration - Copy functionality

    Hi,
    I am working on Migration project which is from Radius ERP to Oracle 11.5.10.2.
    Currently working on Item Conversion. This Item conversion having the fileds like (ORGANIZATION_ID,SEGMENT1,DESCRIPTION,ITEM_TYPE,COST_OF_SALES_ACCOUNT,SALES_ACCOUNT,ATTRIBUTE_CATEGORY,ATTRIBUTE1,ATTRIBUTE2,ATTRIBUTE3,ATTRIBUTE4,ATTRIBUTE5,ATTRIBUTE6,ATTRIBUTE7,ATTRIBUTE8,ATTRIBUTE9,ATTRIBUTE10,ATTRIBUTE11,ATTRIBUTE12,ATTRIBUTE13,ATTRIBUTE14,ATTRIBUTE15,GLOBAL_ATTRIBUTE10,REF_INVENTORY_ITEM_ID,REF_ORGANIZATION_ID).
    I have validated those fields and loaded into interfacing to Oracle Successfully in the master Org and Validated through Frontend.
    when I close the form, I will be receiving the below warning message and telling that Template id needs to be assign to the item before assigning item to the Org. The message is showing like
    "*You have not applied a template to this item, please apply a template before assigning this item to an ORG.*"
    Please find the below package which I wrote for this conversion requirement.
    The customer is saying like need to achieve the copy functionality based on the "REF_INVENTORY_ITEM_ID and REF_ORGANIZATION_ID".
    The Issue is am not able to handle the copy functionality and getting above message. kindly refer the package and suggest me where i am doing the mistake. Its high priority issue for me.
    Thanks in advance.
    CREATE OR REPLACE PACKAGE APPS.xxxx_inv_items_conv_pkg
    AS
    PROCEDURE xxx_item_conversion_proc (
    errbuf OUT VARCHAR2,
    retcode OUT VARCHAR2,
    p_org_id IN NUMBER,
    -- p_commit_point IN NUMBER,
    p_load_code IN VARCHAR2
    IS
    <<Local Variables Declaration>> <<For space limit deleted these variables>>
    CURSOR cur_item_master (pc_org_code VARCHAR2)
    IS
    SELECT itemstg.*
    FROM xxx_inv_system_items_stg itemstg
    WHERE itemstg.organization_id = pc_org_code
    AND itemstg.status_flag IS NULL;
    CURSOR cur_item_master_dup (pc_org_code VARCHAR2)
    IS
    SELECT itemstg.segment1, itemstg.organization_id
    FROM xxx_inv_system_items_stg itemstg
    WHERE itemstg.ROWID <
    (SELECT MAX (b.ROWID)
    FROM xxx_inv_system_items_stg b
    WHERE b.segment1 = itemstg.segment1
    AND b.organization_id = itemstg.organization_id
    AND b.organization_id = pc_org_code
    AND itemstg.status_flag IS NULL
    AND b.status_flag IS NULL);
    BEGIN
    IF p_load_code = 'Insert'
    THEN
    l_transaction_type := 'CREATE'; -- Default Value in I/F Table
    ELSIF p_load_code = 'Update'
    THEN
    l_transaction_type := 'UPDATE'; -- Default Value in I/F Table
    END IF;
    DBMS_OUTPUT.put_line ( 'Validation Starts At :'
    || TO_CHAR (SYSDATE, 'DD-MON-YYYY HH24:MI:SS')
    --Checking for Duplicate Records items
    BEGIN
    UPDATE xxx_inv_system_items_stg a
    SET a.status_flag = 'E',
    a.error_message = 'Duplicate Record'
    WHERE a.ROWID >
    ANY (SELECT b.ROWID
    FROM xxx_inv_system_items_stg b
    WHERE a.segment1 = b.segment1
    AND a.organization_id = b.organization_id)
    AND a.organization_id = p_org_id
    AND a.status_flag IS NULL;
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line ('Exception in updating duplicates'
    || SQLERRM
    END;
    DBMS_OUTPUT.put_line ('CheckPoint: Duplicate Record');
    BEGIN
    SELECT organization_id
    INTO l_organization_id
    FROM org_organization_definitions
    WHERE organization_id = p_org_id;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    DBMS_OUTPUT.PUT_LINE(p_org_id||' Org Does Not Exist');
    -- p_retcode := '2';
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.PUT_LINE('Exception in Getting Org Id'||'Cannot Proceed');
    -- p_retcode := '2';
    END ;
    DBMS_OUTPUT.put_line ('CheckPoint: Orgcode' || l_organization_id);
    /* IF p_retcode = '2'
    THEN
    RETURN;
    END IF;*/
    --Block             : Setting Master and Validation Orgs Flags
    BEGIN
    SELECT DECODE (master_organization_id, l_organization_id, 'Y', 'N'),
    master_organization_id
    INTO l_master_org,
    l_master_org_id
    FROM mtl_parameters
    WHERE organization_id = l_organization_id;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_master_org := 'N';
    l_master_org_id := NULL;
    DBMS_OUTPUT.PUT_LINE(p_org_id||' Org Does Not Exist');
    END ;
    DBMS_OUTPUT.put_line ('master_organization_id');
    SELECT fnd_profile.VALUE ('USER_ID')
    INTO l_user_id
    FROM DUAL;
    -- Block : Set the SET_PROCESS_ID
    l_set_process_id := l_organization_id;
    l_insert_count := 0;
    LOOP
    BEGIN
    SELECT COUNT (segment1)
    INTO l_insert_count
    FROM mtl_system_items_interface
    WHERE set_process_id = l_set_process_id
    AND transaction_type = l_transaction_type
    AND process_flag = 1;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_insert_count := 0;
    END;
    EXIT WHEN l_insert_count = 0;
    l_set_process_id := l_set_process_id + 10;
    END LOOP;
    DBMS_OUTPUT.put_line ('SET PROCESS ID -l_insert_count ' || l_insert_count);
    IF p_load_code = 'Insert'
    THEN
    BEGIN
    FOR recitem_data IN cur_item_master_dup (p_org_id)
    LOOP
    UPDATE xxx_inv_system_items_stg
    SET status_flag = l_processed_flag,
    error_message = l_error_message
    WHERE segment1 = recitem_data.segment1
    AND organization_id = recitem_data.organization_id
    AND status_flag IS NULL;
    COMMIT;
    END LOOP;
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line ( 'Update of Duplicates Failed : '
    || SQLCODE
    || '--'
    || SQLERRM
    END ;
    END IF;
    FOR recitem_data IN cur_item_master (p_org_id)
    LOOP
    <<Local Variables Declaration>> <<For space limit deleted these variables>>
    IF p_load_code = 'Update'
    THEN
    l_error_message := 'Update Mode' || l_error_delimiter;
    END IF;
    --l_count := -1;
    BEGIN
    DBMS_OUTPUT.put_line ('CheckPoint: ItemValidationStart');
    SELECT DISTINCT inventory_item_id,
    restrict_subinventories_code,
    restrict_locators_code
    INTO l_inventory_item_id,
    l_restrict_subinventories_code,
    l_restrict_locators_code
    FROM apps.mtl_system_items_b msi
    WHERE msi.organization_id = l_organization_id
    AND msi.segment1 = UPPER (recitem_data.segment1);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_count := 0;
    -- l_processed_flag := 'F';
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP' || l_inventory_item_id||'-'||l_processed_flag);
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP' || l_inventory_item_id||'-'||recitem_data.ref_inventory_item_id);
    WHEN OTHERS
    THEN
    l_count := -1;
    -- l_processed_flag := 'F';
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP' || l_inventory_item_id||'-'||l_processed_flag);
    END ;
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP'||recitem_data.ref_inventory_item_id);
    IF l_count = -1
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Exception - Checking Item already Present'
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('Exception - Checking Item already Present'||l_processed_flag);
    ELSIF (l_count > 0 AND p_load_code = 'Insert')
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Item Already Exists In '
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('Exception - Checking Item already Present1'||l_processed_flag);
    ELSIF (l_count = 0 AND p_load_code = 'Update')
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Item Not Present In '
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('Exception - Checking Item already Present2'||l_processed_flag);
    END IF;
    BEGIN
    SELECT count(*)
    INTO l_seg_count
    FROM apps.mtl_system_items_b msi
    WHERE msi.organization_id = l_organization_id
    AND msi.segment1 = UPPER (recitem_data.segment1);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_seg_count := 0;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Item Not Present In Oracle'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('inventory_item_id - l_seg_count ' ||l_seg_count||'-'||l_processed_flag );
    WHEN OTHERS
    THEN
    l_seg_count := -1;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Item Not Present In Oracle'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    END ;
    IF p_load_code = 'Insert'
    THEN
    IF l_organization_id != l_master_org_id
    THEN
    BEGIN
    SELECT COUNT (1)
    INTO l_org_item_count
    FROM apps.mtl_system_items_b msi
    WHERE msi.organization_id = l_master_org_id
    AND msi.segment1 = UPPER (recitem_data.segment1);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_org_item_count := 0;
    DBMS_OUTPUT.put_line ('l_org_item_count ' ||l_org_item_count||'-'||l_processed_flag );
    WHEN OTHERS
    THEN
    l_org_item_count := -1;
    END ;
    IF l_org_item_count = -1
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Exception - Checking Item in Master '
    || l_error_delimiter;
    ELSIF l_org_item_count = 0
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Item Does Not Exist in Master '
    || l_error_delimiter;
    END IF;
    END IF;
    END IF;
    DBMS_OUTPUT.put_line ( 'CheckPoint: Iteminmasterorg'
    || l_org_item_count
    IF (recitem_data.description IS NULL AND p_load_code = 'Insert')
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message || 'Description is NULL' || l_error_delimiter;
    END IF;
    IF (recitem_data.sales_account IS NOT NULL)
    THEN
    BEGIN
    SELECT code_combination_id
    INTO l_sales_account
    FROM gl_code_combinations_kfv
    WHERE code_combination_id= recitem_data.sales_account;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    -- l_processed_flag := 'F'; --QUESTION
    l_error_message :=
    l_error_message
    || 'Sales Account Not Setup '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'CheckPoint: Salesacct_Validation'
    || l_sales_account||'-'||l_processed_flag
    WHEN OTHERS
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Sales Account Exception '
    || SQLERRM
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'CheckPoint: Salesacct_Validation'
    || l_sales_account||'-'||l_processed_flag
    END ;
    END IF;
    IF (recitem_data.cost_of_sales_account IS NOT NULL)
    THEN
    BEGIN
    SELECT code_combination_id
    INTO l_cost_of_sales_account
    FROM gl_code_combinations_kfv
    WHERE code_combination_id =
    recitem_data.cost_of_sales_account;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'COGS Account Not Setup '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'l_cost_of_sales_account'
    || l_cost_of_sales_account||'-'||l_processed_flag
    WHEN OTHERS
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'COGS Account Exception '
    || SQLERRM
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'l_cost_of_sales_account'
    || l_cost_of_sales_account||'-'||l_processed_flag
    END check_cogs_account;
    END IF;
    BEGIN
    select distinct organization_code
    into l_ref_org_code
    from org_organization_definitions
    where organization_id = recitem_data.ref_organization_id ;
    EXCEPTION
    WHEN OTHERS THEN
    l_ref_org_code:= NULL;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Reference Org Not Present'
    || p_org_id
    || ' Organization '
    || l_error_delimiter ;
    DBMS_OUTPUT.put_line ('l_ref_org_code'|| l_ref_org_code||'-'||l_processed_flag);
    END;
    BEGIN
    select concatenated_segments
    into l_ref_inventory_item_code
    from mtl_system_items_kfv
    where inventory_item_id = recitem_data.ref_inventory_item_id
    and organization_id = recitem_data.ref_organization_id ;
    EXCEPTION
    WHEN OTHERS THEN
    l_ref_inventory_item_code :=NULL;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Reference Item Not Present'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('l_ref_inventory_item_code'|| l_ref_inventory_item_code||'-'||l_processed_flag);
    END;
    IF (l_master_org = 'N' AND p_load_code = 'Insert')
    THEN
    BEGIN
    SELECT count(*)
    INTO l_description_count
    FROM mtl_system_items_tl
    WHERE organization_id = l_master_org_id
    AND inventory_item_id =
    (SELECT inventory_item_id
    FROM mtl_system_items_b
    WHERE organization_id = l_master_org_id
    AND segment1 = recitem_data.segment1);
    END ;
    IF l_description_count > 0 THEN
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Item Description Not Present'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    END IF;
    END IF;
    IF l_processed_flag = 'S'
    THEN
    BEGIN
    INSERT INTO mtl_system_items_interface
    (organization_id,
    segment1,
    description,
    ITEM_TYPE,
    COST_OF_SALES_ACCOUNT,
    SALES_ACCOUNT,
    attribute_category,
    set_process_id,
    transaction_type,
    process_flag,
    copy_organization_code,
    copy_item_number,
    creation_date,
    created_by,
    last_updated_by,
    last_update_date
    --attribute_category
    , attribute1
    , attribute2
    ,attribute3
    ,attribute4
    ,attribute5
    ,attribute6
    ,attribute7
    ,attribute8
    ,attribute9
    ,attribute10
    ,attribute11
    ,attribute12
    ,attribute13
    ,attribute14
    ,attribute15
    ,global_attribute10
    VALUES (l_organization_id,
    recitem_data.segment1,
    recitem_data.description,
    recitem_data.ITEM_TYPE,
    recitem_data.COST_OF_SALES_ACCOUNT,
    recitem_data.SALES_ACCOUNT,
    recitem_data.ATTRIBUTE_CATEGORY,
    l_set_process_id,
    l_transaction_type, --,l_transaction_type
    l_process_flag,
    l_ref_org_code,
    l_ref_inventory_item_code,
    SYSDATE, l_user_id,
    l_user_id, SYSDATE
    -- l_attribute_category
    ,recitem_data.attribute1
    ,recitem_data.attribute2
    ,recitem_data.attribute3
    ,recitem_data.attribute4
    ,recitem_data.attribute5
    ,recitem_data.attribute6
    ,recitem_data.attribute7
    , recitem_data.attribute8
    ,recitem_data.attribute9
    , recitem_data.attribute10
    ,recitem_data.attribute11
    ,recitem_data.attribute12
    ,recitem_data.attribute13
    ,recitem_data.attribute14
    ,recitem_data.attribute15
    , substr(recitem_data.global_attribute10,1,length(recitem_data.global_attribute10)-1) --recitem_data.global_attribute10
    l_insert_count := l_insert_count + 1;
    /* IF (l_insert_count = NVL (p_commit_point, 10000))
    THEN
    -- l_set_process_id := l_set_process_id + 10; -- REVERT BACK CHANGE
    l_insert_count := 0;
    END IF;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Error in Inserting Item '
    || SQLERRM
    || l_error_delimiter;
    END ;
    COMMIT;
    DBMS_OUTPUT.put_line ('CheckPoint: Insertion Completed in Intfacetable');
    END IF;
    BEGIN
    UPDATE xxx_inv_system_items_stg
    SET status_flag = l_processed_flag,
    error_message = l_error_message
    WHERE segment1 = recitem_data.segment1
    AND organization_id = recitem_data.organization_id
    AND status_flag IS NULL;
    COMMIT;
    DBMS_OUTPUT.put_line ('Error Message'||l_error_message);
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line (fnd_file.LOG,
    'Error:Updating Item:'
    || SQLCODE
    || '-'
    || SQLERRM
    END;
    END LOOP; --FOR recitem_data IN cur_item_master
    DBMS_OUTPUT.put_line ( 'Validation Ends At :'
    || TO_CHAR (SYSDATE, 'DD-MON-YYYY HH24:MI:SS')
    DBMS_OUTPUT.put_line ('Number of records inserted into Table Successfully -->'|| l_insert_count);
    END;
    END xxxx_inv_items_conv_pkg;
    Edited by: 896170 on Apr 12, 2013 11:58 PM

    Issue got solved... changed the PO line amount as:
    <?xdoxslt:set_variable($_XDOCTX,'line_amt',xdoxslt:to_number(LINE_AMOUNT))?>
    Reference :Syntax for 'to_number'
    Regards
    Manikanta Panigrahi

  • Copy functionality which did not copy Long Text values causing us an issue

    Two new Master Recipes created in Bathurst by using copy functionality in transaction C201 contained SRC value errors believed to be caused by changes in the copy
    functionality which did not copy Long Text values causing us an issue when creating Process Orders.   Current workaround is to manually edit the
    value fields and re-save the MRs, the issue is then resolved.

    This will resolve the issue
    SAP Note 1452700 - "New" button is disabled after
    displaying text
    Note Language: English Version: 1 Validity: Valid Since 03/25/2010
    Summary
    Symptom
    In display mode you navigate via the text hyperlink to the text view.
    When you navigate back, the "New" button on the "Notes" assignment block is
    disabled.

  • Copy function issue.

    Hi,
    In my actual cubes, i have data for the 12 months ie from 01.2006 to 12.2006,
    I created copy planning function and in characteristcs usuage "Create Row"
    From change----T0 Change
    1. Calyear--2006--
    2007
    2. Calmonth--01.2006 to 03.2006--
    01.2007 to 03.2007
    3. Vtype--10--
    20
    4. Version--0--
    1
    5. Infopro--Actual--
    Plan
    When i execute the copy function. I am getting the value No of rows *3
    ie.
    2007-01.2007----
    $1000 (Actual Jan value)
    2007-01.2007----
    $1500 (Actual Feb value)
    2007-01.2007----
    $3900 (Actual March value)
    2007-02.2007----
    $1000 (Actual Jan value)
    2007-02.2007----
    $1500 (Actual Feb value)
    2007-02.2007----
    $3900 (Actual March value)
    2007-03.2007----
    $1000 (Actual Jan value)
    2007-03.2007----
    $1500 (Actual Feb value)
    2007-03.2007----
    $3900 (Actual March value)
    I was expecting only one line for each row from actual to plan cube
    2007-01.2007----
    $1000 (Actual Jan value)
    2007-02.2007----
    $1500 (Actual Feb value)
    2007-03.2007----
    $3900 (Actual March value)
    How does the system perform the copy function. Is it not row by row as per the result. Can anyone explain me how it calculates?
    Thanks
    Annie
    02.2006----

    Hi.
    It is expected result if you use range in Calmonth.
    You have to map one-to-one if you want correct result.
    Just add 2 additional rows in copy function for Calmonth (in toal you should have 3 rows for Calmonth) and in each row map monthes accordingly (01.2006 to 01.2007 etc).
    Regards.

  • M276nw Copy Function Corrupt Output / lines

    HP LaserJet Pro 200 color MFP M276nw
    Model: CF145A
    Issue is when I go to copy, the printer is in a power saving sleep state, I wake it up by pressing a touch screen, and I copy and the copy is corrupt.  Now I can fix this by doing a complete power cycle but that really is stupid to have to do every  time I need to use it.  This is a repeating problem and happens on copy functions and I did copy and save to flash as PDF right now to show issue "see picture".  So if this could get reported to the support area that does firmware fixes that be great.  Again I can temporarily get it to work properly by doing a complete power cycle but as soon as it goes to sleep and is idle for an extended period and is used again the problem is still occurs.
      Can this get fixed in firmware please.

    Hi,
    Is the printer directly connected to the power source or may connected through any power strip, extention or a surge protector?
    If it is not directly connected, plug the product directly into the wall socket and check for any difference.
    Please let me know the results,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Preserving Current Owner file permissions using the copy function

    I've been trying to use ARD 3's Copy function to overwrite a single user's Home folder in a classroom environment made up of a few Macs.
    This is done with the aim of refreshing the Home folder every time a class is concluded.
    However, although the Copy function works and succeeds in overwriting the Home folder, when the client is logged in locally, all the applications suffer from permission issues.
    I've tried both the; Inherit from destination folder and; (ii) Preseve current owner, file permissions in the "Set item ownership to" option of the Copy window but neither appear to work.
    I've also attempted to mirror the target user's account by creating the same account on the admin machine to push the Home folder over but the permissions remain a mess later.
    Is there a way to get around this without having to implement lengthy UNIX commands?
    I know of the existence of remote management apps, e.g. Deep Freeze (http://www.faronics.com/html/DFMac.asp), but under a budget constraint, such options are undesirable at the moment.
    PowerBook G4   Mac OS X (10.4.3)  

    Drag the photo from the iPhoto window to the desktop or export as kind = JPEG
    As to too small - what is too small?  The pixel dimensions of the exported JPEG will be identical to the original TIFF - the file size is smaller because JPEGs are compressed - which of course reduces file size - which of course is the reason that JPEG exists
    LN

  • Copy function results in Error 1430 when the target path terminal is &ltNot A Path

    Hello all.
    I'm having a little bit of trouble with the Copy function under LabView 8.2.  If I wire <Not A File> to the target path terminal, I get an Error 1430 (The path is empty or relative.) from the Copy File function's error out terminal.  According the the manual, wiring <Not a File> to the target path terminal should cause the Copy function to display a dialog box prompting the user to select a file.
    I've attached a sample VI which demonstrates this issue.  Is the documentation for the Copy function incorrect, or is something I'm doing wrong in my VI causing the error?
    Thanks,
    Mark Moss
    Attachments:
    copy.vi ‏16 KB

    Hi Mark,
    Thanks for bring this to our attention. I believe the documentation is incorrect here, as you suggested. When nothing is wired to the target path terminal, it behaves as expected (prompting the user to select a target directory).
    I will look into this further and report this issue to our LabVIEW documentation team.
    Sam
    -Sam F, DAQ Marketing Manager
    Learn about measuring temperature
    Learn how to take voltage measurements
    Learn how to measure current

  • Running copy functions in the background

    Hello,
      Does anyone know how to run copy functions in the background?  I am having an issue because you have to save after the CF are done..  How can you do this in the background?
    Thanks,

    Hi Matthew,
    You can use program UPC_PLANFUNCTION_EXECUTE to execute planning function.
    Also take a look at Function modules
    UPC_FUNCEXEC
    UPC_FUNCEXEC_COMMIT
    Hope it helps.
    Cheers
    Anurag

  • Apps don't launch or work after Copy Function

    Howdy,
    I'm having another issue with ARD 3.
    I've just rolled out StuffIt Expander 11 to all my Tiger Clients via ARD's Copy Function. The copy function works fine and it does copy the app to the destination, which is the Applications Folder.
    The app launches on the client machine but if I drop an archive to expand, the app [StuffIt] does nothing. It accepts the focus that a file drop is about to occur. But it doesn't expand nor error.
    If I copy the file locally on the client machine itself from the vendor's dmg file. The app runs the way it should. StuffIt Expander 11 dmg's is a 'Copy to App' installer as opposed to a pkg or Vise Installer.
    I'm assuming this is clearly a owner/group rwx issue.
    I checked using ls -l and BatChmod for permissions. All seem to be the same, Target and Source.
    Is the Copy funtion only limited to Apple Branded apps, such as the misleading Installer Function in ARD?
    Anyone else?
    Motshakeran

    Me again.
    Ok this is not solved. But managed to find a work around.
    I found a great app called Iceberg, which I find better than Apple's Package Maker.
    What I did was manually install a good working StuffIt Expander 11.app onto a mac and verified that it work. Then, I created a .pkg file using Iceberg and installed via ARD's Install Function ... and viola.. StuffIt Expander 11 works as it should to.
    So clearly, this is a bug with ARD's Copy Function. I think, imho, the Copy Function fracks up something when it does copy. Maybe it's good with only single documents.
    Anyone else.
    Q'pla!

  • Need Help Troubleshooting Copy Function

    When I try to copy a page using the flatbed scanner, the printer will scan the page and act like it's going to perform the copy.  However, after about 20 seconds, the printer spits out a blank page and on the touchscreen, it says "Printing canceled."  (I did NOT touch anything on the printer to cancel the Copy request.)  After that, the printer never recovers, i.e. it hangs on the "printing canceled" message.  I end up powering the printer off, waiting a few seconds, powering it back on, and trying to copy the page again.  Thankfully, the copy function performs as expected, no problem.
    This process occurs every time I try to copy something, and I think it's silly to believe that I need to power my printer off then turn it back on every time I want to copy something.  My settings are very simple: Make one copy, 1-to-1 sided, black ink.
    Any help in trying to figure out why my printer does this, or how to make it work properly on the first attempt, would be appreciated.

    Hello mamacgl,
    Welcome to the HP Forums.
    I see that you are having some copy issues.
    I have seen this issue in the past and I was able to get it resolved by doing one simple step.
    Please make sure that you have the printer power cable connected directly to a wall outlet and not a power bar/strip. Here is a document that uses a LaserJet printer as an example but it is meant for HP products in general. Please click on the following link that explains the Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector.
    Once the printer is powered back on, use the on/off button to do a proper power cycle.  This will do a semi power reset on the printer.
    Try another copy and let me know if you still have issues or if you have any other questions, feel free to ask.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Any solutions to Apple's poor file copy function

    For many years Apple's OS - all versions on all computers does not have the intelligence to copy files from drive to drive.  Does anyone know of a different software program that can help the Apple OS do this simple task?
    A little more info - I have never been able to get any Apple product - all the way back to System 7 to be able to copy files unattended.  The latest annoying problem comes from a need to move files from my Thunderbolt 1 TB SSD drive to an attached Toshiba 2TB drive.  I have a folder with about 1500 photos that I need to move from the SSD to the Toshiba drive to clear up space on my SSD drive.  I am using my MB Pro with OS 10.9.5 with 16 GB ram and a 1 TB internal SSD drive and it does not matter if I select 5 files or 500 files, it never gets more than 20 files into the copy and then very stupidly thinks some random file is in use.  No Apple OS has the intelligence to think that if this one file can't be copied at this time, that it should continue the copy operation.  The copy process shuts down then I have to look file by file to see which files it did successfully copy.  Then delete the files on the drive and select another 50 files and get another 4 or 5 copied and then do it again and again and again and again, etc... 
    I have the same problem using my Mac Pro workstation with 32 GB ram, the same problem on all 4 of my MbPro notebooks.  The problem is 100% within Apple's OS.  Obviously none of the files are ever in use.  Also, rebooting the computer does not change the situation.  Problem has existed since my PowerMac 8100/80.  It would be nice to see Apple address this problem or someone else write a basic file copy program that works.
    Thanks
    George

    Mark
    Appreciate your observations but there are a couple of issues at point
    #1 - The OS incorrectly thinks a file is in use when it is not.  It does not matter if I select and copy or drag and drop.  Minutes later the same file will usually copy.  Does not matter if it is an image from the iphone or a word doc or excel file or a video file.
    #2 - The OS is incapable of continuing a copy function when it has incorrectly told itself that a file is in use.  A superior file copy function would flag the error and continue copying.  No idea why Apple has not fixed this about a decade ago.  It has to be deeply embedded in their system software.
    The issue is the same if it is with an original Mac Pro copying between internal hard drives or involving external hard drives or a NAS drive.  It has plagued me for a very long time.  As I find hard drives that I want to move everything off of so I can reformat or replace I have to go through this painful ordeal which involves initiating the copy function hundreds of times.  I have almost finished copying 657 photos that were copied from my iPhone to the SSD drive and I wanted to get them off the SSD drive.  It took several hours yesterday and I have been at it for about 4 hours tonight.  It sure seems like it should be as easy as dragging the folder from one drive to the other and it would be if there was some way to disable that stupid "file in use" error in the Apple OS.
    Thanks
    George

  • Missing COPY functions on E90

    I have been using communicators since Nokia came out with them. The 9500 was by far the best communicator I have used (including E90).
    One of the major feature missing in E90 (besides range of others) is missing contextual COPY and PASTE functions. For example you cannot copy off a text from a incoming SMS. You have to take into forward or reply mode if you want to copy the text using CRTL-C or copy from options. This copy function is missing on other different sections of the software which used to be there in 9500 like - call log, contacts etc.
    Similarly, missing paste is annoying. Specially, it is impossible to dial a number from the clipboard memory. You have to take a last dialled number - use number - edit, erase the old number and do ctrl-v to paste the number.
    I think there was a lot of shortsightedness in designing the communicator software. Its the same S60 that is in all other Nokia. Just with bigger screen and keyboard. Not the communicator I am used to.
    Thanks

    hi, I have already posted an issue like this, but here is my opinion.
    I agree that a communicator with a S60 as less potencial than a S80, but I think is more reliable.
    Don´t underestimate the power of this 1st S60 communicator.
    I will present a list of new features comparisson with 9500
    - Full S60 user interface for inner and outer UI
    - GSM QUADBAND (850/900/1800/1900) and WCDMA HSDPA
    - Thinner, from 22 mm to 20 mm.
    - premium design, Extensive use of metal.
    - Bigger outer display with improved readability (240x360)
    - Higher inner display resolution (800 x 352)
    - Full S60 user interface for inner and outer UI
    - Vibra alert and inner keyboard lights
    - Improved audio quality
    - Integrated GPS, Maps application
    - Video telephony, with 2nd camera
    - 3.2 Mpix camera with autofocus
    - Mini-USB connector (USB 2.0 compatible)
    - QuickOffice editors & viewers
    - Micro SD memory card
    - Push to talk
    - FM radio
    - SIP VoIP 2.1 SSL layer supported between device and
    server for Voip calls.
    - Symbian OS release with platform security

  • Error with a copy function after upgrading to patch 18 on the server

    Hi experts,
    I had the following error when I try to execute with trace in RSPLAN a copy function that was right and functioning over a workbook before upgrading to patch 18 in the server:
    'Char. value of 0COSTELMNT  does not correspond to value of block char. 623004'
    The functions seems to be right also when I check the values but the error message is still there and over the workbook Copy function button.
    Thanks,
    Diego

    Technically, Oracle supports Oracle XE through that forum. At least that was the policy as I knew it a while ago.
    With installation issues for XE and the like it's probably better to just post it there. Obviously a grey area and you may well get a hit or two here, but I think you should post these kinds of questions on the XE forum.
    When it comes to Apex development questions you can definitely post them here. I know, I know, it really is a pain! But you want to post where you have the best chance of getting good help.
    Earl

  • Copy functionality

    I have a tabbed layout page which contains several VOs which all contain information related to 1 "object". There is now a request for a COPY functionality, where the user can click a button and a new copy of this "object" is made (including the information in each of the VOs). This copy will need a new ID (PK) value generated and this new ID will need to be updated on all records in each VO.
    What is the best way to achieve this? Would it be to call a PL/SQL package in the background to make the copy for me, and then re-query it in the application - or should the copy be done programatically?
    Thanks in advance

    This works OK but I have 1 issue.
    Is it possible to chose commit/non commit the previous record before the new record shows up?
    I have scenario where I query for existing record and make changes and then when I click button to create duplicate record, system does not ask whether I should save it before new record is shown. When I save new record, old 1 gets saved as well which I dont want to happen.
    I want the system to ask if changes need to be saved for current record before new record is shown.
    Any help?

  • File.copyTo - issues with copied Flash10 Project .app

    I'm currently working on a project which has functionality to export a selected number of slides to a Folder, complete with a Flash 10 .exe or .app to play the files with.
    I've been running into a major issue with copying the .app. Once the presentation has been exported from the Installed AIR app, the .app projector file will not open, it attempts to open and immediately closes again.
    Funnily enough, it works perfectly when outputting from the Flash IDE (coding in flex) in the debugger, the .app file is copied fine and it works perfectly. It's only when attempting from the installed AIR app.
    The code I have is:
    var originala:File = File.applicationDirectory.resolvePath(_app);
    var appX = "Presenter.app";
    var copya:File = file.resolvePath(dir+appX);
    originala.copyTo(copya);
    _trace.add("[FILE SYSTEM] Copy of Presenter.app is Package: " + copya.isPackage + ", if false, Projector will not work!");
    I originally thought it wasnt copying over the .app directory as a package, but it seems to, so that was the reason for the trace.
    I've even bought a copy of CS5 to see if the issue is resolved with the AIR 2.0 RC, it's downloading now.
    I have no idea why this isn't working and I am on a tight deadline.
    Any one got any ideas?
    Thanks.
    Joe K

    OK, I really need help with this...
    I have included a .zip (link below) which has a small test bed AIR app including all source...
    When running installed AIR app (Copy doesn't work):
    isDebugger: false
    playerType: Desktop
    version: MAC 10,1,53,64
    When previewing from .fla in Flash IDE (Copy does work):
    isDebugger: true
    playerType: Desktop
    version: MAC 10,0,12,36
    Please please please help!
    http://rapidshare.com/files/397795116/Copy_Tester.zip.html
    [EDIT] So it looks like I just can't copy from the applicationDirectory. But I dont want to have to include extra files with the installer I wanted to include it in the installer. Is there any way for me to do this?
    [EDIT 2] I have tried a extracting a .zip included in the package with FZip and ZipLib, both produce the same results, the .app doesnt work.

Maybe you are looking for

  • How to edit the setup.ini file of the Adobe Reader X MUI?

    Hi everyone. I discovered today that is is possible to edit the setup.ini file of the Adobe Reader X MUI  10.1  installer (multilingual)  in order to customize the installation. I stil have some questions about this. 1. I would like to make a custom

  • Recovering Music After Wiping The Hard-Drive

    I just recently had to do a full system restore on my comp. All the songs I had bought from itunes was deleted in the process. I can access my purchase history though itunes and was wondering if there was anyway to get them back.

  • Any other US based BB users not receiving mails as of 12pm this afternoon?

    Despite receiving loads of emails to my laptop, nothing seems to have pushed through to my device (from my work or personal emails) since about noon today. Is anyone else seeing the same thing? What is up?

  • DW CS3 Loses Server Behavior

    I have set up the PHP tutorial from http://www.adobe.com/devnet/dreamweaver/articles/setting_up_php.html. Site definitions are setup as per instruction, however, when opening the send.php or view.php pages, the server behavior is lost in the applicat

  • IWorks Pages says I can bookmark, but it is not allowing me to do so.

    I am a new user of iMac and iWorks. I like the software a lot, but when going through the process of adding bookmarks to my pages document, the option to do so (+ and - buttons) stay greyed out. I followed the instructions in the help section exactly