ORA-20001: PAY_7599_SYS_SUP_DT_OUTDATE when trying to create a new employee

hello.
I hope someone can help. My script below takes record(s) from a temporary table and loads them into ORACLE Financials via several APIs but on initial testing (using 1 NEW Record) it fails with the error message:
Employee No: 00020206
ORACLE error occurred processing record.. ORA-20001: PAY_7599_SYS_SUP_DT_OUTDATE
Ive tried to google the error message but nothing - can someone either suggest what this may be or shsow me another way of getting a more precise reason for the problem?
/* Formatted on 2009/04/29 11:52 (Formatter Plus v4.8.7) */
SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
SET verify OFF
SET feedback OFF
DECLARE
-- Debugging/error handling
-- Work variables
   l_employ_start_date        DATE:= TO_DATE ('01-APR-1999', 'DD-MON-YYYY');
   v_ora_loc_code number                     := 0;
   p_emp_number                     VARCHAR2 (14);
   v_rec_cnt                        NUMBER                          := 0;
   insert_flag                      VARCHAR2 (8);
   err_num                          NUMBER;
   err_msg                          VARCHAR2 (150);
   err_line                         VARCHAR2 (350);
   err_seq                          NUMBER                          := 0;
   l_validate                       BOOLEAN                     DEFAULT FALSE;
   l_std_business_group_id          NUMBER                          := '0';
   l_default_code_comb_id           NUMBER                        := '218048';
   l_organization_id                NUMBER                          := '0';
   l_set_of_books_id                NUMBER                          := '1';
   l_job_id                         NUMBER                          := '10';
   l_obj                            NUMBER;
   l_datetrack_update_mode          VARCHAR2 (30)             := 'CORRECTION';
   l_assignment_sequence            NUMBER;
   l_name_combination_warning       BOOLEAN                         := FALSE;
   l_assign_payroll_warning         BOOLEAN                         := FALSE;
   l_org_now_no_manager_warning     BOOLEAN;
   l_other_manager_warning          BOOLEAN;
   l_spp_delete_warning             BOOLEAN;
   l_entries_changed_warning        VARCHAR2 (30);
   l_tax_district_changed_warning   BOOLEAN;
   l_person_id                      NUMBER;
   l_assignment_id                  NUMBER;
   l_assignment_id2           NUMBER;  -- := '28262';
   l_special_ceiling_step_id        NUMBER;
   l_per_effective_end_date         DATE:= TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
   l_people_group_id                NUMBER;
   l_group_name                     VARCHAR2 (30);
   l_assignment_number              VARCHAR2 (35);
   l_effective_end_date             DATE := TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
   l_date                           DATE                           := SYSDATE;
   ip_p_address_id                  per_addresses.address_id%TYPE;
   ip_p_object_version_number       NUMBER;
   ip_p_party_id                    per_addresses.party_id%TYPE;
   l_per_object_version_number      NUMBER;
   l_asg_object_version_number      NUMBER;
   l_full_name                      VARCHAR2 (240);
   l_per_comment_id                 NUMBER;
   l_per_effective_start_date       DATE;
   l_concatenated_segments          VARCHAR2 (240);
   l_soft_coding_keyflex_id         NUMBER;
   l_comment_id                     NUMBER;
   l_no_managers_warning            BOOLEAN;
-- Get employee details info from work table
   CURSOR get_employee_details
   IS
      SELECT std_hire_date, std_last_name, std_sex, std_date_of_birth,
             std_email_address, std_emp_status,
             LPAD (std_employee_number, 8, '0') std_employee_number,
             std_first_name, std_marital_status, std_middle_names,
             std_nationality, std_title, std_national_identifier,
             std_address_line1, std_address_line2, std_address_line3,
             std_address_line4, std_post_code, std_telephone_1, std_country,
             std_region, std_location_id, std_organization_id,
             std_supervisor_id, std_person_id, std_position_id
        FROM SU_TEMPLOYEE_DETAILS;
-- Get EXISTING employee details info from ORACLE tables
   CURSOR get_existing_employee_details
   IS
      SELECT per.person_id, per.business_group_id, per.last_name,
             per.start_date, per.date_of_birth, per.email_address,
             per.employee_number, per.first_name, per.marital_status,
             per.middle_names, per.nationality, per.national_identifier,
             per.sex, per.title, padd.address_id, padd.primary_flag,
             padd.address_line1, padd.address_line2, padd.address_line3,
             padd.town_or_city, padd.postal_code, padd.telephone_number_1, paas.assignment_id,
             paas.assignment_number, paas.object_version_number, paas.EFFECTIVE_START_DATE,
     paas.job_id, paas.position_id, paas.location_id, paas.organization_id, paas.assignment_type, paas.supervisor_id,
             paas.default_code_comb_id, paas.set_of_books_id, paas.period_of_service_id
      FROM   per_all_people_f per,
             per_all_assignments_f paas,
             per_addresses padd
       WHERE
     per.person_id = padd.person_id
     --        AND paas.person_id(+) = per.person_id;
        AND paas.person_id(+) = per.person_id;
-- checks employee details info from PER_ALL_PEOPLE_F table
   CURSOR c_check_employee (p_emp_number VARCHAR2)
   IS
      SELECT per.person_id, per.business_group_id, per.last_name,
             per.start_date, per.date_of_birth, per.email_address,
             per.employee_number, per.first_name, per.marital_status,
             per.middle_names, per.nationality, per.national_identifier,
             per.sex, per.title, padd.address_id, padd.primary_flag,
             padd.address_line1, padd.address_line2, padd.address_line3,
             padd.town_or_city, padd.postal_code, padd.telephone_number_1, paas.assignment_id,
             paas.assignment_number, paas.object_version_number, paas.EFFECTIVE_START_DATE,
     paas.job_id, paas.position_id, paas.location_id, paas.organization_id, paas.assignment_type, paas.supervisor_id,
             paas.default_code_comb_id, paas.set_of_books_id, paas.period_of_service_id
      FROM   per_all_people_f per,
             per_all_assignments_f paas,
             per_addresses padd
       WHERE per.employee_number = p_emp_number
         AND per.person_id = padd.person_id
         AND paas.person_id(+) = per.person_id;
   emp_rec                          c_check_employee%ROWTYPE;
-- Cursor retrieves latest Object Version Number from per_assignments_f table..
   CURSOR csr_ovn (cp_person_id IN per_all_people_f.person_id%TYPE)
   IS
      SELECT MAX (paas.object_version_number)
        FROM per_assignments_f paas, per_all_people_f per
       WHERE paas.person_id = per.person_id
         AND per.employee_number = paas.assignment_number
         AND per.person_id = cp_person_id;
-- Cursor to get Oracle_Loc_Code from SU CHRIS vs ORACLE Locations Table into a variable..
CURSOR csr_ora_loc_code (cp_location_id IN SU_TEMPLOYEE_DETAILS.std_location_id%TYPE)
IS
      SELECT sil.ORACLE_LOC_CODE
     FROM SU_TEMPLOYEE_DETAILS std, SU_IEXP_LOCATIONS sil
     WHERE std.STD_LOCATION_ID = sil.CHRIS_LOC_code
     AND std.STD_LOCATION_ID = cp_location_id;
BEGIN
-- Process each record in the work table
   FOR v_emp IN get_employee_details
   LOOP
-- determine whether customer already exists
      OPEN c_check_employee (v_emp.std_employee_number);
      FETCH c_check_employee
       INTO emp_rec;
       l_assignment_id2 := emp_rec.assignment_id;
      IF v_emp.std_emp_status = 'N' and c_check_employee%NOTFOUND
      THEN
         insert_flag := 'I';
         DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number);
      ELSIF v_emp.std_emp_status = 'C'
      THEN
       -- if c_check_employee%NOTFOUND then raise no_data_found;
        -- elsif l_assignment_id2 is null then
         if l_assignment_id2 is null then
          raise_application_error (-20010, 'Employee No: ' || v_emp.std_employee_number  || ' exists but has no assignment id!');
        end if;
           DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number ||  '  already exists, making changes.. '   );
           insert_flag := 'C';
      -- RAISE_APPLICATION_ERROR (-20001,  'Employee No: ' || v_emp.std_employee_number  || '  already exists '    );
       END IF;
      CLOSE c_check_employee;
-- Obtain the most recent Object Version Number..
      OPEN csr_ovn (v_emp.std_person_id);
      FETCH csr_ovn
       INTO l_obj;
      -- IF csr_ovn%NOTFOUND     THEN        RAISE NO_DATA_FOUND;   END IF;
      CLOSE csr_ovn;
-- Open Oracle Location Code cursor
OPEN csr_ora_loc_code(v_emp.std_location_id); 
      FETCH csr_ora_loc_code
       INTO v_ora_loc_code;
      CLOSE csr_ora_loc_code;
-- Create new PER_ALL_PEOPLE_F and PER_ADDRESSES record from
--            info in  table record
      IF insert_flag = 'I'
      THEN
--                      -- Importing Employee Procedure --
         Hr_Employee_Api.create_gb_employee
                 (p_validate                       => l_validate,
                  p_hire_date                      => l_employ_start_date,
                  p_business_group_id              => l_std_business_group_id,
                  p_date_of_birth                  => v_emp.std_date_of_birth,
                  p_email_address                  => v_emp.std_email_address,
                  p_first_name                     => v_emp.std_first_name,
                  p_middle_names                   => v_emp.std_middle_names,
                  p_last_name                      => v_emp.std_last_name,
                  p_sex                            => v_emp.std_sex,
                  p_ni_number                      => v_emp.std_national_identifier,
                  p_employee_number                => v_emp.std_employee_number,
                  p_person_id                      => l_person_id,
                  p_title                          => v_emp.std_title,
                  p_assignment_id                  => l_assignment_id,
                  p_per_object_version_number      => l_per_object_version_number,
                  p_asg_object_version_number      => l_asg_object_version_number,
                  p_per_effective_start_date       => l_per_effective_start_date,
                  p_per_effective_end_date         => l_per_effective_end_date,
                  p_full_name                      => l_full_name,
                  p_per_comment_id                 => l_per_comment_id,
                  p_assignment_sequence            => l_assignment_sequence,
                  p_assignment_number              => l_assignment_number,
                  p_name_combination_warning       => l_name_combination_warning,
                  p_assign_payroll_warning         => l_assign_payroll_warning
         Hr_Person_Address_Api.create_person_address
                                  (p_validate                     => l_validate,
                    --            p_effective_date               => v_emp.std_hire_date,
                                   p_effective_date              =>  l_employ_start_date,
                                   p_pradd_ovlapval_override      => NULL,
                                   p_validate_county              => NULL,
                                   p_person_id                    => l_person_id,
                                   p_primary_flag                 => 'Y',
                                   p_style                        => 'GB_GLB',
                                   p_date_from                    => SYSDATE,
                                   p_date_to                      => NULL,
                                   p_address_type                 => NULL,
                                   p_comments                     => NULL,
                                   p_address_line1                => v_emp.std_address_line1,
                                   p_address_line2                => v_emp.std_address_line2,
                                   p_address_line3                => v_emp.std_address_line3,
                                   p_town_or_city                 => v_emp.std_address_line4,
                                   p_region_1                     => NULL,
                                   p_region_2                     => NULL,
                                   p_region_3                     => NULL,
                                   p_postal_code                  => v_emp.std_post_code,
                                   p_country                      => v_emp.std_nationality,
                                   p_telephone_number_1           => NULL,
                                   p_telephone_number_2           => NULL,
                                   p_telephone_number_3           => NULL,
                                   p_party_id                     => ip_p_party_id,
                                   p_address_id                   => ip_p_address_id,
                                   p_object_version_number        => l_obj
         Hr_Assignment_Api.update_emp_asg
                        (p_validate                    => l_validate,
                         p_effective_date              => SYSDATE,  -- l_date,
                         p_datetrack_update_mode       => l_datetrack_update_mode,
                         p_assignment_id               => l_assignment_id,
                         p_object_version_number       => l_obj,
                         p_supervisor_id               => v_emp.std_supervisor_id,
                         p_default_code_comb_id        => l_default_code_comb_id,
                         p_set_of_books_id             => l_set_of_books_id,
                         p_concatenated_segments       => l_concatenated_segments,
                         --IN/OUT
                         p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                         --IN/OUT
                         p_comment_id                  => l_comment_id,
                         --IN/OUT
                         p_effective_start_date        => l_date,     --IN/OUT
                         p_effective_end_date          => l_effective_end_date,
                         --IN/OUT
                         p_no_managers_warning         => l_no_managers_warning,
                         --IN/OUT
                         p_other_manager_warning       => l_other_manager_warning
                        --IN/OUT
         Hr_Assignment_Api.update_emp_asg_criteria
             (p_validate                          => l_validate,
              p_effective_date                    => SYSDATE,       -- l_date,
              p_datetrack_update_mode             => l_datetrack_update_mode,
              p_assignment_id                     => l_assignment_id,
              p_object_version_number             => l_obj,
              p_organization_id                   => l_organization_id,
              p_location_id                       => v_ora_loc_code,
              p_job_id                            => l_job_id,
              p_position_id                       => v_emp.std_position_id,
              p_special_ceiling_step_id           => l_special_ceiling_step_id,
              p_effective_start_date              => l_date,
              --per_effective_start_date,
              p_effective_end_date                => l_effective_end_date,
              --IN/OUT
              p_people_group_id                   => l_people_group_id,
              --IN/OUT
              p_group_name                        => l_group_name,    --IN/OUT
              p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
              --IN/OUT
              p_other_manager_warning             => l_other_manager_warning,
              --IN/OUT
              p_spp_delete_warning                => l_spp_delete_warning,
              --IN/OUT
              p_entries_changed_warning           => l_entries_changed_warning,
              --IN/OUT
              p_tax_district_changed_warning      => l_tax_district_changed_warning
             --IN/OUT
         v_rec_cnt := v_rec_cnt + 1;
         DBMS_OUTPUT.PUT (CHR (10));
         DBMS_OUTPUT.PUT_LINE (   'There were '
                               || v_rec_cnt
                               || '  records read in..'
-- Updating PER_ALL_PEOPLE_F and PER_ADDRESSES record from
--            info in  table record
   ELSE IF insert_flag = 'C'
      THEN
-- ===================================================
-- these next 6 lines is for the initial mass update of existing employee records only     
-- ===================================================
/*IF emp_rec.default_code_comb_id is NULL THEN
     l_default_code_comb_id = 218048;
     END IF;     
     IF emp_rec.job_id is NULL THEN
     l_job_id = 10;
     END IF;      */
-- =========
-- Section end
-- =========
         Hr_Assignment_Api.update_emp_asg
                        (p_validate                    => l_validate,
                p_effective_date              => emp_rec.EFFECTIVE_START_DATE,
                         p_datetrack_update_mode       => l_datetrack_update_mode,
                         p_assignment_id               => l_assignment_id2,
                         p_object_version_number       => l_obj,
                         p_supervisor_id               => v_emp.std_supervisor_id,
                         p_default_code_comb_id        => emp_rec.default_code_comb_id,
                         p_set_of_books_id             => emp_rec.set_of_books_id,
                         p_concatenated_segments       => l_concatenated_segments,
                         --IN/OUT
                         p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                         --IN/OUT
                         p_comment_id                  => l_comment_id,
                         --IN/OUT
                         p_effective_start_date        => l_date,     --IN/OUT
                         p_effective_end_date          => l_effective_end_date,
                         --IN/OUT
                         p_no_managers_warning         => l_no_managers_warning,
                         --IN/OUT
                         p_other_manager_warning       => l_other_manager_warning
                        --IN/OUT
         Hr_Assignment_Api.update_emp_asg_criteria
             (p_validate                          => l_validate,
              p_effective_date                    => emp_rec.EFFECTIVE_START_DATE,
              p_datetrack_update_mode             => l_datetrack_update_mode,
              p_assignment_id                     => l_assignment_id2,
              p_object_version_number             => l_obj,
              p_organization_id                   => emp_rec.organization_id,
              p_location_id                       => v_ora_loc_code,
              p_job_id                            => emp_rec.job_id,
              p_position_id                       => emp_rec.position_id,
              p_special_ceiling_step_id           => l_special_ceiling_step_id,
              p_effective_start_date              => emp_rec.EFFECTIVE_START_DATE,
              p_effective_end_date                => l_effective_end_date,
              --IN/OUT
              p_people_group_id                   => l_people_group_id,
              --IN/OUT
              p_group_name                        => l_group_name,    --IN/OUT
              p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
              --IN/OUT
              p_other_manager_warning             => l_other_manager_warning,
              --IN/OUT
              p_spp_delete_warning                => l_spp_delete_warning,
              --IN/OUT
              p_entries_changed_warning           => l_entries_changed_warning,
              --IN/OUT
              p_tax_district_changed_warning      => l_tax_district_changed_warning
             --IN/OUT
         v_rec_cnt := v_rec_cnt + 1;
         DBMS_OUTPUT.PUT (CHR (10));
         DBMS_OUTPUT.PUT_LINE (   'There were '
                               || v_rec_cnt
                               || '  records read in..'
         DBMS_OUTPUT.PUT (CHR (10));
-- End of customer related details
      END IF;
      END IF;
   END   LOOP;
   COMMIT;
EXCEPTION
   WHEN NO_DATA_FOUND
    THEN
     ROLLBACK;
      err_num := TO_CHAR (SQLCODE);
      err_msg := SUBSTR (SQLERRM, 1, 150);
      err_line :=   'ORACLE error occurred processing record.. ' ||  err_msg;
      DBMS_OUTPUT.PUT_LINE (err_line);
      INSERT INTO SU_ERROR_LOG  VALUES (err_msg, 'TEMPLOYEE_DTLS.sql', SYSTIMESTAMP);
    WHEN OTHERS
   THEN
      ROLLBACK;
      err_num := TO_CHAR (SQLCODE);
      err_msg := SUBSTR (SQLERRM, 1, 150);
      err_line :=   'ORACLE error occurred processing record.. ' ||  err_msg;
      DBMS_OUTPUT.PUT_LINE (err_line);
      INSERT INTO SU_ERROR_LOG  VALUES (err_msg, 'TEMPLOYEE_DTLS.sql', SYSTIMESTAMP);
END;
EXIT;Many thanks
Steven

It looks like the Supervisor employee is not active for the duration of the Employee Record.
Using the correct Supervisor record should resolve the issue.

Similar Messages

  • Error when trying to create a new Voyager Workspace through Infoview

    Hi,
    When trying to create a new Voyager Workspace through Infoview, I get the following Error
    "An Error hs occured while attempting to connect to the OLAP server.Failed to initialize(The following component Microsoft OLEDB Provider for Anaysis Services 2005 returned server error(An error was encountered in the transport layer;the peer prematurely closed the connection"
    I clicked on New Voyager Workspace & then it displays the list of connections available. When, I click on any connection , then I receive thefollowing error
    "An Error hs occured while attempting to connect to the OLAP server.Failed to initialize(The following component Microsoft OLEDB Provider for Anaysis Services 2005 returned server error(An error was encountered in the transport layer;the peer prematurely closed the connection"
    An Insight of our environment regarding this, we have an clustered environment with Voyager Installed. Platform is Windows Server 2003. We have all the required Microsoft client tools installed on the Production Servers.
    This was working fine earlier. We were able to create Voyager WorkSpace at one instance of time. The problem at that point of time was the MDAS Server was not showing up in CMC, i.e as we had clustered environment, only one of the MDAS Server was showing up in the CMC. it was missing the other MDAS Server. but, at that time we were able to create Voyager Workspace.
    So, in order to view the other MDAS Server in CMC, we had changed the name of the Server in CCM for both the MDAS Servers.
    In detail, Server A.MDAS Server & Server B.MDAS Server- they both were not showing up in CMC. only one of them was showing up in Servers list in CMC.
    So, in CCM we had changed the name of Server1.MDAS server to be Server1 &
    for Server2.MDAS Server to be Server1 as well.
    AFter this both the MDAS Servers were showing uo in CMC.
    but, when I login into Infoview & click on new Voyagerworkspace & select a connection, I recieve the follwoing error
    "An Error hs occured while attempting to connect to the OLAP server.Failed to initialize(The following component Microsoft OLEDB Provider for Anaysis Services 2005 returned server error(An error was encountered in the transport layer;the peer prematurely closed the connection"
    Request to let me know the possible steps in resolving this ASAP

    Hi,
    Try to create the objects again and take the screenshot of SU53 when you get the error and see the authorization object for which you are getting the error here.
    It is possible that you dont have development authorization.
    Also the issue could be that the system is not configured to create the objects begining with Z.
    Check this with basis as well.
    Thanks
    Ajeet

  • Error "The formula cannot refer to another column..." when trying to create a new subsite

    Hi All,
    I've been running into this error message when trying to create a new subsite
    Sorry, something went wrong
    The formula cannot refer to another column.  Check the formula for spelling mistakes or update the formula to reference only this column.
    Note everything was working fine before, this just started happening recently...
    At first I thought it was because of my template, but as I have tried, I can't even create subsite using the templates provided by Sharepoint...
    has anybody encountered similar problems recently?
    Any help is apprieciated!
    Fan Yang

    Hi Fan,
    If you create asubsite using the SharePoint default template, what error did you meet? Was it same with the error?
    Which site template did you use for the parent site?
    Please check whether you can create subsite at other site collection.
    In addition, please trace the exact error by using Correlation ID.
    Here are two great blogs for you to take a look at:
    http://www.habaneroconsulting.com/insights/An-Even-Better-Way-to-Get-the-Real-SharePoint-Error#.UwrFamiwrwo
    http://blog.credera.com/technology-insights/microsoft-solutions/troubleshooting-sharepoint-errors/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • AIS freezes when trying to create a new metadata catalog

    Hi,
    I'm really new in EIS/AIS. We are using EIS and Essbase version 9.3.1. I just created a new odbc connection to our data warehouse (Oracle in OraHome92). I tried to create a new catalog but EIS freezes. When I tried to "end task" the console, it closes and would get a message "olapbldr error". Need to know how to fix this. Any help would be greatly appreciated.

    Hi,
    I'm really new in EIS/AIS. We are using EIS and Essbase version 9.3.1. I just created a new odbc connection to our data warehouse (Oracle in OraHome92). I tried to create a new catalog but EIS freezes. When I tried to "end task" the console, it closes and would get a message "olapbldr error". Need to know how to fix this. Any help would be greatly appreciated.

  • New Portal User options are disabled when trying to create a new User

    Hi All,
    I am trying to create a new portal user profile using the administrator login. While doing that, I am getting all the options ( used to create the new user ) as disabled. Can anybody let me know the reason & solution of such a problem.
    or
    Anyone can provide me the document on how to create the new profile on portal. Thanks.
    Best Regards,
    Chander Kararia
    Edited by: Chander Kararia on Jan 15, 2009 7:26 AM

    Hi Chander,
    I just want to know if you are able to modify the attributes of an existing user. If not then you have been assigned the User Admin role (read only). Please check that. If yes then revert.
    Regards.
    Rajat

  • ORA-04020 Deadlock when trying to create form based on stored proceure

    Hi,
    I'm trying to create a form based on a stored procedure, and I'm getting " Failed to execute - Missing string(create_package_body) language(us) domain (wwv) sub_domain (wwv_builder) (WWV-04300)
    ORA-04020: deadlock detected while trying to lock object PUBLIC.WARRENP (WWV-11230)
    Failed to parse as PORTAL - (WWV-08300) " when I try to generate the form. I have created a new database provider (warrenp), and I've given it the same privs as the PORTAL_DEMO provider.
    GRANT EXECUTE ON PORTAL.WWCTX_API TO WARRENP;
    GRANT EXECUTE ON WWPRO_API_PARAMETERS TO WARRENP;
    GRANT EXECUTE ON WWPRO_API_INVALIDATION TO WARRENP;
    GRANT SELECT ON WWV_USER_CORNERS TO WARRENP;
    GRANT EXECUTE ON WWPOB_PAGE_UTIL TO WARRENP;
    I create a stored procedure
    CREATE OR REPLACE PROCEDURE sp_test (foo IN number) AS
    BEGIN
    NULL;
    END;
    GRANT EXECUTE ON sp_test TO PUBLIC;
    Then I try to create a form based on this procedure and it fails with the above error. I can create this procedure in the PORTAL_DEMO schema without problems. I can also create a form in the WARRENP provider based on PORTAL_DEMO.GIVE_RAISE and that works also.
    I'm on Portal 10G (9.0.4) on Linux, infrastructure database is 9.0.1.5.0.
    Can anyone tell me what I've missed in my setup?
    Thanks

    I've been informed that this is caused by database bug 2651669.

  • Error when trying to create a new movie in iMovie

    I am currently using a late 2013 MacBook Pro with Retina Display, 2.4 GHz Intel Core i5 processor, 4 GB 1600 Mhz DDr3 Memory, and 121 GB Flash Storage, running OS X Yosemite 10.10.2.
    I am having issues creating a new movie in my iMovie application (Versions 10.0.7). After selecting my theme and choosing a name for my new project I receive the following error message.
    I have tried deleting and reinstalling the application, resetting the application preferences, deleting the application preferences and repairing the permissions. Nothing has worked. Thank you for your assistance.

    Hi,
    Try to create the objects again and take the screenshot of SU53 when you get the error and see the authorization object for which you are getting the error here.
    It is possible that you dont have development authorization.
    Also the issue could be that the system is not configured to create the objects begining with Z.
    Check this with basis as well.
    Thanks
    Ajeet

  • CS5 Bridge crashes when trying to create a new subdirectory

    Bridge version 4.*.*, Windows 8.
    Was working perfectly for months then tonight decided to crash when I try to create a new subdirectory.
    When I try to create the subdirectory it closes and I get a window telling me Windows is trying to find a solution.
    What is the issue have how do I get a remedy.
    I thought OK, the application got corrupted, so I will download and install a new version of bridge.
    That seems to not be possible as there is no Bridge for CS5 download on the download menu.
    What is the solution?  Thanks.

    Bridge version 4.*.*, Windows 8.
    Was working perfectly for months then tonight decided to crash when I try to create a new subdirectory.
    When I try to create the subdirectory it closes and I get a window telling me Windows is trying to find a solution.
    What is the issue have how do I get a remedy.
    I thought OK, the application got corrupted, so I will download and install a new version of bridge.
    That seems to not be possible as there is no Bridge for CS5 download on the download menu.
    What is the solution?  Thanks.

  • Query Panel won't open when trying to create a new report

    When I am attempting to create a new report in Desktop Intelligence 11.5.0.0, and choose my universe, my query panel does not open - it appears to be "hidden" somewhere in the background because I cannot click on anything else in DeskI until I hit .  I have tried rebooting and closing and restarting Desktop Intelligence but it doesn't work..Even when I try and view it from an existing report it doesn't work either.

    Hi Alicia,
    Following solution might help you to resolve the issue.
    To resolve the behavior
    1.Click Start > Run. The Run dialog box appears.
    2.Type "regedit" in the Open field. Click OK. The Registry Editor dialog box appears.
    3.Navigate to HKEY_CURRENT_USER\Software\Business Objects\Suite 6.0\default\BusinessObjects\<username>User Prefs\Query Panel.
    4.Right-click Query Panel > click Delete.
    The folder will be recreated the next time the application is opened.
    5.Close the Registry Editor.
    6.Restart the computer.
    The Query Panel will now be available for creating new queries and editing existing queries
    Regards,
    Sarbhjeet Kaur

  • Error when trying to create a new object that begins with Z

    Hi forum,
    When I try to create a new BW object that begins with Z (infofuente, infoarea, component application), I skip the following error.
    Namespace''is not a valid namespace BI
    Message no. R7017
    Diagnosis
    Namespace''must be entered in both the BI RSNSPACE table and the basic table TRSNSPACE or the view V_TRNSPACE. You also have to enter the relevant generation namespace '& V2' in TRNSPACE table. This value is taken from table RSNSPACE.
    Both namespaces must be set to 'Changeable' - providing they are not empty.
    Response System
    You can not edit or create an object in this namespace.
    Procedure
    Use a different name.
    Or contacct your system administrator. He / she can switch to the namespaces' Changeable 'using SE06 transaction, or - if they do not already exist - enter them in the table above named using sm30 transaction.
    If the namespace '& V1' is empty, then the problem is with the generation namespace '/ BIC /'.
    Procedure for System Administration
    I've been following steps said to me, and yet I still persisted error. I am probably missing something ... that may be?
    A greeting,

    Hi,
    Try to create the objects again and take the screenshot of SU53 when you get the error and see the authorization object for which you are getting the error here.
    It is possible that you dont have development authorization.
    Also the issue could be that the system is not configured to create the objects begining with Z.
    Check this with basis as well.
    Thanks
    Ajeet

  • „The system cannot find the file specified. (Exception from HRESULT: 0x80070002)" - Error when trying to create an new controlled GPO

    Hello,
    we were planning to Upgrade from AGPM 4.0 to AGPM 4.0 SP2. The new AGPM should be placed on a new server. Additionally we created a new service account as the password of the old service account has been lost. We granted the new service account Full Rights
    in "Domain Delegeation" and "Product Delegation", then stopped the AGPM Service on the old server.
    On the new server AGPM was installed using the new service account, then the service was stopped and the archive was copied rom the old to the new server. The customer could edit policies, but not deploy them. Because of this, we changed back to the old
    server, but copied the folders that were changed on the new server to keep them up to date.
    Now creating a controlled Group Policy from a template causes the error
    „The system cannot find the file specified. (Exception from HRESULT: 0x80070002). We tried several templates and even created new ones but the problem persists.
    The following things do work:
    - editing a controlled policy
    - renaming a controlled policy
    - check in/check out of a policy
    - set a uncontrolled policy to controlled (needs to grant the serviceaccount Full rights to the policy before)
    - deletion of a controlled policy
    - creating a template from a policy
    Thank you in advance for your help.

    0x80070002 usually means that the source could not be found or located. Make sue that the FQDN path to your templates is the correct one as well as your DNS is
    properly configured.
    sharing some manuals @: http://1drv.ms/1kk6u6j

  • Error when trying to create a 'New Chat'

    Using 10.3.9, whenever I try and create a new chat to speak with multiple friends, i get this error:
    NSImageCacheException:
    Can't cache image
    It does not crash the application, but I cannot add anybody to the chat. It completely locks up that particular 'new chat' but my other chats continue to work with no problems. Any suggestions?
    eMac G4   Mac OS X (10.3.9)  

    Hi Beau,
    I take it this is when you are starting a group Text chat as opposed to a 1-1 Text chat.
    A "plain" Text chat can manage on the login port of 5190 on the TCP protocol to pass the data through a modem or router's firewall.
    A Group Chat (or Direct chat and file sending) need to have this port open to the UDP protocol.
    Do you know if this is a port and protocol that is open or are you using UPnP in your device(s) ?
    8:11 PM Friday; December 15, 2006

  • "Unsorted bookmarks" got renamed when trying to create a new folder?

    I added a new bookmark by clicking the little star in the adress bar, then clicked it again to edit the bookmark. I wanted to move it out of the "Unsorted bookmarks" folder into a new folder named "Minecraft stuff", so i clicked "Bookmark menu" and then clicked "New folder".
    It created a new folder for me to rename, so I named it "Minecraft stuff", but then when i clicked elsewhere, the folder disappeared. And then I noticed that "Unsorted bookmarks had been renamed into "Minecraft stuff" :/
    I cannot find anywhere how to undo this.
    When i go into the bookmark library, it is still called minecraft stuff, but down below in the little box it says "Name: Unsorted bookmarks". Really weird...

    #Click the Firefox button, go to Bookmarks, Show All Bookmarks.<br><br>
    #Go to the Unsorted folder, click the bookmark to highlight it, then click ''Organize ''(top left), then Move.
    If you just want to rename the folder, hit CTRL+I to open the sidebar, right click the folder, go to Properties and then rename it in the dialog box which appears.

  • Disk utility is crashing when trying to create a new image

    Seriously need some help if anyone has an idea of why disk utility is crashing while trying to create a disk image. I'm not finding any other info on this issue.
    My HD is failing and being replaced tomorrow and I'm desperately trying to create disk images of both my mac HD and of bootcamp for the new drive being installed.
    Any recommendations or suggestions would be truly appreciated.

    Thank you for responding so quickly. I do have Carbon Copy Cloner, but if disk utility isn't working, getting it to restore is going to be an issue, though haven't attempted a restore since the HD has to be replaced.
    CCC also doesn't clone bootcamp either unfortunately.
    Currently running "verify permissions" using Disk Utility and so far so good, it hasn't crashed, it seems to be an issue related to imaging with disk utility.
    Then I am going to attempt using the install disk to see if I can get disk utility again and try imaging Bootcamp again too.

  • Problem when trying  to create a new user

    Hi experts!!
    I am working on EP 7.0  ABAP & JAVA stack, so the UME datasource is the R3_DATASOURCE.
    When i try to create to create a new user from the portal i get the following message:
    Current user has user creation permissions in the UME, but cannot create users in the back-end system (data source). The original and possibly untranslated message was: "No active writeable datasource found for user creation, check your Persistence Configuration.".
    But i am actually able to create users to the ABAP client.
    Any ideas???
    Please help!!
    Thank you in advance!!!

    Hi,
    Have a look at this link...
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/af3ac012d32e78e10000000a155369/frameset.htm
    Below is the part of text I got from same link.....
    The file dataSourceConfiguration_abap.xml enables you to create users only in the ABAP system. Once the UME is configured to use the AS ABAP as a data source, you cannot create users in the database of the AS Java; though you can still delete and edit existing users. ABAP roles determine your write access to the ABAP user management. If you have read-only access, you cannot create any users. The UME does not default to creating users in the local database of the AS Java. Nor can you edit or delete users in the AS ABAP without read-write access.
    Regards,
    Srinivas.

Maybe you are looking for

  • No Longer Can Connect to Server on Apple TV?

    Hi Everyone, Where to begin.  My Apple TV stopped working approximately three weeks ago.  I remember it well.  I had just purchased an album on iTunes using my Apple TV and the screen blinked about six times.  Then, it turned off.  I'm honestly not s

  • Why can't Preview display pdf 1.5 files correctly ?  A bug ?

    I have been trying to figure out why Preview and Safari have a problem with some PDF files.  The problem is that some text is not shown in the correct font. Text which should be in bold, italic or bold italic serif font (e.g. Times New Roman) is bein

  • ITunes account without credit card or paypal

    Is there a way of registering an account without credit card or paypal?

  • Dynamic list and thumb loops

    hello I try to create a dynamique list with thums loops associates (to describe a stuff to sell) and it work fine when I select from a list (URL parametre) But I would like to navigate in my detail page (with the loop thumb) whit the next or last lin

  • Error when syncing groups

    I've got a test install of Vibe, and when I try to do an LDAP sync, with the option to automatically create group profiles, I get an error in catalina.out: 2014-01-21 21:07:27,272 WARN [http-8080-1] [org.kablink.teaming.spring.web.portlet.DispatcherP