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

Similar Messages

  • 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.

  • Why is it that when I text pictures, the recipient does not receive them.  I've noticed that I have a camera roll which is where I choose pics from, but nothing in Photo Stream.  Can someone please let me know what the issue might be?  Thank you!

    Why is it that when I text pictures, the recipient does not receive them.  I've noticed that I have a camera roll which is where I choose pics from, but nothing in Photo Stream.  Can someone please let me know what the issue might be?  Thank you!

    Some phones can only send and recieve SMS messages. If the recipients phone doesn't support MMS they won't be able to recieve a text with a photo.
    To get your photos in Photo Stream, you'll need to setup iCloud. Check out this Apple article for more info -> iCloud: Photo Stream FAQ

  • 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

  • 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 whether the new Firefox 7 is compatible with Google Toolbar

    When I tried to download and install the previous version of Firefox (I think it was Firefox 5) on my laptop, the Google Toolbar disappeared.
    The above happened when the installation was finished !
    Thanking you and awaiting your answer.

    Google has ended support for the Google Toolbar in Firefox 5.
    * http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html
    Toolbar not available for Firefox 5 or newer versions:
    * http://www.google.com/support/toolbar/bin/answer.py?answer=1342452&topic=15356
    * http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars

  • Could you please let us know on the following?

    On what type of applications , when we use multifox addon the message appears
    issue " This page may not appear with a multifox profile because it uses a feature not supported (indexed DB)"

    IndexedDB is another way to store data locally apart from cookies.
    *https://developer.mozilla.org/en/IndexedDB/Basic_Concepts_Behind_IndexedDB
    *https://developer.mozilla.org/en/IndexedDB/Using_IndexedDB
    *https://developer.mozilla.org/DOM/Storage

  • Please let me know how to Count Number of completed line items in past 6 mo

    How to Count Number of completed line items in past 6 months / 12 months ?
    Hi,
    I am trying to count "Number of Completed Line Items in Purchase Order Document" for my Key Figure ZPO_CNT.
    Purchase Order document = ZEBELN
    Line Item = ZEBELP.
    I need to find and count if the Line Item has been received in the past 6 months from today and similarly in the past 12 months.
    I have "Delivery Completed" field, ELIKZ.
    So, based on this would I be able to calculate it in Query Designer?
    If so, Please let me know how
    Krishna

    Hi Experts,
    I dont have a defined Restricted key figure yet.
    I have populated 0COMPL_DEL(Delivery Completed Indicator)  and 0EBELN (Purchasing Document Number) and 0EBELP (Line Item Number in Purchasing Document) .
    This is what I think how I need to calculate:
    Number of completed line items in past 6 months:
    If  Delilvery Completed Indicator (0COMPL_DEL) = x, calculate No. of Line Items (ZPO_CNT) from 0CALDAY to 6 months
    and
    Number of completed line items in past 12 months:
    If  Delilvery Completed Indicator (0COMPL_DEL) = x, calculate No. of Line Items (ZPO_CNT) from 0CALDAY to 12 months
    Please let me know if the logic is correct. If so, how I can create this in report

  • Dear Guru's Please let me know the T.code's for the fallowing

    Dear Guru's,
    Please let me know the transation codes to see
    List of Open sales orders based on the delivery block (other than VA05)
    List of invoices not yet realesed to account.
    List of Invoices which are not cleared(for which f-32 not happend)
    List of deliveries for which PGI happed not invoiced.
    Regards,
    Madhu
    Highly rewarded

    Dear Madhu,
    List of Open sales orders based on the delivery block (other than VA05) - VA14L
    List of invoices not yet realesed to account. - VFX3
    List of Invoices which are not cleared(for which f-32 not happend) - FBL5N (Billing Type - BL against which Collection Doc. DZ is not found)
    List of deliveries for which PGI happed not invoiced. - VF04 (not sure, as this is billing due list; and it may contain delivery doc. w/o PGI. Just check)
    Please check with VL06F. Here, under Tab: Status: Outb. Delivs, there is field: Billing status
    Maintain entry in to this field as "A - Not yet Processed"
    Best Regards,
    Amit

  • HT204051 I'm unable to connect my iphone 5s to the Dlink router. I tried all the apple support suggestions. But doesn't work. Please let me know.

    I'm unable to connect my iphone 5s to the Dlink router. I tried all the apple support suggestions. But doesn't work. Please let me know.

    I'm having this problem now with my 2 weeks old iPhone 6+. in the beginning everything going great and managed to connect every wifi around me. Then suddenly 1 week ago, All the wifi from my office, home, hotel and coffee house saying either incorrect password or can't join the wifi. But when i switch on my hotspot from my iPhone 5 it can be connect. i also try with my friend iPhone hotspot. So is it because of hardware problem or software problem. And i just restore my iPhone6+ and still can't connect to wifi and manage to join hotspot (also wifi right?) regret as all my downloaded stuff vanish and now can't download back using wifi.....
    Thanks for assisting

  • Please let me know how to display source code

    Hi everyone.
    my name is Kazuma working in Japan.
    We have a problem with SE38.
    We transport one of executives program, which made from other development system, to our system.
    When we use SE38 and display botton, we encounter short dump like below and can't see source code.
    We want to know how we change BASIS or program.
    If somebody know similar situation, please let us know.
    >>ERROR MESSAGE
    The Import dataset has been destroyed
    What happened?
    The current ABAP/4 program "SAPLLOCAL_EDT1" had to be terminated because one of the statements could not be executed
    This is probably due to an error in the ABAP/4 program
    Error analysis
    The dataset could not be imported because it was in an unexpected format
    This is usually because the dataset has been destroyed as a result of directly manipulating the IMPORT/EXPORT data by other means (such as explicitly deleting parts of the dataset with SQL commands instead of using DELETE FROM DATABASE, u2026)
    In this case, the dataset header is already invalid
    In other words: The version ID of the dataset is invalid
    System environment
    SAP Release          4.6C
    Application server          sdax31
    Operating system          SunOS
    Release                    5.8
    Hardware type          sun4us
    Database server          sdax31
    Database type          ORACLE
    Database owner          SAPR3
    SAP kernel          46D
    Patch lebel          1646
    Patch text          ""
    Information of where termination occurred
    The termination occurred in the ABAP/4 program "SAPLLOCAL_EDT1" in "GET_MODIFICATION_INFORMATION"
    The main program was "RSABAPPROGRAM"
    The termination occurred in line 143 of the source code of program "LLOCAL_EDT1U36" (when calling the editor 1430)
    Edited by: kazuma mukai on Mar 3, 2009 6:34 PM

    Welcome to SCN
    Try to
    create the same program in your DEV client , by cut & paste the code from the other envionment , this will create a transport, activate the program and transport.
    This will be roundway solution
    Do you have any previous version to this program in the version management?

  • HT3228 Please let me know how to avoid receiving the spam into my email accounts on the iPad.  It is very annoying! My server puts it in the spam folder...why do I get it on the iPad?    Is it avoidable and how?

    Please let me know how to avoid receiving the spam (from the spam folder on the server) into my email accounts on the iPad.  It is very annoying!
    My server puts it in a spam folder and I do not receive it in the Ms Outlook on my desk computer...why do I get it on the iPad?    Is it avoidable and how?b

    You actually cannot do anything to your ipad when its locked but look at pictures the time and date, you need to restore it, and if it dosent let you restore, good luck chuck Heres how to restore it: Okay, i only know the itunes way soz, lol. Try to connect your ipad to itunes, if it does let you then you should be able to select the device you have in the corner somewhere, once you do that you should see a screen that looks sort of like your ipads setting, you should have a button that says "Restore" click that and your ipad should be restored. If that dosent work you should try going to your regular office depot or something. Good Luck!

  • Hello, I have a question regarding the sharing/exporting on imovie. Whenever I click the share button all the normal options pop up, but when I actually click where I want to share it to nothing happens.  If you know what's wrong please let me know.

    Hello,  I have a question regarding the sharing on iMovie.  I have just recently purchased an Elgato Gaming Capture HD and I then finished my recording with that and put it into imovie.  I worked long and hard on the project and when I go click the share feature on iMovie all the noral options pop up and when I actually click where I want to share it to nothing at all happens.  If you know what is wrong/ what I am doing wrong please let me know.
    Thank you.
    PS:  I am using iMovie 10.0.6.

    /*line 957 error */
         public void select()
              for (count = 0; count <= p; count ++ )
                   if(P[count] != null){ /* validation */
                   m = (int)(P[count].getX());
                   n = (int)(P[count].getY());
                   if (Math.pow(-1, m + n) == 1)
                        piece[m][n].setBackground(wselect);
                   else
                        piece[m][n].setBackground(bselect);
              step = 2;
         }

  • Hey guys i got a problem connecting with itunes always giving me ox80090318 if u know the answer please let me know thx

    hey guys i got a problem connecting with itunes always giving me ox80090318 if u know the answer please let me know thx

    Hello Makiaveli,
    It sounds like you are getting this error code when you are trying to access the iTunes Store.
    I found this article with this error listed in the symptoms section, for you that should help troubleshoot the issue named:
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123
    Resolution
    The cause for these issues is a program that monitors the Winsock protocol for Windows conflicting with Apple software. These programs usually use a Layered Service Provider (LSP) that can help identify the particular program installed. The programs that monitor this protocol have a variety of purposes, including security software, content filtering, and optimization of network traffic.
    To find the LSP:
    Download Autoruns for Windows from Microsoft
    Look for Autoruns.ZIP and open the compressed folder.
    After reviewing the contents and the license, drag autoruns.exe to the desktop.
    Open Autoruns.
    Click on the tab that says Winsock Providers.
    A list of items should appear. A column showing the publisher should be available.
    For items other than Bonjour, which is from Apple, check with the publisher for updates to resolve the conflict between their software and Apple software.
    If the publisher is unfamiliar to you, you may be able to use the table below to find out more information about the origin of the modifications to Windows.
    Some of the publishers and programs that are known to have versions with a conflict are listed below:
    Product or Publisher
    LSP Name
    Bigfoot Networks / Killer Gaming
    BfLLR over [MSAFD Tcpip [TCP/IPv6]]
    Bsecure
    Bsecure  over [MSAFD Tcpip [TCP/IP]]
    Bullguard
    BGLsp over [MSAFD Tcpip [TCP/IP]]
    Bytemobile, Inc.
    BMI over [MSAFD Tcpip [TCP/IP]]
    CA / Total Defense Internet Security
    LAYERED_PROVIDER over [MSAFD Tcpip [TCP/IPv6]]
    ContentWatch / Net Nanny
    CWALSPSYS CWALSP MSAFD Tcpip [TCP/IP]
    Covenant Eyes
    Covenant Eyes Monitoring over [MSAFD Tcpip [TCP/IP]]
    Dr. Web
    DrWebSP.4 over [MSAFD Tcpip [TCP/IP]]
    Earthlink Total Access
    PropelLSP over [MSAFD Tcpip [TCP/IP]]
    Eset
    NOD32 protected [MSAFD Tcpip [TCP/IP]]
    Fourelle Venturi
    VENTURI_TP [MSAFD Tcpip [TCP/IP]]
    FoxyProxy
    FoxyProxy Service Provider over [MSAFD Tcpip [TCP/IP]]
    Hide My IP / My Privacy Tools
    My Privacy Tools - LSP over [MSAFD Tcpip [TCP/IP]]
    MegaUpload / MegaKey
    msadmid over [MSAFD Tcpip [TCP/IP]]
    Netintelligence
    NIHLSP over [MSAFD Tcpip [TCP/IP]]
    Netscape Internet Service
    SlipStream LSP over [MSAFD Tcpip [TCP/IP]]
    Netsweeper
    Liger over [MSAFD Tcpip [TCP/IP]]
    Norman/Norman Security Suite
    NLF over [MSAFD Tcpip [TCP/IP]]
    Panda AntiVirus
    PAV_LAYERED over [MSAFD Tcpip [TCP/IP]]
    PC Tools / Spyware Doctor
    PCTOOLS over [MSAFD Tcpip [TCP/IP]]
    PureSight Internet Content Filter
    Winsock over MSAFD Tcpip [TCP/IP]
    Ratajik Software StationRipper
    AVSDA over [MSAFD-Tcpip [TCP/IP]
    Safe Eyes / McAfee Family Protection
    Internet Content Filter over [MSAFD Tcpip [TCP/IP]]
    Sendori
    SendoriLSP over [MSAFD Tcpip [TCP/IP]]
    SpeedBit Video Accelerator
    SBLSP over [MSAFD Tcpip [TCP/IP]]
    TellyAbroad
    EasyHideIP over [MSAFD Tcpip [TCP/IP]]
    Trend Micro
    Trend Micro LSP over [MSAFD Tcpip [TCP/IP]]
    VMWare
    VMCI sockets DGRAM
    Wave / Embassy Trust Suite
    Wave Systems Kerberos LSP over [MSAFD Tcpip [TCP/IP]]
    XFire
    Xfire_LSP MSAFD Tcpip [TCP/IP]
    Once you've identified the third-party software that installed the LSP, you should check for updates. If the software is your security software, see iTunes: Troubleshooting security software issues for additional information. 
    Bytemobile is usually associated with cellular data connection software. You may want to check if your provider has instructions to disable or uninstall that portion of the software, such as these instructions from AT&T.
    Note:  If unsure on the origin of your LSP, you may try to locate vendor information to determine which software is responsible for the non-default value here.
    Thank you for using Apple Support Communities.
    Cheers,
    SterlingD

  • Hello every one. Please let me know what is the best mouse to use in a Photoshop? Thank you very much. Alex.

    Hello every one. Please let me know what is the best mouse to use in a Photoshop? Thank you very much. Alex.

    My ArtZ II is on a Win2K supplemental computer. I think that the main reason that I keep it around is the 12 x 12 ArtZ II.
    Next workstation will probably force that comupter into a closet and my beloved ArtZ II will probably go with it...
    Even on my laptop out on the patio, if I have to do almost anything in PS, or Painter, I'll go grab my Intuos 2 and hook it up, even though it's a 9 x 12 and a bit big for the patio table (works fine on my various desktop situations though). I cannot be without my tablets, though I am not a fan of the Wacom mice that I have tried (2 still in the box). Best mouse is my Logitec cordless (hated its keyboard and got rid of it in a second), which has nice weight, the right feel for my hand and is just great. Still, I only use it for the duties that the Wacom is not the best at. If I open up PS, or Painter, the mouse sits idle.
    Good luck to the OP,
    Hunt

Maybe you are looking for

  • Crystal reports 2008 SP1 missing in BusinessObjects Crystal Reports website

    We have used Crystal reports 2008 as a reporting utility in our application and have released our product last year. During our release the latest software available  was Crystal reports 2008 base + SP1 + SP2 + Fix Pack 2.7 and same was mentioned in

  • Adobe XI Pro Installing Error 1935

    I tried to download trial Adobe Acrobat XI Pro but this message keeps appear. I used Chrome to download the Adobe Download Assistant. I have Windows 7. Please help me on this problem.

  • Problems using Parameters

    Hi im trying to contribute documents on UCM using parameters because my legacy applications wont support webservice and because this can be the most simple way. Reading services documentation i found CHECKIN_UNIVERSAL If i use this url: http://localh

  • Partner functions WebUI Solman

    Hi experts, I'm using Solman 7.1 in Incident Management and I've got a strange problem in using partner functions. I used SLFN0002 and created a copy of it ZLFN0002. Then I added both in the WebGUI under "details". And here is my problem: when I fill

  • BSP iview integrate in portal

    hi, i am new for portal implementaion so i need for integrate bsp iview in portal can any one provide a link, please? and  which case we can use internet transaction sever  for create system object . thanks &regards G.srinu Edited by: Anja Engelhardt