Error installing support OLL packaged Application objects

Hello

I am installing OLL packaged Application | http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/DB/Apex/R41/inst_pkgapp/inst_pkgapp.htm#top

but during the installation of supported objects, I got error when executing code in 'create_package_body '.
Error on line 274: PLS-00201: identifier 'UTL_TCP' must be declared
create or replace package body eba_oll_log
as

g_start_time    number;


procedure log_init
is
begin
    g_start_time := dbms_utility.get_time;
end log_init;



procedure log_page_view
is
begin

   insert into eba_oll_page_views
      ( APEX_USER,
        PAGE_ID,
        PAGE_NAME,
        VIEW_DATE,
        TS, 
        ELAPSED_TIME,
        IP_ADDRESS,
        AGENT,
        APEX_SESSION_ID,
        CONTENT_ID,
        CONTENT_TITLE )
   values
      ( v('APP_USER'),
        v('APP_PAGE_ID'),
        wwv_flow.g_step_title,
        trunc(sysdate,'DD'),
        systimestamp, 
        (dbms_utility.get_time-g_start_time)*(.01), 
        owa_util.get_cgi_env('REMOTE_ADDR'), 
        owa_util.get_cgi_env('HTTP_USER_AGENT'), 
        v('APP_SESSION'),
        case when v('APP_PAGE_ID') = 24
             then v('P24_CONTENT_ID')
             else null
             end,
        case when v('APP_PAGE_ID') = 24
             then v('P24_CONTENT_TITLE')
             else null
             end );

   if v('APP_PAGE_ID') = 24 then

      insert into eba_oll_content_views
         ( APEX_USER,
           VIEW_DATE,
           TS, 
           IP_ADDRESS,
           AGENT,
           APEX_SESSION_ID,
           CONTENT_ID,
           CONTENT_TITLE,
           NOTE )
      values
         ( v('APP_USER'),
           trunc(sysdate,'DD'),
           systimestamp, 
           owa_util.get_cgi_env('REMOTE_ADDR'), 
           owa_util.get_cgi_env('HTTP_USER_AGENT'), 
           v('APP_SESSION'),
           v('P24_CONTENT_ID'),
           v('P24_CONTENT_TITLE'),
           'Viewed' );

   end if;

   commit;

end log_page_view;



procedure log_content_click
is
begin

   insert into eba_oll_content_views
      ( APEX_USER,
        VIEW_DATE,
        TS, 
        IP_ADDRESS,
        AGENT,
        APEX_SESSION_ID,
        CONTENT_ID,
        CONTENT_TITLE,
        NOTE )
   values
      ( v('APP_USER'),
        trunc(sysdate,'DD'),
        systimestamp, 
        owa_util.get_cgi_env('REMOTE_ADDR'), 
        owa_util.get_cgi_env('HTTP_USER_AGENT'), 
        v('APP_SESSION'),
        v('P24_CONTENT_ID'),
        v('P24_CONTENT_TITLE'),
        'Launched' );

   commit;

end log_content_click;


end eba_oll_log;
/


create or replace package body eba_oll_api
as


function gen_id 
   return number
is
   l_id  number;
begin
   select to_number(sys_guid(), 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
     into l_id
     from dual;

   return l_id;
end gen_id;


function eba_oll_tags_cleaner (
    p_tags  in varchar2,
    p_case  in varchar2 default 'U' ) return varchar2
is
    type tags is table of varchar2(255) index by varchar2(255);
    l_tags_a        tags;
    l_tag           varchar2(255);
    l_tags          apex_application_global.vc_arr2;
    l_tags_string   varchar2(32767);
    i               integer;
begin

    l_tags := apex_util.string_to_table(p_tags,',');

    for i in 1..l_tags.count loop
        --remove all whitespace, including tabs, spaces, line feeds and carraige returns with a single space
        l_tag := substr(trim(regexp_replace(l_tags(i),'[[:space:]]{1,}',' ')),1,255);

        if l_tag is not null and l_tag != ' ' then
            if p_case = 'U' then
                l_tag := upper(l_tag);
            elsif p_case = 'L' then
                l_tag := lower(l_tag);
            end if;
            --add it to the associative array, if it is a duplicate, it will just be replaced
            l_tags_a(l_tag) := l_tag;
        end if;
    end loop;

    l_tag := null;

    l_tag := l_tags_a.first;

    while l_tag is not null loop
        l_tags_string := l_tags_string||l_tag;
        if l_tag != l_tags_a.last then
            l_tags_string := l_tags_string||', ';
        end if;
        l_tag := l_tags_a.next(l_tag);
    end loop;

    return substr(l_tags_string,1,4000);

end eba_oll_tags_cleaner;


procedure eba_oll_tag_sync (
    p_new_tags          in varchar2,
    p_old_tags          in varchar2,
    p_content_type      in varchar2,
    p_content_id        in number )
as
    type tags is table of varchar2(255) index by varchar2(255);
    l_new_tags_a    tags;
    l_old_tags_a    tags;
    l_new_tags      apex_application_global.vc_arr2;
    l_old_tags      apex_application_global.vc_arr2;
    l_merge_tags    apex_application_global.vc_arr2;
    l_dummy_tag     varchar2(255);
    i               integer;
begin

    l_old_tags := apex_util.string_to_table(p_old_tags,', ');
    l_new_tags := apex_util.string_to_table(p_new_tags,', ');

    if l_old_tags.count > 0 then --do inserts and deletes

        --build the associative arrays
        for i in 1..l_old_tags.count loop
            l_old_tags_a(l_old_tags(i)) := l_old_tags(i);
        end loop;

        for i in 1..l_new_tags.count loop
            l_new_tags_a(l_new_tags(i)) := l_new_tags(i);
        end loop;

        --do the inserts
        for i in 1..l_new_tags.count loop
            begin
                l_dummy_tag := l_old_tags_a(l_new_tags(i));
            exception when no_data_found then
                insert into eba_oll_tags (tag, content_id, content_type )
                    values (l_new_tags(i), p_content_id, p_content_type );
                l_merge_tags(l_merge_tags.count + 1) := l_new_tags(i);
            end;
        end loop;

        --do the deletes
        for i in 1..l_old_tags.count loop
            begin
                l_dummy_tag := l_new_tags_a(l_old_tags(i));
            exception when no_data_found then
                delete from eba_oll_tags where content_id = p_content_id and tag = l_old_tags(i);
                l_merge_tags(l_merge_tags.count + 1) := l_old_tags(i);
            end;
        end loop;
    else --just do inserts
        for i in 1..l_new_tags.count loop
            insert into eba_oll_tags (tag, content_id, content_type )
                values (l_new_tags(i), p_content_id, p_content_type );
            l_merge_tags(l_merge_tags.count + 1) := l_new_tags(i);
        end loop;
    end if;

    for i in 1..l_merge_tags.count loop
        merge into eba_oll_tags_type_sum s
        using (select count(*) tag_count
                 from eba_oll_tags
                where tag = l_merge_tags(i) and content_type = p_content_type ) t
           on (s.tag = l_merge_tags(i) and s.content_type = p_content_type )
         when not matched then insert (tag, content_type, tag_count)
                               values (l_merge_tags(i), p_content_type, t.tag_count)
         when matched then update set s.tag_count = t.tag_count;

        merge into eba_oll_tags_sum s
        using (select sum(tag_count) tag_count
                 from eba_oll_tags_type_sum
                where tag = l_merge_tags(i) ) t
           on (s.tag = l_merge_tags(i) )
         when not matched then insert (tag, tag_count)
                               values (l_merge_tags(i), t.tag_count)
         when matched then update set s.tag_count = t.tag_count;
    end loop;

end eba_oll_tag_sync;

procedure render_tag_cloud (
   p_selection          in varchar2 default null,
   p_app_id             in number,
   p_session_id         in number,
   p_min_nbr_tags       in number default 1,
   p_max                in number default 100,
   p_limit              in number default 10000,
   p_link_to_page       in varchar2 default '2',
   p_tag_item_filter    in varchar2 default 'P2_TAGS',
   p_clear_cache        in varchar2 default '2,CIR,RIR',
   p_more_page          in varchar2 default '62' )
as
   l_printed_records    number := 0;
   l_available_records  number := 20;
   l_max                number;
   l_min                number;

   l_class_size         number;
   l_class              varchar2(30);

   type l_tagtype is table of varchar2(2000);
   l_tags l_tagtype;

   type l_numtype is table of number;
   l_cnts l_numtype;

   l_size number;
   l_total number :=0;

   l_buffer varchar2(32676);   

   CURSOR c_all_tags
   IS
       select tag, c from (
       select t.tag, count(*) c
         from eba_oll_content c,
              eba_oll_tags t
        where c.content_id = t.content_id
          and c.display_yn = 'Y'
          and (p_selection is null or
               (p_selection is not null and
               (   (substr(p_selection,1,1) = 'R' and
                    substr(p_selection,2) in (select release_id
                                                from eba_oll_content_products cp
                                               where cp.content_id = c.content_id))
                or (substr(p_selection,1,1) = 'C' and
                    substr(p_selection,2) in (select product_id
                                                from eba_oll_content_products cp
                                               where cp.content_id = c.content_id))
                or (substr(p_selection,1,1) = 'P' and
                    (substr(p_selection,2) in (select product_id
                                                 from eba_oll_content_products cp
                                                where cp.content_id = c.content_id) or
                     substr(p_selection,2) in (select p.parent_product_id
                                                 from eba_oll_content_products cp,
                                                      eba_oll_products p
                                                where cp.content_id = c.content_id
                                                  and cp.product_id = p.product_id)))
                or (substr(p_selection,1,1) = 'G' and
                    (substr(p_selection,2) in (select pg.group_id
                                                 from eba_oll_product_groupings pg,
                                                      eba_oll_content_products cp
                                                where pg.product_id = cp.product_id
                                                  and cp.content_id = c.content_id) or
                     substr(p_selection,2) in (select pg.group_id
                                                 from eba_oll_product_groupings pg,
                                                      eba_oll_products p,
                                                      eba_oll_content_products cp
                                                where pg.product_id = p.parent_product_id
                                                  and p.product_id = cp.product_id
                                                  and cp.content_id = c.content_id)))
               )))
        group by tag
       ) x where rownum < p_limit
             and c >= p_min_nbr_tags
        order by upper(tag) ;

begin

   -------------------------
   -- Fetch tags into arrays
   --
   open c_all_tags;
      loop
          fetch c_all_tags bulk collect into l_tags,l_cnts limit p_limit;
          exit;
      end loop;
   close c_all_tags;

   l_available_records := l_tags.count;


   -----------------------------------------------
   -- Determine total count and maximum tag counts
   --
   l_max := 0;
   l_min := 1000;
   FOR i in l_cnts.first..l_cnts.last loop
      l_total := l_total + l_cnts(i);
      if l_cnts(i) > l_max then
         l_max := l_cnts(i);
      end if;
      if l_cnts(i) < l_min then
         l_min := l_cnts(i);
      end if;
   end loop;
   if l_max = 0 then l_max := 1; end if;


   l_class_size := round((l_max-l_min)/6);

   ------------------------
   -- Generate tag cloud --
   --
   
   sys.htp.prn('<div class="tagCloud"><ul>');

   for i in l_tags.first..l_tags.last loop
       l_printed_records := l_printed_records + 1;

       if l_cnts(i) < l_min + l_class_size then
          l_class := 'size1';
       elsif l_cnts(i) < l_min + (l_class_size*2) then
          l_class := 'size2';
       elsif l_cnts(i) < l_min + (l_class_size*3) then
          l_class := 'size3';
       elsif l_cnts(i) < l_min + (l_class_size*4) then
          l_class := 'size4';
       elsif l_cnts(i) < l_min + (l_class_size*5) then
          l_class := 'size5';
       else l_class := 'size6';
       end if;      
       
       l_buffer := '<li><a class="'||l_class||'" href="'||
              'f?p='||p_app_id||':'||p_link_to_page||':'||p_session_id||':::'||p_clear_cache||':'||
              p_tag_item_filter||':'||htf.escape_sc(l_tags(i))||'">'||
              htf.escape_sc(l_tags(i)) || '<span>' || l_cnts(i) || '</span></a></li>';

       sys.htp.prn(l_buffer);

       l_buffer := '';

       if  l_printed_records > p_max then
           exit;
       end if;
   end loop;

   sys.htp.prn('</ul></div>');


   -- print if there's more
   if l_tags.count - l_printed_records != 0 then
           htp.prn('<p><a href="f?p='||p_app_id||':'||htf.escape_sc(p_more_page)||
                 ':'||p_session_id||':::'||htf.escape_sc(p_more_page)||'">View all tags</a></p>');
   end if;


   exception when others then
      sys.htp.prn('<p>No tags found.</p>');
end render_tag_cloud; 


procedure email_when_feedback (
   p_feedback_id  in  number,
   p_host_url     in  varchar2,
   p_app_id       in  number )
is
   l_body       clob;
   l_body_html  clob;
begin

for c1 in (
   select f.feedback_comment, f.feedback_by,
          c.title, nvl(ct.feedback_contacts,'[email protected]') email
     from eba_oll_content_feedback f,
          eba_oll_content c,
          eba_oll_team ct
    where f.id = p_feedback_id
      and f.content_id = c.content_id
      and c.team_id = ct.team_id (+) )
loop

   l_body := 'You have received feedback for a piece of content you own in the Oracle Learning Library (OLL) Application.

Content: '|| c1.title || utl_tcp.crlf || '
Feedback: '|| c1.feedback_comment || utl_tcp.crlf || '
Left by: '|| lower(c1.feedback_by) ||'

You can respond via the OLL Application, '||p_host_url||'f?p='||p_app_id||':47:::NO::P47_ID:' || p_feedback_id || '.';


   l_body_html := '<div style="border: 1px solid #DDD; background-color: #F8F8F8; width: 460px; margin: 0 auto; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 20px;">
<p style="font: bold 12px/16px Arial, sans-serif; margin: 0 0 10px 0; padding: 0;">
You have received feedback for a piece of content you own in the Oracle Learning Library (OLL) Application.
</p>
<table style="width: 100%;" cellspacing="0" cellpadding="0" border="0">
<tr>' || utl_tcp.crlf || '
<td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Content</td>
<td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;"><a href="#" style="color: #000">'||c1.title||'</a></td>
</tr>
<tr>' || utl_tcp.crlf || '
<td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Feedback</td>
<td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.feedback_comment,CHR(10),'<br/>')||'</td>
</tr>
<tr>' || utl_tcp.crlf || '
<td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Left by</td>
<td style="font: bold 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||lower(c1.feedback_by)||'</td>
</tr>
<tr>' || utl_tcp.crlf || '
<td colspan="2" style="text-align: center; font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">
<a href="'||p_host_url||'f?p='||p_app_id||':47:::NO::P47_ID:' || p_feedback_id ||'" style="display: block; padding: 10px; background-color: #EEE; font: bold 16px/16px Arial, sans-serif; color: #444">Respond to this Feedback</a>
</td>
</tr>
</table>
</div>';

   apex_mail.send (
      p_to        => c1.email,
      p_from      => '[email protected]',
      p_subj      => 'OLL - New Feedback for your team',
      p_body      => l_body,
      p_body_html => l_body_html );

end loop;

end email_when_feedback;



procedure email_when_response (
   p_feedback_id  in  number,
   p_host_url     in  varchar2,
   p_app_id       in  number )
is
   l_body       clob;
   l_body_html  clob;
begin

for c1 in (
   select f.feedback_comment, f.feedback_by, f.response, c.title
     from eba_oll_content_feedback f,
          eba_oll_content c
    where f.id = p_feedback_id
      and f.content_id = c.content_id )
loop

   l_body := 'You have received a response to your feedback left in the Oracle Learning Library (OLL) Application.

Content: '|| c1.title || '
Feedback: '|| c1.feedback_comment || '
Response: '|| c1.response || '

You can also view this response via the OLL Application, '||p_host_url||'f?p='||p_app_id||':60:::NO::IR_ID:' || p_feedback_id || '.';


      l_body_html := '<div style="border: 1px solid #DDD; background-color: #F8F8F8; width: 460px; margin: 0 auto; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 20px;">
<p style="font: bold 12px/16px Arial, sans-serif; margin: 0 0 10px 0; padding: 0;">
You have received a response to your feedback left in the Oracle Learning Library (OLL) Application.
</p>
<table style="width: 100%;" cellspacing="0" cellpadding="0" border="0">
<tr>' || utl_tcp.crlf || '
<td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Content</td>
<td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;"><a href="#" style="color: #000">'||c1.title||'</a></td>
</tr>
<tr>' || utl_tcp.crlf || '
<td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Feedback</td>
<td style="font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.feedback_comment,CHR(10),'<br/>')||'</td>
</tr>
<tr>' || utl_tcp.crlf || '
<td style="font: bold 12px/16px Arial, sans-serif; color: #666; padding: 0 10px 10px 0; vertical-align: top;">Response</td>
<td style="font: bold 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">'||replace(c1.response,CHR(10),'<br/>')||'</td>
</tr>
<tr>' || utl_tcp.crlf || '
<td colspan="2" style="text-align: center; font: normal 12px/16px Arial, sans-serif; padding: 0 10px 10px 0; vertical-align: top;">
<a href="'||p_host_url||'f?p='||p_app_id||':60:::NO::IR_ID:' || p_feedback_id ||'" style="display: block; padding: 10px; background-color: #EEE; font: bold 16px/16px Arial, sans-serif; color: #444">View Response in OLL Application</a>
</td>
</tr>
</table>
</div>';

   apex_mail.send (
      p_to        => c1.feedback_by,
      p_from      => '[email protected]',
      p_subj      => 'Oracle Learning Library - Response to your Feedback',
      p_body      => l_body,
      p_body_html => l_body_html ); 

end loop;

end email_when_response;



end eba_oll_api;
/
Error on line 274: PLS-00201: identifier 'UTL_TCP' must be declared

Published by: Fateh January 13, 2012 07:32

Fateh,

It would seem that your schema of Apex/user doesn't have access to, or otherwise know the utl_tcp Oracle package. Try running it in your workshop of Apex SQL > SQL commands.

desc utl_tcp

If you do not get a description of the utl_tcp package then you will know that your Apex selected scheme lacks the permissions to run this package. Assuming that this is the case, then you will need someone with the correct privileges to run:

grant execute on utl_tcp to [your_schema_name]

Hope that helps.

Earl

Tags: Database

Similar Questions

  • error when installing a packaged application

    Hello

    I get the following error when trying to install the application "Sample Master Detail" in my account to oracle apex on the web. All other install without problem. What could be?

    Thank you
    Juan


    Execution of the statement was not successful. ORA-00001: unique constraint (APEX_040200.WWV_FLOW_MESSAGES_IDX1) violated

    declare
    h varchar2 (32767): = null;

    Start

    h : = h || "Help";

    () wwv_flow_api.create_message
    P_ID = > 2456294651379654494 + wwv_flow_api.g_id_offset,
    p_flow_id = > wwv_flow.g_flow_id,
    p_name = > 'HELP. "
    p_message_language = > 'fr ',.
    p_message_text = > h);
    null;

    end;

    ORA-00001: unique constraint (APEX_040200.WWV_FLOW_MESSAGES_IDX1) violated

    Hi Jozef,

    Just to let you know, the issue of the installation of packaged application on apex.oracle.com example dialog box has now been resolved.

    My apologies for any inconvenience that the issue may have caused.

    Kind regards
    Hilary

  • Cannot install my printer/error message-unable to create the object print dell v505, that the printer is not compatible with a polcy enabled on your computer that blocks NT 4.0 drivers (1930)

    Original title: cannot install my printer error message

    I am trying to install my printer to dell v505 from the factory disc and get this error message: failed to create the object print dell v505 printer is not compatible with a polcy enabled on your computer that blocks NT 4.0 drivers (1930)

    Any help, need a lot.

    Hello

     
    1. what version of Windows are you using?
    2 did you the chnages in the computer before this problem?
     
    I would suggest trying the following methods and check.
     
    Method 1: Run the fix, install the printer and check
    Diagnose and automatically fix problems printing and printer
    http://support.Microsoft.com/mats/printing_problems/
     
    Method 2:
    Error message when you try to connect to a printer in Windows Vista: "the printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
    http://support.Microsoft.com/kb/931719
    Method 3: Install the printer in a clean boot state.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7.
    http://support.Microsoft.com/kb/929135
    Note: Please, go to step 7 of the Kb to maintain the computer to normal startup.
     
    You can download the latest driver for your printer from the link below.
    http://www.Dell.com/support/drivers/us/en/04
     
     
    You can also check:
    Printer driver is not Compatible if a policy is enabled on your computer.
    http://support.Microsoft.com/kb/282011
     
    Error message when you try to connect to a printer in Windows Vista: "the printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
    http://support.Microsoft.com/kb/931719
  • my computer will not install itunes 10.5, it tells me "Setup has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2330.

    original title: Itunes problem

    my computer will not install itunes 10.5, it tells me "Setup has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2330. "What should I do?

    Contact the manufacturer (Apple) of the application (iTunes) you are having problems with.

    Uninstall all previous versions, try to download (re-record not running) and then do a right click on it and RUN AS ADMINISTRATOR.

    (Vista 32-bit or 64-bit)?

  • Apex 4.2 - packaged application setup error

    See http://screencast.com/t/2OPt7JrSjaMQ

    The upgade of 4.0 to 4.2 went well, existing applications work, Builder works very well. But any of the bundled applications install, each of them fail with this error. Is there some step post-upgrade to fill to make it work?

    In addition, it does not appear as we can select the id of the application during the installation of these applications! Our environment has a convention of sorts, application ID. Is there a way to bypass the app id?

    Thank you

    In my view, there is a patch 4.2 APEX that will help the problem: cannot install sample master retail (packaged Application) & Re: error while installing a packaged application

    Thank you

    Tony Miller
    Ruckersville, WILL

  • ERROR: No supported CPU installed, HP P6310F

    HP p6310F

    Windows 7 Home Edition

    ERROR: No supported CPU installed

    CPU replacement

    Hello!  I replace the CPU in my HP P6310F.  According to this literature, http://support.hp.com/us-en/document/c01949155 , I have an AMD Phenom II X 4 Quad-Core 9xx/9xxe/8xx (Deneb).  My understanding has always been that "9xx" means any phenom II in the class of the 900 series.

    I bought a retail Phenom II X 4 965 Black Edition, part HDZ965FBGMBOX number, installed and get the error message: CPU support is not installed message.  After searching and reading about the error message and other messages, it seems it might be due to the 'black edition' and/or because it is 125 watts.  It was the answer to a few others in the same situation as me.

    Can you please tell me why this CPU is not compatible and please help me with a list of compatible CPU?

    This is also in the 9xx series, but is it at 125W

    HDZ955FBK4DGM AMD Phenom II X processor 4 955 - Quad Core, 6 MB of Cache L3, 2 MB L2 Cache, 3.20 GHz, Socket AM3, 125W, fanless, OEM

    This lies in the 9xx series and is 95W

    AMD HDX945WFGIBOX Phenom II X 4 945 Quad Core Processor - 3.00 GHz, 6 MB of Cache, bus front to 2000 MHz (4000 MT/s), retail, Socket AM3, processor with fan

    The stock processor is an AMD Athlon II X 4 630, 95W

    I can provide any other information you may need, thank you very much!

    There is no AMD Black Edition CPU that are compatible with any PC HP desktop.

    That's what the problem is related to. Black Edition CPU are special processors who have discovered the multipliers for amateur quality motherboards. You could not access the multipliers to overclock the CPU with the motherboard you have installed it anyway.

    Even if you choose, buy and install one of the microprocessors in maintenance & service Guide there is no guarantee HP which will be exploited.

    You should also be aware that installing a different CPU than your office has been delivered with the warranty.

    Sorry to bear bad news.

    The good news is that the processors listed in the maintenance department & guide reputable reports of upgrade in discussions in the forum, to run.

    Best regards
    ERICO

  • Error installing 32 bit application in Windows Server 2012 R2 Datacenter edition

    Hi all

    I have a software that worked very well in a 32-bit of Windows Server 2008, I installed the same software in a 64-bit Windows server 2012 R2.

    I get an "error 48 error loading the dll" error when I run.

    I tried to register the dll through command regsvr32. I get an error "dll was loaded, but the DllRegisterServer entry point was not found."

    I checked the dependence of the dll with other files you use Depends.exe

    I tried to copy the dll in the other place, but none of them worked.

    I still get the same error when I run the application.

    Please help us with this if you know the solution.

    Forgive me if this isn't the correct phase and guide me to the correct page.

    Thanks in advance.

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *
  • I get "error number 0 x 80040706 Description: object reference not set" while trying to install Empire Earth 2

    Original title: error number 0 x 80040706 Description: object reference not set

    I can't install Empire Earth 2 on my PC because of this error. It is not the disc and I have no drivers up to date. I've tried every suggestion I could find but nothing works. Help!

    Its OK, I found the problem. I recently downloaded EMET 2.0 so I checked it and replace the recommended settings and it worked. I don't know why he did just made even though I thought EMET should only apply to internet explore?

  • Cannot install Anno 2070 error: the installed version of the application could not be determined.

    Original title: Impossible to install Anno 2070

    Hello

    I don't know if this is the right place for questions related game, but I tried the official forum and have had no luck with the solutions presented.

    I've installed Anno 2070 (Ubisoft) and played. By a strange Act of Murphy's law the game no longer works, so I uninstalled and tried reinstalling, but whenever I try to install it, I get this message:
    The installed version of the application could not be determined.
    The installation will end today.
    What can I do?

    Hello

    1. How are you trying to install?

    2. which version of the operating system is installed on your computer?

    I suggest you to try the steps below and check if it helps.

    Method 1: Set up your computer in a clean boot state and then try to install the game.

    By setting your boot system minimum state helps determine if third-party applications or startup items are causing the problem.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7:
    http://support.Microsoft.com/kb/929135

    Note: After the boot minimum troubleshooting step, follow step 7 in the link provided to return the computer to a Normal startup mode.

    Method 2: Solve the problems installing and uninstalling the programs on Windows computers. http://support.Microsoft.com/kb/2438651

    If the problem persists, then try to keep in touch with the support of UBISOFT.

    http://www.Ubi.com/us/games/info.aspx?pid=9651

    Hope this information is useful.

  • To run all the applications of the laptop or install download applications works does not error message indicating that the application is not valid "win32.exe or win32.application.

    To run all the applications of the laptop or install download applications works does not error message indicating that the application is not valid "win32.exe or win32.application.

    Hello m.velentino,

    Not sure if you are still having the error message isn't valid win32.applicaiton.

    Get the error: not a valid 32-bit application can have several origins:
    I have listed some of them below.

    The file is corrupted, bad or missing.
    -If the hard disk is damaged or hurt it cause work programs to fail, either because not all data can be read from the hard drive the program is damaged on the drive. Run scandisk and defrag on the hard disk to check for potential errors.
    -If you run the program from a shortcut on the computer, verify that the program is still on the computer. In some cases if the program is no longer installed on the computer, you can get this error.

    File is not designed for your version of Windows:
    -If you try to run a program that is not designed for your version of Windows, you can get this error.
    -Although many old programs designed to work in older versions of Windows will work with new versions of Windows, unfortunately, not all programs will not work.
    -If the program is an MS-DOS program more former start program or Windows, you can get this error.
    -If the program is designed for a 64-bit version of Windows and you are running in a 32-bit version of Windows, it will not work and generate this error.

    File is a virus, worm or other malicious program file.
    -
    This error can be generated by a file that is a virus, worm, Trojan horse or other type of malware file. Often, this will result because the antivirus installed on the computer will not allow the file to install or run. Try to analyze the file to check, it is not a virus or infected.
    -If the file has been checked and is clean, it is always possible that the virus protection program or a another program installed on the computer is at the origin of questions during installation or execution of the program. Start the computer in Mode safe and try to run the program. start the computer in Mode safe will be that nothing is running in the background that could cause this problem.

    Hardware incompatibility.

    -If you get this error during the installation of a program, it is also possible that the CD-ROM drive or the drive that you are installing the program from is not compatible with Windows or has drivers that are not compatible with Windows.
    -Download the latest drivers for your CD player or other of the manufacturer of the computer or the manufacturer of the equipment. (Microsoft does not pilot for other materials)

    Let us know if these suggestions help you.

    Marilyn

  • CC does not refresh on my Win7 machine. I tried several times and it closes after update download and try to install. Downloaed new application from Adobe, downloaded, tried to install it and received the error 50. Help!

    CC does not refresh on my Win7 machine. I tried several times and it closes after update download and try to install. Downloaded new application from Adobe, downloaded and tried to install received error 50. Help!

    Hello

    as strange as it may seem I'm afraid it is a challenge for Creative tool Adobe cleaning of cloud.

    Sometimes - for some reason-CC "unwilling" work. In this case you should CC completely remove and reinstall by using Adobe Creative cloud cleaning tool. (A try to uninstall by own resources is not enough!)

    I quote:... helps resolve installation problems for Adobe Creative Cloud and Adobe Creative Suite (CS3 - CS6) applications. The tool removes the records facility for preliminary facilities of Cloud applications or Creative Suite creative. It does not affect existing installations of earlier versions of Creative Suite or creative Cloud applications.

    Please use: l http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.htm and follow the prescribed sequence of operations

    Sometimes, the "opm.db" file is the culprit. In this case, you must remove it.

    If necessary and for questions and so "open" Please use the cat, plus I had the best experiences.

    Hans-Günter

  • Impossible to install Ad-ware indicates application mia.lib not found error

    I can not install Ad-aware for 2 reasons that the mia.lib of the application has not been found and the system administrator has set policies to prevent this action (which, as an administrator, I did not) Please help

    original title: ware to install the mia.lib application

    Hello Taghid,

    Regarding the Admin Policy > right click on the Ad-Aware setup.exe > run as administrator.

  • BB10 WebWorks Debug Error - Please enter a valid application id

    Need help to solve a WebWorks BB10 issue when debugging.

    Packaging error question

    The command line, I ran the command standard packing

    bbwp [location of project].zip -d -o [locationofoutput]
    

    Resulting in:

    [INFO]       Populating application source
    [INFO]       Parsing config.xml
    [INFO]       Error: Please enter a valid application id
    

    Here is my file config.xml, I'm actually building the sample bbUI.js

    
    http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.2">
      App name
      A sample description
      My Name
      
      
      
        
      
      
      http://chart.apis.google.com" subdomains="true" />
      
      
      
      
      
      
      
      
    
    

    issue of token bbwp. Properties & debug
     

    Also... I know in the previous SDK WebWorks, you edit bbwp.properties and add a line pointing to the location of your debugging token.

    Question:

    • Where is the bbwp.properties file in the new SDK? Where can I specify my symbolic debug location?

    Thank you!

    Hello

    The id is an alphanumeric property of the principal element of the .  It cannot contain spaces or

    
    http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.2" id="yourIDhere">
    

    You don't need to edit the bbwp.properties file.  The Debug documentation token specifies where to put the debugging token file.  To enable debugging symbolic support, simply build your application with the d flag.

    Hope that helps!

  • dbAdapter fails during the call to procedure package oracle object type in the parameter out

    JDeveloper 1.1.1.6

    Oracle 11g

    Existing package procedure is defined with the table of objects in input parameters and.

    Package myPackage

    procedure processRecon (numero_projet VARCHAR2,

    INST_ID select NUMBER,

    recon_type VARCHAR2,

    gis_design_stock GMPVT. GMPVT_GIS_DESIGN_STOCK_T,

    stock_uop GMPVT. GMPVT_STOCK_CODES_T,

    x_status OUT VARCHAR2,

    x_escalation OUT VARCHAR2,

    x_recon_error ON GMPVT. GMPVT_GIS_RECON_ERR_T) IS

    GMPVT. GMPVT_GIS_RECON_ERR_T is an array of GMPVT objects. GMPVT_GIS_RECON_ERR, who has 12 fields including the new I added it.

    I have added a new field to the GMPVT object. GMPVT_GIS_DESIGN_STOCK, where GMPVT. GMPVT_GIS_DESIGN_STOCK_T is a table of GMPVT. GMPVT_GIS_DESIGN_STOCK, no problems encountered during the test.

    Next, I added a new field for the object of type GMPVT. GMPVT_GIS_RECON_ERR, the following error below occurs when the DBAdapter is called

    < Summary > Exception occurred when the link was invoked. Exception occurred during invocation of the JCA binding: "JCA binding run operation 'processStockRecon' failed due to the reference: Interaction processing error." Error in the processing of applications from running. GMP_SOA_RECON_PKG. Interaction of the PROCESSRECON API. An error occurred during the processing of the interaction to invoke APPS. GMP_SOA_RECON_PKG. PROCESSRECON API. Cause: java.lang.ArrayIndexOutOfBoundsException: 12 check to make sure that the XML file containing the data of the parameter matches the parameter definition in the XSD. This exception is considered non reproducible, probably due to an error of modeling. ". The called JCA adapter threw an exception of resource. Please review the error message above carefully to determine a resolution. < / Summary >

    I confirmed that the XSD for the stored procedure has in fact change, which has been generated by JDeveloper as I refreshed the database adapter.

    The statement "Cause: java.lang.ArrayIndexOutOfBoundsException: 12" I can't that assume somehow SOA has 12 parameters but the 12 setting was not saved.

    Any thoughts on what I might be missing. I can provide more information if necessary.

    Hello

    This problem has been resolved. Not deployed SOA composite and then deployed to the server of the SOA. For some reason, SOA has been either you see does not changes in the file XSD (cached?) or the XSD was not get updated.

    Thank you

  • Uninstalling CS4 on Mac - boot error "Required support files are missing."

    Try to uninstall CS4 Web Premium on my iMac running El Capitan and get the startup error "Required support files are missing." Impossible to uninstall, delete the folder of the application support does not help, and the cleaning tool freezes constantly when you try cleaning CS4. Any suggestions to get uninstalled CS4?

    If uninstall does not work, and the cleaning tool freezes, you have two choices:

    (1) the easiest way is to delete all references to the CS4 on your computer, folder by folder, manually or

    (2) you can backup everything on your computer and do a clean install of El Capitan, then manually move everything except the CS4 components on your computer, including the installation of the CC of the application of CC desktop applications.

Maybe you are looking for

  • reload the mail application

    E bike KitKat stock mail app.can it be reloaded?

  • How the entry changes with each iteration of the while loop

    Hello can anyone explain (clarify) to know how or what contribution will be fed like the d block of adaptive filtering for the first, second entry (n) and remaining iterations of the while loop as shown in the picture as an attachment... As I need to

  • My Sony DCR-SX44 Handycam screen flashes E:61:10 what is it

    Need to know why the E:61:10 flashes on my screen all the time Thank you

  • 1000008e physical memory error blue screen

    BSOD AT CERTAIN TIMES ON DEPRECIATION OF PHYSICAL MEMORY. ERROR CODE BCCode: 1000008e BCP1: C0000005 BCP2: BD308FDE BCP3: 8D02D8E8 BCP4: 00000000. Hi all I have a hp dx 7380mt pc, where I work in the xp operating system (OSVer: 5_1_2600 SP: 2_0) sinc

  • Sansa Clip color issue

    This may seem like a strange question... but does the Sansa Clip 2 GB pink light/baby? I see online is the hot pink. I found one for sale, used, but in the image, it's a very light shade of pink. I asked if it was the actual color and not with a blan