Codex functions, but procedure not

hallo all,
I am a beginner in PL&SQL, I have a strange problem to propose you. I wrote a routine that, after a control, makes an insert and an update.
Well, if I launch it as simple codex, insert and update function. If I launch it as procedure, insert functions, but update no.
Can you help me?
as PL/SQL:
declare
cursor SDOC_WORK_contr_cur is
select TIPO_CAMP,ESITO,IMPTOT_OR,NUM_IMPORTO_TOT,ID_SDOC,ROWID
from NOC_SDOC_WORK
where TIPO_CAMP = 'A' and ESITO = '1' or ESITO = '0';
SDOC_WORK_contr_rec SDOC_WORK_contr_cur%ROWTYPE;
begin
open SDOC_WORK_contr_cur;
loop
fetch SDOC_WORK_contr_cur into SDOC_WORK_contr_rec;
EXIT WHEN SDOC_WORK_contr_cur%NOTFOUND;
if SDOC_WORK_contr_rec.ESITO = 1 AND SDOC_WORK_contr_rec.IMPTOT_OR <> SDOC_WORK_contr_rec.NUM_IMPORTO_TOT then
update NOC_SDOC_WORK set STATO = 6
where rowid = SDOC_WORK_contr_rec.rowid;
insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
values('C1','controllare IMPTOT ed IMPTOT_OR',SDOC_WORK_contr_rec.ID_SDOC);
end if;
if SDOC_WORK_contr_rec.ESITO = 0 AND SDOC_WORK_contr_rec.NUM_IMPORTO_TOT <> 0 then
update NOC_SDOC_WORK set STATO = 6
where rowid = SDOC_WORK_contr_rec.rowid;
insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
values('C0','controllare IMPTOT',SDOC_WORK_contr_rec.ID_SDOC);
end if;
end loop;
close SDOC_WORK_contr_cur;
commit;
end;
as procedure:
PROCEDURE noc_pr_autocontrollo
IS
cursor SDOC_WORK_contr_cur is
select TIPO_CAMP,ESITO,IMPTOT_OR,NUM_IMPORTO_TOT,ID_SDOC,ROWID
from NOC_SDOC_WORK
where TIPO_CAMP = 'A' and ESITO = '1' or ESITO = '0';
SDOC_WORK_contr_rec SDOC_WORK_contr_cur%ROWTYPE;
begin
open SDOC_WORK_contr_cur;
loop
fetch SDOC_WORK_contr_cur into SDOC_WORK_contr_rec;
EXIT WHEN SDOC_WORK_contr_cur%NOTFOUND;
if SDOC_WORK_contr_rec.ESITO = 1 AND SDOC_WORK_contr_rec.IMPTOT_OR <> SDOC_WORK_contr_rec.NUM_IMPORTO_TOT then
update NOC_SDOC_WORK set STATO = 6
where rowid = SDOC_WORK_contr_rec.rowid;
insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
values('C1','controllare IMPTOT ed IMPTOT_OR',SDOC_WORK_contr_rec.ID_SDOC);
end if;
if SDOC_WORK_contr_rec.ESITO = 0 AND SDOC_WORK_contr_rec.NUM_IMPORTO_TOT <> 0 then
update NOC_SDOC_WORK set STATO = 6
where rowid = SDOC_WORK_contr_rec.rowid;
insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
values('C0','controllare IMPTOT',SDOC_WORK_contr_rec.ID_SDOC);
end if;
end loop;
close SDOC_WORK_contr_cur;
commit;
end noc_pr_autocontrollo;
tks
leo

ok, I write again my post:
I wrote a routine that, after a control, makes an insert and an update.
Well, if I launch it as simple code, insert and update function. If I launch it as procedure, insert functions, but update no.
Can you help me?
as PL/SQL:
declare
    cursor SDOC_WORK_contr_cur is
    select TIPO_CAMP,ESITO,IMPTOT_OR,NUM_IMPORTO_TOT,ID_SDOC,ROWID
    from NOC_SDOC_WORK
    where TIPO_CAMP = 'A' and ESITO = '1' or ESITO = '0';
    SDOC_WORK_contr_rec SDOC_WORK_contr_cur%ROWTYPE;
begin
    open SDOC_WORK_contr_cur;
    loop
    fetch SDOC_WORK_contr_cur into SDOC_WORK_contr_rec;
         EXIT WHEN SDOC_WORK_contr_cur%NOTFOUND;
            if SDOC_WORK_contr_rec.ESITO = 1 AND SDOC_WORK_contr_rec.IMPTOT_OR <> SDOC_WORK_contr_rec.NUM_IMPORTO_TOT then
                update NOC_SDOC_WORK set STATO = 6
                where rowid = SDOC_WORK_contr_rec.rowid;
                insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
                values('C1','controllare IMPTOT ed IMPTOT_OR',SDOC_WORK_contr_rec.ID_SDOC);
            end if; 
            if SDOC_WORK_contr_rec.ESITO = 0 AND SDOC_WORK_contr_rec.NUM_IMPORTO_TOT <> 0 then
                update NOC_SDOC_WORK set STATO = 6
                where rowid = SDOC_WORK_contr_rec.rowid;
                insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
                values('C0','controllare IMPTOT',SDOC_WORK_contr_rec.ID_SDOC);
            end if; 
    end loop;
    close SDOC_WORK_contr_cur;
    commit;
end;as procedure:
    PROCEDURE noc_pr_autocontrollo
    IS  
    cursor SDOC_WORK_contr_cur is
    select TIPO_CAMP,ESITO,IMPTOT_OR,NUM_IMPORTO_TOT,ID_SDOC,ROWID
    from NOC_SDOC_WORK
    where TIPO_CAMP = 'A' and ESITO = '1' or ESITO = '0';
    SDOC_WORK_contr_rec SDOC_WORK_contr_cur%ROWTYPE;
begin
    open SDOC_WORK_contr_cur;
    loop
    fetch SDOC_WORK_contr_cur into SDOC_WORK_contr_rec;
         EXIT WHEN SDOC_WORK_contr_cur%NOTFOUND;
            if SDOC_WORK_contr_rec.ESITO = 1 AND SDOC_WORK_contr_rec.IMPTOT_OR <> SDOC_WORK_contr_rec.NUM_IMPORTO_TOT then
                update NOC_SDOC_WORK set STATO = 6
                where rowid = SDOC_WORK_contr_rec.rowid;
                insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
                values('C1','controllare IMPTOT ed IMPTOT_OR',SDOC_WORK_contr_rec.ID_SDOC);
            end if; 
            if SDOC_WORK_contr_rec.ESITO = 0 AND SDOC_WORK_contr_rec.NUM_IMPORTO_TOT <> 0 then
                update NOC_SDOC_WORK set STATO = 6
                where rowid = SDOC_WORK_contr_rec.rowid;
                insert into NOC_ERRORI_SDOC_WORK(CD_ERRORE,NOTE,ID_SDOC)
                values('C0','controllare IMPTOT',SDOC_WORK_contr_rec.ID_SDOC);
            end if; 
    end loop;
    close SDOC_WORK_contr_cur;
    commit;
end noc_pr_autocontrollo;

Similar Messages

  • Superdrive has full DVD function but will not burn or recognize CD's

    OK folks here goes... When I bought the machine it came with a combo-drive (it was new on a close-out deal, G5's had just come out) and I promptly purchased a Pioneer DVR-105, installed it in the top bay and moved the combo to the bottom. The bottom never burned anything (read CD's & music CD's fine) but that was OK the top was great burned and read everything.
    I had lost all burning function through 10.4.* so I replaced the drive with a Pioneer DVR-112D and regained sporadic burning and reading function, of CD's and DVD's, and the bottom bay was unrecognized.
    Fast forward to 10.5 the DVR-112D, recognizes, reads & writes DVD's (haven't tried the DL's yet) but will not read or write CD's or music CD's burned or otherwise. It sounds like it is trying to read and after a long while spits the tray out.
    System profiler seems to recognize and bless the drive with the full litany of burning capabilities, and I'm at a loss. I recently put the DVR-105 back in the bay and it was working in the same capacity. I switched back because the 112 is much more capable.
    Any suggestions or ideas would be greatly appreciated.
    Thanks............. Perry

    Hussein (New York) wrote:
    When you moved the original drive to the lower bay, you must change the drive jumper from Master to Slave, failing to do so will likely render the drive unusable as the system cannot "see" it. Try reset the jumper on the back of the drive, and perhaps you can use that for CD's..
    Like Perryb, I want to install a Pioneer DVD superdrive into my G4 (in my case a 115D) and was going to place it in the Zip drive bay. Thus two questions:
    1 Can the new drive be placed as the lower drive or do I have to move the combo drive down and place it as the upper drive?
    2 If I do move the combo down, where can I find the information about resetting the jumper from master to slave? (The profiler identifes the ATA drives as Combo = 0 and Zip = 1)
    3 Do I have to set anything on the new superdrive before installation?
    Thanks,
    George

  • Number.floor appears to be a valid function but is not. Causing crashes on mobile.

    This is a cross post from http://forums.adobe.com/message/4993660/  We didn't get an answer there and this issue, and similar discrepencies between what the IDE can compile and what will run on a device, have been costing us man days in work.
    We recently had a problem where when compiling using FB and debugging on devices works fine. But when we built the app using Ant, it was crashing on Android devices. After debugging that, we found that Number.floor was not a function.
    I cannot find any documentaiton that says Number.floor was ever a function in ActionScript/Flex/AIR.
    So why does Flash Builder seem to think it's valid, let us compile it, and even run it on the device?! Is there some 'even more strict' compiler option I need to check?

    Great! Thanks for that. There's more too. Like this... Looks and works great in FB, but dies on the command line. What's going on here?
    class CallbackInfo extends Object
         public var requestID:int;
         public var callback:Function;
         public var userData:Object;
    package framework
        class Moo extends Object
    Produces this output over the command line:
      [mxmlc] Loading configuration file /Flex_4.6.0_Air_3.5/frameworks/airmobile-config.xml
    [mxmlc] Loading configuration file /client/config_dev.xml
    [mxmlc] /client/src/framework/EASPProxy.as(27): col: 1 Error: Syntax error: package is unexpected.
    [mxmlc]  [mxmlc] package framework [mxmlc] ^ [mxmlc]

  • Why item level validation can only execute function but not procedure?

    Dear all,
    When execute my form, some parameter values will be passed to the text items.
    Those values are the procedure name or function name for that particular item which are already defined in a package and those items are non-database items.
    Suppose a particular item can be validated by a procedure or function. It depends on what value is passed into the program.
    If the item when-item-validation is triggered, that corresponding procedure or function will be executed by calling the following codes A) or B):
    A) EXECUTE IMMEDIATE 'BEGIN' || procedure || '(:1);END;' USING v_value;
    OR B) DBMS_SQL.EXECUTE(...)
    Basically, the form is working fine except 2 blocks which can only accept Function, i.e. only fired the function but cannot fire the procedure. Actually these 2 blocks are similar to the others blocks and they are also non-database blocks.
    I am using Form10g.
    Anyone have idea for that? Thanks for advance.
    Regards.

    You cannot use Execute Immediate in Forms. You have to do that on the server in a stored procedure.
    You should not use DBMS_SQL either. In Forms, you use EXEC_SQL, which is almost the same, except for the error handling. And it is VERY slow, since you make a number of calls to it, plus one for each variable passed.
    Now... if you call a function, it must return a value. If you write code to dynamically call a function, this process must be complex enough to handle the returned value. The same occurs if your procedure that you call has any parameters. If there are no parameters, then it would be simpler.
    If you want dynamic function or procedure processing, then I would suggest you just pass the value being validated plus the table.column name to a server-side stored procedure or package, and do all the processing on the server.
    Good luck... it won't be easy.

  • Partner function AP is not def in partner procedure in ECC - CRM complaint

    Hi,
    There is an error occured while creating credit memo request from the service complaint in the CRM. It is not stopping the process but it happens several times. The error message is always in the document but not able to fix it. There is no partner function called AP in both CRM and ECC but how come the system is looking for this new partner function in the partner determiination procedure in ECC. The detail error message as below
    An error has occurred in the system RP9CLNT020 while copying the document
    Message no. CRM_ORDER_MISC 020
    Diagnosis
    Errors have occurred while transferring the document into another system. Refer to the enclosed log to view the error messages.
    Transmission log
    Partner function AP is not defined in partner procedure ZUK () (Notification E VPD 003)
    ORDER_HEADER_IN has been processed successfully (Notification S V4 233)
    ITEM_IN has been processed successfully (Notification S V4 233)
    Sales document 0350002869 was not changed (Notification E V4 219)
    Any clue in fixing this issue will be great.
    Regards,
    Ram.

    Hi,
    There is no problem in creating credit memo in ECC even with these error message.  the credit memo document is created in ECC. Actually thiis is not happening for all the complaint documents in CRM. It happens only for few customers/complaints.
    My doubt is with contact person mismatch in crm and ecc, but that is also perfect. pls let me know solution for this issue.
    Regards,
    Ram.

  • Partner function AP is not defined in partner procedure N ()

    Hi,
    Error: Partner function AP is not defined in partner procedure N ().
    I am getting above error in CRM service orders for Contact person replication from CRM  ECC.
    In debugging Middleware queue and we found that it is getting triggered from FM SD_PARTNER_EXECUTE_CHECKS.  In some cases contact person is getting replicated to ECC successfully but in some it's not ! And in both the cases this error is getting passed to CRM service order.
    Can anyone please help me on this exactly whatu2019s wrong with partner procedure and partner function customizing? Or do I need to add some code logic to stop this.
    Kindly help ASAP.
    Because every day we are getting thousands of CRM service orders which are affected by this Error.
    Regards,
    Amol.

    Hi Dipesh,
    Thank you very much.
    I have verified both the things.Means partner procedure is same in both the system. Also contact person is replicated to ECC with same order.
    As i mentioned this is happening with some service orders. Also there are some service orders where contact person is successfully replicated to ECC but there is error on CRM side:Partner function AP is not defined in partner procedure N () .
    Kindly let me know what are the further checks i need to do.
    Regards,
    Amol.

  • UCCX 8 - Custom Stored Procedure Not Functioning

    Hello,
    We're trying to modify one of the agent summary reports in UCCX 8.  We want the outbound report to only show numbers that were external calls.  (Longer than 4 digits.)  We copied and modified the existing stored procedure and it seems to run ok until we try to use it in the historical reporter.  HR reports that the stored procedure cannot be found.  We've followed what documentation we could find about adding one but can't get it working.  We've been using ASG Server Studio to access the database.  We opened a TAC case but haven't gotten anywhere.  Here's the detail we gave them.
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    I have created a stored procedure on the informix DB for UCCX 8. i have
    been following the Historical reporting admin guide. the SP runs fine when i use ASG
    server studio. when i try to use crystal reports to access the SP i get "Failed to
    retrieve data from the database. Details: ADO Error code 0x80004005 Source: Microsoft OLE
    DB Provider for ODBC Drivers Description: [Informix][Informix ODBC Driver][Informix]
    Routine (sp_agent_call_summar_nointernal) can not be resolved. SQL State:S1000"
    if i use a standard procedure Crystal Reports works fine.
    i have the uccxHrUserRole assigned to the procedure so i do not understand why i cannot
    run the SP.
    Any ideas, we really need to get this working.
    Thanks!

    Hi
    1) There are an impressive number of bugs in early 8.0 versions; on the initial release permissions were incorrect for the existing SPs so the uccxHrUser couldn't run them. You could copy them, so had to copy them and run the copies.. tedious.
    If you are on a working version, the other gotcha is that you need to specify them fully-qualified - so sp-test would be  db_cra.dbo.sp_test
    Also note that the SPs are randomly split between 'functions' and 'procedures' (there may be a pattern, but I can't work it). Both are similar, but there is a field in the DB that marks a proc as a fucntion or a procedure - the informix Squirrel SQL  plugin doesn't work well with this and just shows the ones marked as 'procedures'. I've had better luck with RazorSQL and have recently played  with the free IBM Data Studio which I think also displayed them all.
    2) You can't edit the permissions of existing ones, but you can add new ones and since you (well, uccxHrUser) is the owner you can set permissions on those. Try using RazorSQL or AGS Server Studio (which is better, but $$$) to add new procs.
    Aaron
    Please ratre helpful posts..

  • We had a MacBook Pro stolen from our home when we were out of town and I am pretty sure we never activated the LoJack type of function on it not sure if its called lojack but you get what I am saying is there any way we can activate such  hardware/app now

    to
    We had a MacBook Pro stolen from our home when we were out of town and I am pretty sure we never activated the LoJack type of function on it not sure if its called lojack but you get what I am saying is there any way we can activate such  hardware/app now so we can possibly recover our laptop? Any one who can point us in the right direction that would be great and we would be very grateful. Thanks So Much

    Lojack for laptops - if that is the product you purchased and installed, you will need to read the user manual or contact the manufacturer as it is 3rd party.  You did file a police report right?

  • My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything

    My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything,  I have a child that is very ill and I have to have access to a phone at all times can someone help me?  It happened one other time when I plugged it in to my to listen to music.  I know it is working it said something on voice control.  I tried the press the circle button and the top button but the screen only turned white?

    Try the following:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.
    If you still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order

  • When the apple review team review our app,they point out that our  app uses a background mode but does not include functionality that requires that mode to run persistently.but in fact,when the app in background ,the app need data update to make the

    when the apple review team review our app,they point out that our  app uses a background mode but does not include functionality that requires that mode to run persistently。but in fact,when the app in background ,the app need data update to make the function of  trajectory replay come ture。in fact, we have added function when the app  is in background mode。we have point out the point to them by email。but they still have question on the background mode,we are confused,does anyone can help me,i still don't know why do review team can't find the data update when  the app is in background and how do i modify the app,or what is the really problem they refered,do i misunderstand them?
    the blow is the content of the review team email:
    We found that your app uses a background mode but does not include functionality that requires that mode to run persistently. This behavior is not in compliance with the App Store Review Guidelines.
    We noticed your app declares support for location in the UIBackgroundModes key in your Info.plist but does not include features that require persistent location.
    It would be appropriate to add features that require persistent use of real-time location updates while the app is in the background or remove the "location" setting from the UIBackgroundModes key. If your application does not require persistent, real-time location updates, we recommend using the significant-change location service or the region monitoring location service.
    For more information on these options, please see the "Starting the Significant-Change Location Service" and "Monitoring Shape-Based Regions" sections in the Location Awareness Programming Guide.
    If you choose to add features that use the Location Background Mode, please include the following battery use disclaimer in your Application Description:
    "Continued use of GPS running in the background can dramatically decrease battery life."
    Additionally, at your earliest opportunity, please review the following question/s and provide as detailed information as you can in response. The more information you can provide upfront, the sooner we can complete your review.
    We are unable to access the app in use in "http://www.wayding.com/waydingweb/article/12/139". Please provide us a valid demo video to show your app in use.
    For discrete code-level questions, you may wish to consult with Apple Developer Technical Support. When the DTS engineer follows up with you, please be ready to provide:
    - complete details of your rejection issue(s)
    - screenshots
    - steps to reproduce the issue(s)
    - symbolicated crash logs - if your issue results in a crash log
    If you have difficulty reproducing a reported issue, please try testing the workflow as described in <https://developer.apple.com/library/ios/qa/qa1764/>Technical Q&A QA1764: How to reproduce a crash or bug that only App Review or users are seeing.

    Unfortunately, these forums here are all user to user; you might try the developer forums or get in touch with the team that you are working with.

  • Checkboxes are not rendering; they still function, but are completely invisible.

    Ever since installing Firefox 4 on my PC, checkboxes have not been rendering. They will occasionally be visible when the browser is first launched, but disappear on mouse-over. They still function, but are completely invisible.

    This is looking like an OAS ADF Faces library issue. I'm in the process of updating those now.

  • I have a manual that contains headings and index entries that contain less than and greater than characters, and . The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the C

    I have a manual that contains headings and index entries that contain less than and greater than characters, < and >. The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the Contents or the Index of the generated HTML. In the Contents the words are completely missing and in the index entries the '\' characters that are required in the markers remain in the entry but the leading less than symbol and the first character of the word is deleted; hence what should appear as <dataseries> appears as \ataseries\>. I believe this is a FMv12 bug. Has anyone else experienced this? Is the FM team aware and working on a fix. Any suggestions for a workaround?

    The Index issue is more complicated since in order to get the < and > into the index requires the entry itself to be escaped. So, in order to index '<x2settings>' you have to key '\<x2settings\>'. Looking at the generated index entry in the .js file we see '<key name=\"\\2settings\\&gt;\">. This is a bit of a mess and produces an index entry of '\2settings\>'. This ought to be '<key name=\"&amp;lt;x2settings&amp;gt;\" >'. I have tested this fix and it works - but the worst of it is that the first character of the index entry has been stripped out. Consequently I cannot fix this with a few global changes - and I have a lot of index entries of this type. I'm looking forward to a response to this since I cannot publish this document in its current state.  

  • I have got an IPhone 5. It has been locking itself  and not possible to run it again. I have restored it by Itunnes. But still not functioning. I have bought it from London whitecity applestore and have been using it in Turkey. Any suggestion ?

    I have got an IPhone 5. It has been locking itself  and not possible to run it again. I have restored it by Itunnes. But still not functioning. I have bought it from London whitecity applestore and have been using it in Turkey. Any recomandation ?

    Sorry, but the warranty for the phone is only valid in the country where you bought the device, and you can't send it in, Apple does not ship internationally.
    Has the phone been officially unlocked? Only the carrier can unlock an iPhone.
    iPhone: About unlocking

  • After upgrading, Firefox opens but will not function.

    My OS is Vista Ultimate (64-bit). My firewall is Norton360.
    After automatically upgrading yesterday, my firefox no longer functions/works. I get a firefox screen that is partially enabled, but am not able to open any websites, etc.

    You can check if you can start Firefox in <u>[[Safe Mode|Safe Mode]]</u> by holding down the Shift/Options key.
    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full, unrestricted, access to install for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating

  • I need to re download Adobe X ... but can not find the place on the website for such a procedure?

    I have purchased Adobe X ... Now, I need to re download Adobe X ... but can not find the place on the website for such a procedure?

    http://prodesigntools.com/adobe-cs5-5-direct-download-links.html
    You NEED to sign in at this link: https://www.adobe.com/account/sign-in.adobedotcom.html?returnURL=%2Fcfusion%2Fmembership%2 Findex.cfm%3Fpid%3D2159997%26nf%3D1%26nl%3D1%26loc%3Den%26ref%3Dlogin
    then reload the first page BEFORE you can download the Acrobat X

Maybe you are looking for

  • Dell Ultrasharp 2707WFP 27" and G5

    Hi there, hoping someone can help. I am interested in the Dell Ultrasharp 2707WFP 27" widescreen LCD monitor but I need to know if it is compatible with my computer (I contacted Dell but they said to try the Apple forums). Here are the specs for my c

  • My iphone 5 has a bad signal reception LTE turned off any suggestions

    I purchased my Iphone 5 last November 2012 by Cosmote Greek network provider. I am using an iphone 3GS as well and I can compare the strength of the signal reception all time. Usually the 3GS has 3 signal bars more than the Iphone 5 which many times

  • NumericUpDown Round Down

    Hello, I have a NumericUpDown with the properties of Increment = 0.5 and DecimalPlaces = 0. It works as intended, but the problem is on how the NumericUpDown displays the #.5 numbers. I need the control to display 2.5 as 2, instead of 3, 3.5 as 3 and

  • Picture in Picture - does it work with maps?

    Hi, Okay, so I get that iMovie is basically a completely gimped, Fisher Price movie editor and I should probably go get something better but... I'd like to have an animated map that doesn't take up the whole screen. However, it doesn't let me use the

  • Retrive image from image data

    I am generating UI by mapping delphi form 2 java swing. In delphi.dfm file for a picture some picture data is comming like this.. Picture.Data = { 07544269746D61704E310000424D4E3100000000000036040000280000009900 00004A0000000100080000000000182D000000