Pay_element_entry_api_delete_elemeny_entry giving error

HI,
Iam trying to end date of the several employees but api giving error as
ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
mY CODE IS:
DECLARE
ld_effective_start_date DATE;
ld_effective_end_date DATE;
lb_delete_warning BOOLEAN;
ln_object_version_number PAY_ELEMENT_ENTRIES_F.OBJECT_VERSION_NUMBER%TYPE := 1;
l_payroll_id NUMBER;
l_claim_master_id NUMBER;
l_pay_name VARCHAR2(240);
l_assign_no VARCHAR2(240);
l_element_name VARCHAR2(240);
l_err VARCHAR2(1000);
l_suc NUMBER;
l_erc NUMBER;
l_total NUMBER;
l_srno NUMBER;
CURSOR ele_name_cur
IS
select distinct c.element_name
from xxc_mod_ex_014_mile_master_tab a,
per_all_assignments_f b, xxc_mod_ex_014_mile_detail_tab c,
pay_all_payrolls_f p
where a.claim_master_id = c.claim_master_id
----and upper(c.element_name) IN (SELECT distinct element_name from xxc_mod_ex_014_mile_detail_tab )
and c.status_flag = 'P'
and to_char(payroll_eff_date,'MON') = 'SEP'
and a.assignment_id = b.assignment_id
and c.payroll_id = p.payroll_id
and sysdate between b.effective_start_date and b.effective_end_date
and sysdate between p.effective_start_date and p.effective_end_date
and c.element_entry_id IN (
select element_entry_id from PAY_ELEMENT_ENTRIES_F --element_entry_id
where element_entry_id in (
select c.element_entry_id
from xxc_mod_ex_014_mile_master_tab a,
per_all_assignments_f b, xxc_mod_ex_014_mile_detail_tab c
where a.claim_master_id = c.claim_master_id
----and upper(c.element_name) IN (SELECT distinct element_name from xxc_mod_ex_014_mile_detail_tab )
and c.status_flag = 'P'
and to_char(payroll_eff_date,'MON') = 'SEP'
and a.assignment_id = b.assignment_id
and sysdate between b.effective_start_date and b.effective_end_date
and to_char(effective_end_date,'MON') != 'SEP');
CURSOR ele_link_cur(p_element_name VARCHAR2)
IS
SELECT A.element_entry_id, max(peef.object_version_number) object_version_number
FROM PAY_ELEMENT_ENTRIES_F peef,
(SELECT element_entry_id
FROM PAY_ELEMENT_ENTRIES_F
WHERE element_entry_id IN
(SELECT c.element_entry_id
FROM xxc_mod_ex_014_mile_master_tab a,
per_all_assignments_f b,
xxc_mod_ex_014_mile_detail_tab c
WHERE a.claim_master_id = c.claim_master_id
AND upper(c.element_name) = upper(nvl(p_element_name,c.element_name))
AND c.status_flag = 'P'
AND TO_CHAR(payroll_eff_date,'MON') = 'AUG'
AND a.assignment_id = b.assignment_id
---AND c.payroll_id = 67
AND sysdate BETWEEN b.effective_start_date AND b.effective_end_date
AND TO_CHAR(effective_end_date,'MON') != 'AUG'
GROUP BY element_entry_id)A
WHERE A.element_entry_id = peef.element_entry_id
GROUP BY A.element_entry_id;
BEGIN
l_suc := 0;
l_erc := 0;
l_total := 0;
l_srno := 0;
FOR ele_link_rec IN ele_link_cur(null)
LOOP
l_total := ele_link_cur%ROWCOUNT;
END LOOP;
dbms_output.put_line('-----------------------------------------------------------------------------------------');
dbms_output.put_line('Sr No Assignment No Element Name Payroll Name Element Entry Id');
dbms_output.put_line('-----------------------------------------------------------------------------------------');
FOR ele_name_rec IN ele_name_cur
LOOP
FOR ele_link_rec IN ele_link_cur(ele_name_rec.element_name)
LOOP
l_srno := l_srno + 1;
ln_object_version_number := ele_link_rec.object_version_number;
BEGIN
-- Delete Element Entry
pay_element_entry_api.delete_element_entry (
-- Input data elements
p_validate => TRUE,
p_datetrack_delete_mode => 'DELETE',
p_effective_date => '30-SEP-2012',
p_element_entry_id => ele_link_rec.element_entry_id,
-- Output data elements
p_object_version_number => ln_object_version_number,
p_effective_start_date => ld_effective_start_date,
p_effective_end_date => ld_effective_end_date,
p_delete_warning => lb_delete_warning );
BEGIN
SELECT DISTINCT payroll_id,
claim_master_id,
element_name
INTO l_payroll_id,
l_claim_master_id,
l_element_name
FROM xxc_mod_ex_014_mile_detail_tab
WHERE element_entry_id = ele_link_rec.element_entry_id;
SELECT payroll_name
INTO l_pay_name
FROM pay_all_payrolls_f
WHERE payroll_id = l_payroll_id
AND TRUNC(sysdate) BETWEEN effective_start_date AND effective_end_date;
SELECT b.assignment_number
INTO l_assign_no
FROM xxc_mod_ex_014_mile_master_tab a,
per_all_assignments_f b
WHERE a.assignment_id = b.assignment_id
AND a.claim_master_id = l_claim_master_id
AND TRUNC(sysdate) BETWEEN b.effective_start_date AND b.effective_end_date;
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line('Error to Fetch Payroll Details -');
END;
------dbms_output.put_line(TO_CHAR(l_srno)||' '||l_assign_no||' '||l_element_name||' '||l_pay_name||' '|| ele_link_rec.element_entry_id );
insert into xxc_element_entry_delete
values(l_srno,
l_assign_no,
l_element_name,
l_pay_name,
ele_link_rec.element_entry_id ,
'S');
l_suc := l_suc + 1;
-------COMMIT;
EXCEPTION
WHEN OTHERS THEN
l_err := SQLERRM;
dbms_output.put_line('Error to Process Element Entry Id -'||ele_link_rec.element_entry_id||l_err);
l_erc := l_erc + 1;
BEGIN
SELECT DISTINCT payroll_id,
claim_master_id,
element_name
INTO l_payroll_id,
l_claim_master_id,
l_element_name
FROM xxc_mod_ex_014_mile_detail_tab
WHERE element_entry_id = ele_link_rec.element_entry_id;
SELECT payroll_name
INTO l_pay_name
FROM pay_all_payrolls_f
WHERE payroll_id = l_payroll_id
AND TRUNC(sysdate) BETWEEN effective_start_date AND effective_end_date;
SELECT b.assignment_number
INTO l_assign_no
FROM xxc_mod_ex_014_mile_master_tab a,
per_all_assignments_f b
WHERE a.assignment_id = b.assignment_id
AND a.claim_master_id = l_claim_master_id
AND TRUNC(sysdate) BETWEEN b.effective_start_date AND b.effective_end_date;
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line('Error to Fetch Payroll Details -');
END;
dbms_output.put_line('Assignment No - '||l_assign_no||' Element Name '||l_element_name);
END;
END LOOP;
END LOOP;
dbms_output.put_line('-----------------------------------------------------------------------------------------');
dbms_output.put_line(' Total Records - '||l_total);
dbms_output.put_line(' Success Records - '||l_suc);
dbms_output.put_line(' Error Records - '||l_erc);
EXCEPTION
WHEN OTHERS THEN
ROLLBACK;
dbms_output.put_line('Error');
dbms_output.put_line(SQLERRM);
END;
ERROS IS SHOWING AS;
set serveroutput on
Sr No Assignment No Element Name Payroll Name Element Entry Id
Error to Process Element Entry Id -2810829ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 492175 Element Name Cornwall Care Casual
Error to Process Element Entry Id -2810810ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 031732 Element Name Cornwall Care Casual
Error to Process Element Entry Id -2810883ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 492175 Element Name Cornwall Care Casual
Error to Process Element Entry Id -2810830ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 031732 Element Name Cornwall Care Casual
Error to Process Element Entry Id -2897456ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 018793 Element Name C Care Casual FPCS Rates
Error to Process Element Entry Id -2897455ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 018793 Element Name C Care Casual FPCS Rates
Error to Process Element Entry Id -2810699ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 680575 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810657ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 680155 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810680ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 680045 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810683ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681071 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810685ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681763 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810705ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681610 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810628ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681714 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810698ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 680024 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810702ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 680084 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810706ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681610 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810629ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 682877 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810704ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 682388 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810684ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681763 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810630ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 683005 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810700ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 680038 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810701ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 682872 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810686ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 682290 Element Name PETROC Scheme 1
Error to Process Element Entry Id -2810703ORA-20001: HR_xxxx_INVALID_EVENT_TYPE:
Assignment No - 681156 Element Name PETROC Scheme 1
Total Records - 24
Success Records - 0
Error Records - 24
pLEASE ANYONE PROVIDE SOLUTION:::
tHANKS,
RAKESH

Sharath Gajula wrote:
Yes I agree with Vinayak. This could be because of the issue with the Custom Process that creates the BEE Entries. Avoiding Zero entries from the custom process should also resolve the issue.Hi there
You guys are right, I am avoiding when Zero value comes from the other system and not creating Batch Line.
BUT When I have already a Element Entry with the Employee and I have to End Date that one, how could I End Date that Entry, unless and untill i create a record with the Zero.
It looks like I am missing some thing, Am I?
I am using pay_batch_element_entry_api.create_batch_line to create Batch Line, DO I have to use pay_batch_element_entry_api.update_batch_line to End Date the Existing Entry?
Thanks for Participating this thread.
Regards.

Similar Messages

  • Item Open Interface giving error for Org Assignment

    We ran the MTL_SYSTEMS_ITEMS_INTERFACE & loaded all the items at master level.
    We are having issues in setting at Org level. Cant figure out what the issue as only few records gets assigned & then garbage sets in for remaining records. An SR has been raised & the tech support representative was saying that UOM's are different at master & org levels. Never heard of this issue earlier. I have worked with UOM's different at Master/Org levels.
    The UOM's are different at Master & Org Level and in some cases the UOM are different for different Orgs. Attribute Control for Primary/Sec UOM is at Org level. The UOM's belong to the same UOM Class. There are standard conversions defined for all these UOMs.
    Any pointers for quick resolution ?

    Pl do not post duplicates - Item Open Interface giving error for Org Assignment

  • Top N query giving error for oracle 8.0.6

    Dear All,
    We are executing this query SELECT XBLNR, WERKS, MATNR, MDV01, BACKFLQUANT, STATUS, SAPTIMESTAMP, PITSTIMESTAMP, PMTIMESTAMP, BATCH FROM (SELECT XBLNR, WERKS, MATNR, MDV01, BACKFLQUANT, STATUS, SAPTIMESTAMP, PITSTIMESTAMP, PMTIMESTAMP, BATCH FROM PMBPITS.PITS_UNITY WHERE STATUS = '01' ORDER BY PMTIMESTAMP) WHERE ROWNUM < 20
    on oracle 8.0.6 but this is giving the following error
    ora - 00907 missing right parenthesis error
    1. Is it that in the inner select we cannot use order by and where clause together.
    2. We also found that if we remove order by from inner select then the query is not giving error
    pls help . points will be awarded

    Hi,
    what ever the Aman said is correct. You check this is supported in 8.1.5, SQL allows you to embed the ORDER BY clause in a subquery and place the ROWNUM condition in the top-level query;
    'Top-N query' is a ORACLE 8i feature which is supported in SQL. However,
    Bug:855720 states the following:
    "PL/SQL does not support top-N queries (ORDER BY in SUBSELECT/SUBQUERY
    or VIEW. Since this feature is available in SQL, but not in PL/SQL,
    it has been logged as a Bug that will be fixed in 8.1.6."
    - Pavan Kumar N

  • Giving error while creating a sales contact for the previous year (2008)

    Hi Friends,
    We are currently with SP12. When we try to create a sales contract for the previous year it is giving error like "Schedule line is for the item 100 cannot be after the order's latest delivery date".
    i tried debugging and found that that there is a rule created for this (in SP12). I commented the rule and tried to create a contract but, again got an error "Error while saving". This error I can't catch while debugging.
    I even didn't find where the schedule line date and header cancel dates are set so that I can change the dates manually.
    If any one has any idea, kindly help me.
    Best regards,
    Swarna Seeta

    Hi Wolfhard,
    Thanks for the reply.
    You are right and I have uncommented the line which assigns true to the return value and the contract got saved now.
    Thank you so much.
    I just want to know whether commeting this rule effects any of the functionalities of the sales contract.
    Best regards,
    Swarna Seeta

  • FM SSF_CLOSE failing and giving error message while printing a smartform

    Hi,
    for language spanish the smartform is not getting printed for output type SG11 but for english it is getting printed? What could be the reason? I debugged and found that SSF_CLOSE is failing and giving error message.
    Thanks and regards,
    AP.

    Hi Aparajita,
    for changing from one languages to another translations in SE63 is to be done, either search on SCN for using SE63 , or atleast see these wiki help .
    Transaction SE63 - Translation Tools for Translators (BC-DOC-TTL) - SAP Library
    Transaction SE63 (SAP Library - Translation Tools for Translators (BC-DOC-TTL))

  • Task Manager Not loading Properly. Giving Error No more threads can be created in the System.NAPStatus UI and Some other Task related Errors

    I have a problem with the Task Scheduler. It is not opening properly it is giving Error Message box at this time i am unable to post. The Tasks Scheduler is starts with a error alert "No more threads can be created in the System.NAPStatus UI".
     I am unable to view the history of the tasks schecduled.It is giving message as 
    "The user account does not have permission to Access the Task History."
    How to fix it. It is frustrating as can't able to track my Tasks and Create new Tasks. Any Suggestions helpful.
    Thanks in Advance.
    RehaanKhan. M

    Hi,
    Thanks for your post.
    Please check event viewer if there are some error logs?
    Meanwhile, there is a similar thread has been discussed:
    Receiving error about "no more threads"
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/9a9e22e4-d947-4d19-b06c-aaadda624dbc/receiving-error-about-no-more-threads?forum=winservergen
    Regards.
    Vivian Wang

  • WebdynproJava Components giving error while migrating from NWDS SP03 toSP09

    Hi,
    The original DC's were developed in lower NWDS patch level, currently i have upgraded the patch level of NWDS to 09 and importing the Wed Dynpro components from NWDI; but some of the DC's are proper but some are giving error.
    I tried Project build, DC build and Repairing the DC's but nothing worked.

    Hi Siarhei,
    Error:
    The constructor WSTypedModel(String, String, QName, String, Map, String, IWSTypedModelInfo, Map<String,QName>) is undefined
    Warnings:
    Versions of 'com.sap.dictionary.runtime' are different.
    Versions of 'com.sap.dictionary.services' are different.
    Versions of 'com.sap.tc_.wd_.rtgen' are different.
    Forgot to mention i am working on CE7.1
    Regards
    Jagan

  • Giving Error while generating the Data mart to Infocube.

    Hi Gurus,
    I need to  extract the APO infocube data in to the BW infocube. For that iam trying to generate the data mart to APO infocube .
    So, that i can use that data mart as a data source to extract that APO Infocube data in to  BW infocube.
    In that process iam trying to generate the datamart for APO Infocube . But while generating it is giving errors like below:
    Creation of InfoSource 8ZEXTFCST for target system BW 1.2 failed
    The InfoCube cannot be used as a data mart for a BW 1.2 target system.
    Failed to create InfoSource &v1& for target system BW 1.2.
    PLease suggest me what to do for this Error problem.
    Thanks alot in Advance.

    Hi,
    Point No : 1
    What is Planning Area :
    http://help.sap.com/saphelp_scm41/helpdata/en/70/1b7539d6d1c93be10000000a114084/content.htm
    Point No : 2
    Creation Steps for Planning Area :
    http://www.sap-img.com/apo/creation-of-planning-area-in-apo.htm
    Note : We will not create Planning Area.This will be done by APO team.
    Point No 3  : Afetr opening the T-Code : /n/SAPAPO/MSDP_ADMIN in APO you will be able to see all the planning areas.
    Point No 4 : Select your planning area and Goto Extras menu and Click on Generate DS
    Point No 5. System automaticall generate the DS in APO (Naming Convention start with 9) and Replicate the DS in BI Map to your cube and load the data.
    Regards
    Ram.

  • Giving error message when saving the Query

    Hello,
    I have added a new calculated key figure to the structure in a Query but when I try to save the Query it is giving error message is below.
    Error Message:
    u201CThis internal error is an intended termination resulting from a program state that is not permitted.
    Procedure
    Analyze the situation and inform SAP.
    If the termination occurred when you executed a query or Web template, or during interaction in the planning modeler, and if you can reproduce this termination, record a trace (transaction RSTT).
    For more information about recording a trace, see the documentation for the trace tool environment as well as SAP Note 899572u201D.
    Could any one please suggest me how can I over come with this problem.
    Thanks
    Prathap.

    Hi Prathap,
    There is some problem in the definition of the Query.
    Please click on the check button before saving the query, it gives where the problem exists in it.
    Hope it helps.
    Veeerendra.

  • Non numeric value in numeric field giving error

    Hi All
    I am using BAPI for creating sales order. If user is giving non numeric value in Quantity field it is giving error. Because quantity field data type is Double.
    Please Help.
    Thanks
    Raktim

    Hi Banerjee,
                 Create a String/int/long Context variable and point it to UI Input element.Do the validation  for correct input value. once the validation is succesful assign that value to RFC BigDecimal variable by Explicit casting.
    Hope this might solve your problem .
    Thanks
    Madhan

  • DATAEXPORT to sql server is giving error

    Hi,
    I am using DATAEXPORT to export data to SQL tables but its giving error:
    MY TABLE:
    USE SBC;
    Create table TEST
         Period nchar(20),
         HSP_Rates nchar(20),
         Years nchar(10),
         Currency nchar(5),
         Scenario nchar(20),
         ICP nchar(20),
         [Co.] nchar(20),
         Version nchar(20),
         Product nchar(20),
         Entity nchar(30),
    Account nchar(50),
         Data numeric(18, 5)
    Created this order based on export taken on file
    **My Script:**
    SET DATAEXPORTOPTIONS
         DataExportLevel "ALL";
         DATAEXPORTCOLFORMAT ON;
         DataExportOverwriteFile ON;
         DataExportDecimal 4;
    DATAEXPORTCOND ("HSP_InputValue" <> #MISSING And "HSP_InputValue" <> 0);
    FIX (@REMOVE(@RELATIVE ("Balance_Sheet",0),"CY_Earnings"),"Per7","HSP_InputValue","FY12","Local","MY12 Budget", @RELATIVE ("ICP Top",0),@RELATIVE ("Co Total",0),Working,@RELATIVE (PODS,0),@RELATIVE ("Entity",0));
    /*DATAEXPORT "File" "," "D:\Test.txt"*/
    DATAEXPORT "DSN" "TEST" "Test" "admin" "XXXXXX";
    ENDFIX;
    Output when exported to File:
    "Per7"
    "HSP_InputValue","FY12","Local","MY12 Budget","No IC","Co 100","Working","ALLEZ","100-1050","Subs_Cash",500000.046
    "HSP_InputValue","FY12","Local","MY12 Budget","No IC","Co 100","Working","AirFreight","100-1050","Subs_Cash",534324.370
    ERROR IN LOGS:
    [Fri Feb 03 01:10:20 2012]Local/SBC///15796/Info(1013210)
    User [admin@Native Directory] set active on database [SBC]
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1013091)
    Received Command [Calculate] from user [admin@Native Directory]
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1013167)
    Received Command [Calculate] from user [admin@Native Directory] using [Test.csc]
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1021004)
    Connection String is generated
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1021041)
    Connection String is [DSN=SBC;UID=...;PWD=...;]
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1021000)
    Connection With SQL Database Server is Established
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1021013)
    ODBC Layer Error: [21S01] ==> [[Microsoft][ODBC SQL Server Driver][SQL Server]Column name or number of supplied values does not match table definition.]
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1021014)
    ODBC Layer Error: Native Error code [213]
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Error(1012085)
    Unable to export data to SQL table [Test]. Check the Essbase server log and the system console to determine the cause of the problem.
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1021002)
    SQL Connection is Freed
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Warning(1080014)
    Transaction [ 0xb0006( 0x4f2b885c.0xd4e40 ) ] aborted due to status [1012085].
    [Fri Feb 03 01:10:20 2012]Local/SBC/SBC/admin@Native Directory/2208/Info(1012579)
    Total Calc Elapsed Time for [Test.csc] : [0.022] seconds
    I have tried using SQL Drivers for ODBC connection as well as Wire protocol driver.
    Please assist asap.
    Regards,
    Vinit

    Chawla,
    Fixed in 9.3.3, Check out this, their are few more bugs fixed related to DataExport.
    http://docs.oracle.com/cd/E10530_01/doc/epm.931/esb_93300_readme.pdf
    8404516 Calculator.The DATAEXPORTCOND calculation command clashes with the FIX
    command.
    8913164 Calculator. Data exports that use DATAEXPORTCOND do not always export all
    the data expected because not all conditions are taken into account within the
    DATAEXPORTCOND statement
    8988310 Calculator. When exporting data using the DATAEXPORT command from a
    duplicate outline that contains a shared hierarchy, the exported data contains the
    shared member, not the prototype Etc..
    Cheers...!!
    Rahul S.

  • Not able to Start Hyper-V(2012 R2) VM when placing the VM config file on Samba Share,Its giving error:Unable to initialize the saveset

    ---We are trying to setup Hyper-V on Samba shares samba version 3.6 exported from Ubuntu  M/c. Basically runnig the Public(share) from the Ubuntu and able to access it from Windows 2012 (create/modify everything). I used Hyper-V and placed the disks
    ".vhd" on this , VM succesfull created and started. However when I placed the VM config files on this (samba) shares VM created successfully but its not starting, Its giving error like Unable to initialize the saveset -- Any idea how to place the
    Hyper-V VM config files samba share?

    Hi Rakesh KK,
    Please confirm your share meet the Serve 2012r2 Hyper-V requirement, you can refer the following KB to get more detail require conditions.
    Deploy Hyper-V over SMB
    http://technet.microsoft.com/en-us/library/jj134187.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Video import problem from iphone5 to PC giving error

    Hi evereyone,
                      I have iphone 5. I try to import my videos but am not able to import all, its giving error. I tried also using windows live photo still same prob. the imported videos have problem in playing. I tried with vlc, quick time, the frames are broken and audio video lag. Please help me how i can import all and rum smoothly.

    Ilan_B wrote:
    Every time I plug my iphone 5 into the laptop (using windows 7) the easiest way is to right click on the portable device (iphone icon) and import to my pictures, BUT every time I do this it wants to import ALL photos and videos.
    And when you do this, it should ask if you want to import the pictures that have already been imported. Select No.
    Then, after you import, the photos should be deleted from the Camera Roll.
    After the photos are imported and deleted from the Camera Roll, you can import using iTunes, only the photos you want on the iPhone.

  • BAPI  BAPI_PR_CHANGE  giving error message: Enter G/L Account

    Hi Folks,
    I am using bapi Enter G/L Account to add new item in existing PR number.
    In return table, bapi is giving error mesage that, 'Enter G/L Account' . But i don't know where to pass the G/L number to this bapi and from where i can get the G/L number for existing PR document.
    Regards
    PG

    Hi,
    Enter the G/L account in the structure PRACCOUNT field GL_ACCOUNT. Enter the Purchase requistion item no in the field PREQ_ITEM  in the structure PRACCOUNT.
    Also,
    Enter the Purchase requistion item no in the field PREQ_ITEM  in the structure PRACCOUNTX. Set update field to 'X'  in the structure PRACCOUNT field GL_ACCOUNT.
    Hope it helps.
    Sujay

  • BAPI_ALM_NOTIF_LIST_PARTNER working perfectly in R/3 giving error in XI

    Hi all,
    the above BAPI working fine in R/3. The Same inputs are passed but it is giving error. The input and output are given below in XML format as it is handled in XI:
    Input message
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:BAPI_ALM_NOTIF_LIST_PARTNER xmlns:ns1="urn:sap-com:document:sap:rfc:functions">
      <COMPLETE>x</COMPLETE>
      <NOTIFICATION_DATE>2008-08-08</NOTIFICATION_DATE>
      <PARTNER>0000000001</PARTNER>
      <PARTNERFUNCTION>vw</PARTNERFUNCTION>
      <NOTIFICATION />
      </ns1:BAPI_ALM_NOTIF_LIST_PARTNER>
    output message
      <?xml version="1.0" encoding="UTF-8" ?>
    - <rfc:BAPI_ALM_NOTIF_LIST_PARTNER.Response xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
    - <RETURN>
      <TYPE>E</TYPE>
      <CODE>IM718</CODE>
      <MESSAGE>E718 Only specify partner function together with partner number</MESSAGE>
      <LOG_NO />
      <LOG_MSG_NO>000000</LOG_MSG_NO>
      <MESSAGE_V1 />
      <MESSAGE_V2 />
      <MESSAGE_V3 />
      <MESSAGE_V4 />
      </RETURN>
      <NOTIFICATION />
      </rfc:BAPI_ALM_NOTIF_LIST_PARTNER.Response>
    Can any body help in resolving this problem please.
    Regards,
    Venkat

    Thank you amrute for your reply. You are right we do faced similar issues in many other occations and sent exact data and could resolve the issues. In this case also we have given in exact format for all fields. Date format as given in this case is same as what was given in another working XI scenario. However I look at the data type of date to be sure.
    As you see the message is regarding partner and partner function. If you have any other point of view may please be indicated.
    Regards,
    Venkat

Maybe you are looking for

  • T-Bolt Display not working with iMac Retina

    When I replaced my Late 2012 iMac with the new iMac Retina, the Thunderbolt Display I use for a second monitor would not come on and is not visible in the iMac's "Displays" preferences.  Has anyone had this problem?  I tried rebooting the iMac, but n

  • Make the data fit in 1 or 2 pages in Rpt as per the data selection- Hyp IR

    Hi, Request to provide me solution for the following issue at the earliest : On dashboard I'll have 3 dropdowns drp1,drp2,drp3 and 3 list boxes lb1,lb2,lb3. User selects value from drp1 and selected value can be placed in lb1 thru "=>" button. So any

  • BI report - +Sum for Characteristics

    I am trying to build a query in Bex Analyzer and I created a calculated key figure from a characteristic. I created a forumula variable using replacement path and referencing the characteristic that I need to sum. When I run the query, the total is i

  • PSE 5.0 IPTC Support

    I have PSE 4 and with it, the only way to add IPTC information is one photo at a time, in the Editor. Has this changed in PSE 5.0 so that you can add, e.g., copyright info, to multiple files? I'm considering going to Lightroom for my organizer but wo

  • Count = variable date format

    I've got a form where the action="page.php" When on this page, I also have a recordset that counts the rows that have the same date variable called from the $_POST. the recordset name = datedal variable type = date Default value = 0 Runtime value = $