Approach for coding a business req

Hi ,
I have a business rule for populating the target table from few source tables. Please have a look at the rule.What should be the approach to handle such business rules .The number of rows in the tables are less than a million .I cant really provide a sample data ,apologies .But still would need a rough approach that one should follow.
if nvl(source_table_1.col1,source_table_1.col2)
then
   if nvl(source_table_1.col1,souce_table_1.col2)=source_table_2.col1
     then
      target_table_1.col1=source_table2.col1
      target_table_1.col2=source_table2.col2
      target_table_1.col3=source_table2.col3
      target_table_1.col4=source_table2.col4
      target_table_1.col5=source_table3.col1
      target_table_1.col6=source_table5.col1
  else if
     source_table_1.col8=source_table_6.col1 where nvl(source_table_1.col1,source_table_1.col2)=
                                         source_table_7.col1
        then
      target_table_1.col1=source_table2.col1
      target_table_1.col2=source_table2.col2
      target_table_1.col3=source_table2.col3
      target_table_1.col4=source_table2.col4
      target_table_1.col5=source_table3.col1
      target_table_1.col6=source_table5.col1
   else
   null
   end
else
null
end;

Hi,
A single MERGE statement should do what you want; no PL/SQL is required.
It looks like you have 2 somewhat different ways of getting the new data, one preferred to the other. In the MERGE ... USING clause, do a Top-N Query, where you get the data both ways. That will give you sets of new data, with up to 2 rows in each set. Number the rows in each set in preferential order, then pick the rows numbered 1.
Rahul  K wrote:
... I cant really provide a sample data ,apologies .But still would need a rough approach that one should follow.If you post a little sample data, then you can get more than just a rough approach.

Similar Messages

  • Approach for generating a report while having Func Specs of the Report

    Hi Experts,
    Please tell me what should be the approach for generating a report when having Func Specs of the Report.
    Thnx
    Sid

    Hi,
    1st you need to know the business need and related data.
    1st know that according to the business need is there any standard SAP report is there or not.
    try to know the Data base table and related fields required according to the need.
    know the relations of the data base tables to map the data.
    Accordingly prepare Technical spec's or go a head for coding.
    Thanks.
    If this helps you reward with points.

  • Approach for Inter Organisational BPM

    Hi All,
    I am doing Masters Dissertation in Collaborative BPM. My research topic is the evaluation of three approached for collaborating BPM across value chain.
    Explanation of these approaches:
    Centralise CBPM: Ownership of Collaborative System is with one Central Organisation and Other Partners Participate in this collaboration through various UI such as portal. Example, Collaboration between the automobile manufacturer and dealer were automobile manufacturer provides portal for dealer to place order, manage its customer and handle warranty and recalls.
    Decentralise CBPM: In this approach every partner provides communication technology like Web Services for its Business Partner for collaboration. The ownership is decentralise and more flexible
    Peer-to-Peer CBPM: In ideal condition in this approach every Partner should have the same technology which is developed for handling collaborative Business Processes. In this case the same modelling facility is available across the value chain.
    I found below critical aspects for evaluating these three approaches:
    1] Autonomy
    2] Collaborative process Modelling
    3] Monitoring, Controlling, and Analysis
    4] “Plug and Play” based Platform for Collaboration (Includes Security, Web Service and various adapters for communication and Language Support like Java for easy custom enhancement)
    5] Governance
    I kindly request you all to post your views about pros and cons for evaluating these approaches from the aforementioned critical aspects.
    I welcome your questions and appreciate your valuable guidance.
    Thank you ,
    Regards,
    Ganesh Sawant

    PROS:
    Using the Webservices you can trigger the BPM Process and pass the values from the web dypro component which will available for the end user and pass it on to the BPM Proess.
    We can use EJB as a webservice, where the automated activity in the BPM can output the value based on the logic in the EJB Function. We can manage the automated activity which runs in the back ground of the process as per our logic and returns the value to the next task.
    CONS
    Using Webservices in the various activity with fewer data is not advisable as it takes longer time to deploy the process. And any change in the data in the webservices requires regularly re importing of the web services.

  • Peer-to-Peer approach for Cross Organisation BPM

    What are the pros and cons of using Peer-to-Peer based decentralise approach for managing Inter-Organisational BPM?
    ( Peer-to-Peer CBPM: In ideal condition in this approach every Partner should have the same technology which is developed for handling collaborative Business Processes.  In this case the same modelling, monitoring, and implementation technology is available across the value chain. )
    What are the challenges and what are the benefits from the aspects like autonomy, governance, security, modelling, monitoring, and process ownership?
    Thanks you
    Regards
    Ganesh Sawant
    Edited by: ganesh sawant on Jul 16, 2011 8:45 PM

    PROS:
    Using the Webservices you can trigger the BPM Process and pass the values from the web dypro component which will available for the end user and pass it on to the BPM Proess.
    We can use EJB as a webservice, where the automated activity in the BPM can output the value based on the logic in the EJB Function. We can manage the automated activity which runs in the back ground of the process as per our logic and returns the value to the next task.
    CONS
    Using Webservices in the various activity with fewer data is not advisable as it takes longer time to deploy the process. And any change in the data in the webservices requires regularly re importing of the web services.

  • Best approach for syndication in Central MDM

    MDM 7.1
    CE 7.2
    ERP 6 EHP4
    PI 7.1 EHP1
    We are currently developing a custom application using CE/BPM workflow for central maintenance of customer master data. One of the topics under discussion is the right approach for syndication once a record is complete.
    [This |http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60a3118e-3c3e-2d10-d899-ddd0b963beba?quicklink=downloads&overridelayout=true] SAP document on collaborative material master data creation provides one way to achieve this syndication by first calling a web service from BPM to create record in ERP before checking in MDM. While I am personally fine with the approach, some of the other colleagues aren't too keen on issuing synchronous calls from BPM. Rather, they would like to use the syndication engine of MDM to transmit data to downstream systems (currently only SAP ERP) using Idocs. But there is a caveat here. To use syndication, the record has to be checked in.
    The problem is that if the record is checked in MDM, it is ready for modification. However, the asynchronous call to ERP using Idocs for creation of customer master might fail for any number of reasons. In this case, the MDM record might need a modification before resubmitting to ERP. In the meantime, since the record was checked in before syndication, someone else might have checked it out, potentially resulting in data quality issues. So to avoid this situation, the developer has decided to take the approach to check in -> syndicate -> check out -> wait for confirmation Idoc -> check in if success. This isn't a clean approach to syndicate but might address the record locking issue.
    Another consideration is to design the application with the view that sometime in the future, this master data might have to be syndicated to other SAP and non-SAP systems as well. To ensure syndication to all downstream systems is complete before checking in MDM can be a tricky requirement and might need some complex ccBPM development or evaluating something similar to two-phase commit (might be an overkill). In any case, a best practice approach for keeping downstreams systems in sync with MDM in case of central MDM has to be shared by SAP. So it would be good to have comments of the people who developed the reference application for collaborative material master data creation.
    If there are any customers who have come up with a custom solution which works, please do share the experience.
    Thanks and regards,
    Shehryar

    Thanks Ravi. While there are more than one possible solutions to the immediated problem, I am actually looking for a design pattern which SAP recommends or a customer has developed to address the issues related to synchronization of master data in a Central MDM environment.
    The idea behind a central master data management function, as you know, is that all participating business systems use the same basic master data being authored in MDM. This data has to be synchronized with all participating systems, rather than just one system. To me, a ccBPM workflow or 2 phase commit design pattern seem to be the solution. But it would be good to know how other customers are addressing the issue of master data synchronization with multiple systems, or SAP's recommendations for this issue.
    Regards,
    Shehryar

  • Upgrade path for ESS/MSS business package while upgrading to ECC 6.0

    Hi All,
    We have a scenario where SAP Enterprise Portal 7.0 SP 18 is currently running with SAP ECC 4.6C. SAP ECC is being upgraded to SAP ECC 6.0 and consequently we have a requirement to upgrade to the latest ESS/MSS business package. In a scenario like this what is SAP recommended approach for ESS/MSS upgrade? My questions are
    1) Is a direct upgrade of ESS/MSS possible? If this is possible, then how will it be done on a production system with reduced or no downtime?
    2) Should ESS/MSS business package be deployed and configured afresh after removing/undeploying the existing version of ESS/MSS business package? If this is the case how would the earlier customizations be restored?
    3) Is there any other approach?
    Thanks in advance.

    Hi Suresh,
    In my openion, it will be good if you go for new implementation, reason being as you mentiond ECC versionyou are on is 4.6c all the ESS applications are ITS based now a days all the application/iView for ESS are Webdynpro for Java or WD for ABAP based.
    Till the time the new portal ready you can continue with your currect one (No down time require).
    Most of the people are using this way. (Check the SDN for more details).
    Also chcek this migration guide, which will give you the basic steps required.
    http://www.sdn.sap.com/irj/scn/events?rid=/library/uuid/5e1226c7-0601-0010-7d82-a8134e833150&overridelayout=true
    Regards,

  • Best approach for a cross language application

    I am working on a project where we are planning to write the data acquisition code in LabVIEW, but the rest of the application is being written in C# by some developers that are unfamiliar with LabVIEW. I am looking for suggestions for the best architecture for this kind of application.
    Traditionally, in my LabVIEW applications that require UI, data aquisition, logging, and analysis, I generate a tiered producer consumer architecture. I usually build a queued event driven producer/consumer, and then create additional consumer loops to handle data as it propogates out of the acquisition loop. In this project, I am basically looking to only create the acquisition loop in LabVIEW, with the rest of the "loops" being generated by the C# guys using .NET 4.0 CLR.
    The original plan was to make my loop as I usually would in LabVIEW and build it as a .NET interop. I hadn't really sorted it out yet, but the plan was to basically get configure and start commands from the C# gui (not sure how to replace the queue here), and use some event to get the analysis parts of the program to trigger at appropriate times based on data availability. It's come to my attention that LabVIEW generated .NET interops can not run in 4.0 CLR applications though, so I'm looking for alternatives.
    Basically, I'd like to hear about similar applications and what has worked and not worked. I'm particularly interested in good approaches for interprocess communication between LabVIEW and a .NET app, and also any thoughts on triggering actions in the .NET app from the LabVIEW portion (can this be done without the .NET code polling something?).
    Thanks!
    Chris

    Hi Chris,
    C. Minnella wrote:I'm particularly interested in good approaches for interprocess communication between LabVIEW and a .NET app, and also any thoughts on triggering actions in the .NET app from the LabVIEW portion (can this be done without the .NET code polling something?).
    whenever it comes to communication between windows applications, I don't stop recommending the highly underrated Microsoft Message Queue (MSMQ) infrastructure and in my opinion, it actually screams to be used in your scenario:
    1. Let LabVIEW collect the data and place it into a designated data queue.
    2. Let C# exe attach to queue and do the data retrieval/evaluation/storage/whatever by OnMessageReceived events.
    3. Let C# send control messages to a second queue, that is read by LV.
    MSMQ is increadibly easy to use, yet very powerfull and has so many aspects and benefits for interprocess communication, especially between different machines in a LAN - a real pity that it's so little known. Just have a look at the following thread, especially at the tiny LabVIEW example I've placed there: http://forums.ni.com/t5/LabVIEW/MSMQ-with-Labview/m-p/154334
    This could be done better on the LabVIEW side (event based rather than polling), but as you just want to send some configuration and control commands, it's okay like this.
    Unfortunately, there are not too many good resources about MSMQ on the web that explain the coding basics well.The MSDN magazine has some great articles if you're somewhat experienced (like http://msdn.microsoft.com/en-us/magazine/cc163920.aspx ). What I found really helpful and gives a great introduction is this book: http://amzn.com/1590593464
    Give MSMQ try and have fun with it!
    Cheers,
    Hans

  • How to install sources for infobject from business content

    Hi,
    I have 16 infobjects for which we need to move to prod and there are no connections to it but the infobjects are active and some are i modified state, like no datasources, infosources, transfer rules etc., Can you please tell me the approach to install all the necessary for them. I mean how to find and how to install, please help if any documentation is available.
    Thanks

    Hi daniel,
    Inorder to  install the business object, you will be require to follow the following steps :
    i)Go to RSA1 (Admistrator Workbench) for installing the Business Content. Navigate to object you want to install. Now you want to install the info object then select Info Object.
    ii)Select your Info Object say 0MATL_GROUP (material Group).Click on Transfer selections.
    iii)Now when the info object is selected. It will always be in default selection (Only Necessary object), Now if you want to install the various other things like data source, transformation rule etc as you specify in query
    iv) For that go to grouping select IN DATAFLOW BEFORE AND AFTERWARDS. One more thing If you want to specify the Source system then u can do it by clicking on that Yellow Box (symbol specify the source system) adjacent to BEx (Truck Symbol). This mainly used for the things like transformation, update rule etc  as you want.
    v)Now you want to see if there can be some predictive error then go Install  --> Simulate Installation.
    vi)Now important point to note is MATCH(X) or COPY. Now suppose you already have the Material Group install in your system in Active version. Now here if you didnu2019t select the MATCH check box then your   A-version Material Group will be overwritten by the D-version Material group provided by SAP.
    vii)For ur more understanding lets take the example say  you have  added two customer specific attribute to Material Group now twist is SAP has also just release the enhance material Group with two additional attribute. Now  you are very curious of getting this two attribute in your already active Material Group. For this you will be required to install the material Group from Business content. If you forget to check the Match option then your customer specific attribute will be lost. So to retain them we have to check the MATCH(X) 
    Hope it will help. 
    Thanks,
    Deepak Machal

  • WEBI & Crystal Report solution approach for BPC

    Hi all,
    Anyone know the solution approach for Web Intelligence and Crystal Report for BPC? I canu2019t seem to find any information with regards to developing these two types of reports directly from BPC. Iu2019ve got a document from SAP which mentions that although BPC is sitting on a BW platform and it has its own InfoProviders, SAP is not recommending to use these as the source.
    The approach for Business Objects Xcelsius is fine as I managed to find it.
    Really appreciate on any help that you can provide.
    Thank you.
    Cheers

    Take a look at below links.
    [Can you use Crystal Reports on a webpage without having to use session?|Can you use Crystal Reports on a webpage without having to use session?]
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8029cc96-6ff3-2b10-47a2-b30ea790ea5b|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8029cc96-6ff3-2b10-47a2-b30ea790ea5b]
    hope this helps,
    Bhushan.

  • Logging approach for a SOA application

    Hi All,
    I am working on a design for logging in an integrated application which uses the Oracle SOA suite for a telecom industry solution. I have a BSS system which interacts with the SOA suite to communicate to OSS systems( Network elements in telecom).
    I am interested in developing an approach for system logs and audit logs. Since all the system are disparate, can someone suggest a good approach. and references.
    Thanks,
    Purushottaman

    At a high level there are two types of logging. System Logging for technical diagnostic problem and Logging for Auditing / Tracking that involves reporting business data
    In any SOA integration its better to differentiate these two entirely different categories of logging to detect and resolve problems within a IT infrastructure.
    The next hurdle would be to create a centralized hook for logging (not necessarily a central log ) that can integrate various logging formats by individual system at the same time have minimum dependencies between applications.
    Taking into consideration challenges due to disparate services , multiple servers, different interaction schemes, and different types of user activities it helps to rely on ESB.

  • Approach for importing new versions of a Custom OAM11g plugin

    Hi, what is the best approach for importing new versions of a Custom OAM11g plugin during development phase.
    It is important to have a short cycle on : coding, build, deploy (import), test.
    Is there a howto or best practise on this?
    Regards,
    Bert

    Hi,
    If the .js file is uploaded to a Document Library, you can let this developer open this Document Library through Windows Explorer by using the “Open with Explorer” feature in
    the ribbon:
    Then this developer will be able to edit this .js file just like what we can do to a file stores in a local drive.
    After editing, save, the original .js file will be overwritten.
    More information about Open with Explorer:
    http://office.microsoft.com/en-in/sharepoint-foundation-help/copy-or-move-library-files-by-using-open-with-explorer-HA101811182.aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • What is the best approach for integrationg EP-XI_seibel

    can anybody suggest good approach for EP-XI-Seibel integration project.it is very urgent.please help

    If its a real Business process interfaces then you can use XI as a middleware to create the process and represent the data in the XI,mind you that SAP XI licensing is done using the amount of through-put passing through the xi.In order to do so you can use a seible adapter developed by Iway which translate the seible data to XML ready to be manipulated by XI.
    If its a presentation of seibel data .e.g seibel screens, you might like to search for a way to view the sieble through EP6 (iView).(might be cheaper then using XI...)
    Hope this covers your questions..
    Best regards
    Nimrod Gisis

  • Views regarding single credit card approach for expenses

    Hi All,
    We are planning for a single credit card approach for the employee travel expenses and procurement of goods. Thus an employee would be given only a single card from company, for all the expenses. The credit card would be directly paid by the business and it wouldnu2019t be paid by employee.
    You are requested to please suggest what are the pros and cons of having a single card against having two separate cards. Would also like to know what implementing issues do you foresee and in future how well the single card would be accepted by users?
    Your views are appreciated.
    Rakesh

    From application point of view, In relation to single credit card, please note that if you plan to use the program PRAA for creation of vendor in FI from HR master data and payments then the standard solution only supports one credit card per employee anyway from IT009.
    Other than that, if corporate credit card is stored this is taken as default from the HR infotypes or else the credit card data is taken and charged from infotype 0105 subtype 11
    check the documentation here on credit card clearing.
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/f0/439f37ddeec857e10000009b38f889/frameset.htm
    You would have to specify that all expenses are paid by company when you do expense and wage type configuration and remember that these credit card receipts cannot then be deleted in case of any problem.

  • Problems rebooting: "couldn't lock for reboot: Resource busy"

    Hi there,
    I'm having trouble rebooting my Xserve G4. The server has been up for 128 days, and a previous admin had installed some software updates, and I recently applied several new ones including 'Java for Mac OS X 10.5 Update 5', QuickTime 7.6.6 and Safari 4.0.5.
    It appears it's been trying to reboot ever since the first set of updates, but is not able to. What is strange is that even after having applied the updates mentioned, Server Admin still lists these same software updates as new, uninstalled updates, and asks me to install them.
    Also, the CPU usage is running at around 60%, and diskarbitrationd and kextcache seem to be the main CPU hogs.
    I have tried asking the machine to reboot through Server Monitor, and it fails, stating:
    14/05/2010 10:32:42: Starting remote hardware monitoring for ‘laramie.gcal.ac.uk’
    14/05/2010 10:32:43: Server contacted successfully
    14/05/2010 10:32:43: Connection to server established
    14/05/2010 10:33:01: Restart request sent, waiting for confirmation…
    14/05/2010 10:33:01: Server restarting
    14/05/2010 10:33:12: Failed to contact server
    14/05/2010 10:38:46: Restart request sent, waiting for confirmation…
    14/05/2010 10:39:10: Server restarting
    14/05/2010 10:49:18: Configuration sent, waiting for confirmation…
    14/05/2010 10:49:19: Configuration sent, waiting for confirmation…
    14/05/2010 10:49:24: Configuration received by server and now active
    14/05/2010 10:49:24: Configuration received by server and now active
    But the server never actually reboots.
    I've also tried 'sudo reboot' at the shell, and this generates:
    laramie:~ swadmin$ sudo reboot
    reboot: / is busy updating; waiting for lock
    reboot: couldn't lock for reboot: Resource busy
    Here's what's in /var/log/system.log, on a continuous loop:
    May 14 11:04:36 laramie servermgrd[55638]: --Module servermgr_xserve's response has retain count of 1.
    May 14 11:04:37 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:37 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:38 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39316]): Exited with exit code: 1
    May 14 11:04:38 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 9 seconds
    May 14 11:04:40 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 7 seconds
    May 14 11:04:41 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:41 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:42 laramie com.apple.launchd[353] ([0x0-0x1540c3f7].com.apple.finder[39326]): Exited with exit code: 1
    May 14 11:04:44 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 3 seconds
    May 14 11:04:45 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:45 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:48 laramie servermgrd[55638]: --Module servermgr_xserve's response has retain count of 1.
    May 14 11:04:48 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:48 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:49 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39346]): Exited with exit code: 1
    May 14 11:04:49 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 8 seconds
    May 14 11:04:50 laramie com.apple.launchd[353] ([0x0-0x1540e3f9].com.apple.finder[39347]): Exited with exit code: 1
    May 14 11:04:51 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 7 seconds
    May 14 11:04:52 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:52 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:54 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 4 seconds
    May 14 11:04:55 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:55 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:57 laramie com.apple.launchd[353] ([0x0-0x154113fc].com.apple.finder[39370]): Exited with exit code: 1
    May 14 11:04:57 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 1 seconds
    May 14 11:04:58 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:04:58 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:04:59 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39378]): Exited with exit code: 1
    May 14 11:04:59 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 9 seconds
    May 14 11:05:00 laramie servermgrd[55638]: --Module servermgr_xserve's response has retain count of 1.
    May 14 11:05:00 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 8 seconds
    May 14 11:05:01 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:01 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:03 laramie com.apple.launchd[353] ([0x0-0x154143ff].com.apple.finder[39392]): Exited with exit code: 1
    May 14 11:05:04 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 4 seconds
    May 14 11:05:04 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:04 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:06 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 2 seconds
    May 14 11:05:07 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:07 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:10 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39413]): Exited with exit code: 1
    May 14 11:05:10 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 9 seconds
    May 14 11:05:10 laramie com.apple.launchd[353] ([0x0-0x15416401].com.apple.finder[39415]): Exited with exit code: 1
    May 14 11:05:10 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 8 seconds
    May 14 11:05:11 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:11 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:14 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 4 seconds
    May 14 11:05:15 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:15 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:17 laramie com.apple.launchd[353] ([0x0-0x15419404].com.apple.finder[39433]): Exited with exit code: 1
    May 14 11:05:18 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 1 seconds
    May 14 11:05:18 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:18 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:21 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39445]): Exited with exit code: 1
    May 14 11:05:21 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 9 seconds
    May 14 11:05:22: --- last message repeated 1 time ---
    May 14 11:05:22 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:22 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:24 laramie com.apple.launchd[353] ([0x0-0x1541c407].com.apple.finder[39454]): Exited with exit code: 1
    May 14 11:05:24 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 5 seconds
    May 14 11:05:25 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:25 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:27 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 3 seconds
    May 14 11:05:28 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:28 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:30 laramie com.apple.launchd[353] ([0x0-0x1541e409].com.apple.finder[39477]): Exited with exit code: 1
    May 14 11:05:31 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:31 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:31 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39480]): Exited with exit code: 1
    May 14 11:05:31 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 9 seconds
    May 14 11:05:33 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 7 seconds
    May 14 11:05:34 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:34 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:37 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 3 seconds
    May 14 11:05:37 laramie com.apple.launchd[353] ([0x0-0x1542140c].com.apple.finder[39498]): Exited with exit code: 1
    May 14 11:05:37 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:37 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:03 laramie com.apple.launchd[353] ([0x0-0x154143ff].com.apple.finder[39392]): Exited with exit code: 1
    May 14 11:05:04 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 4 seconds
    May 14 11:05:04 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:04 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:06 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 2 seconds
    May 14 11:05:07 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:07 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:10 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter[39413]): Exited with exit code: 1
    May 14 11:05:10 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 9 seconds
    May 14 11:05:10 laramie com.apple.launchd[353] ([0x0-0x15416401].com.apple.finder[39415]): Exited with exit code: 1
    May 14 11:05:10 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 8 seconds
    May 14 11:05:11 laramie kextd[24]: 0x17ad40 exited without unlocking '/'
    May 14 11:05:11 laramie kextd[24]: / is still busy, delaying reboot
    May 14 11:05:14 laramie com.apple.launchd[1] (com.apple.UserNotificationCenter): Throttling respawn: Will start in 4 seconds
    Here's the output of 'kextstat':
    kextstat
    Index Refs Address Size Wired Name (Version) <Linked Against>
    1 1 0x0 0x0 0x0 com.apple.kernel (9.8.0)
    2 26 0x0 0x0 0x0 com.apple.kpi.bsd (9.8.0)
    3 3 0x0 0x0 0x0 com.apple.kpi.dsep (9.8.0)
    4 33 0x0 0x0 0x0 com.apple.kpi.iokit (9.8.0)
    5 35 0x0 0x0 0x0 com.apple.kpi.libkern (9.8.0)
    6 34 0x0 0x0 0x0 com.apple.kpi.mach (9.8.0)
    7 18 0x0 0x0 0x0 com.apple.kpi.unsupported (9.8.0)
    8 1 0x0 0x0 0x0 com.apple.iokit.IONVRAMFamily (9.8.0)
    9 1 0x0 0x0 0x0 com.apple.driver.AppleNMI (9.8.0)
    10 1 0x0 0x0 0x0 com.apple.iokit.IOSystemManagementFamily (9.8.0)
    11 1 0x0 0x0 0x0 com.apple.iokit.ApplePlatformFamily (9.8.0)
    12 29 0x0 0x0 0x0 com.apple.kernel.6.0 (7.9.9)
    13 1 0x0 0x0 0x0 com.apple.kernel.bsd (7.9.9)
    14 1 0x0 0x0 0x0 com.apple.kernel.iokit (7.9.9)
    15 1 0x0 0x0 0x0 com.apple.kernel.libkern (7.9.9)
    16 1 0x0 0x0 0x0 com.apple.kernel.mach (7.9.9)
    17 14 0x35594000 0x14000 0x13000 com.apple.iokit.IOPCIFamily (2.6) <7 6 5 4>
    18 4 0x355ae000 0x5000 0x4000 com.apple.driver.IOPlatformFunction (1.8.7d5) <12>
    19 0 0x355c5000 0x10000 0xf000 com.apple.driver.AppleMacRISC2PE (1.8.7d5) <18 17 12 7 5 4>
    20 0 0x35688000 0x6000 0x5000 com.apple.BootCache (30.4) <7 6 5 4 2>
    21 1 0x3578e000 0x4c000 0x4b000 com.apple.iokit.IOHIDFamily (1.5.5) <7 6 5 4 2>
    22 0 0x357e2000 0x4000 0x3000 com.apple.security.TMSafetyNet (3) <7 6 5 3 2>
    23 0 0x35806000 0xb000 0xa000 com.apple.nke.applicationfirewall (1.6.77) <7 6 5 4 2>
    24 0 0x35860000 0x1e000 0x1d000 com.apple.security.seatbelt (107.12) <7 6 5 3 2>
    25 0 0x3a2f0000 0x4000 0x3000 com.apple.driver.AppleFlashNVRAM (1.0.5) <12>
    27 0 0x3a376000 0xa000 0x9000 com.apple.driver.AppleMacRiscPCI (3.4.0) <17 12>
    28 0 0x3b39b000 0x8000 0x7000 com.apple.driver.AppleI2C (4.0.0d2) <12>
    29 0 0x3b3b3000 0x4000 0x3000 com.apple.driver.AppleCPUThermo (2.0.0a0) <12>
    30 0 0x3b44f000 0x6000 0x5000 com.apple.driver.AppleKiwiRoot (1.0.5f1) <17 12>
    31 2 0x3b673000 0x5b000 0x5a000 com.apple.iokit.IOFireWireFamily (3.4.9) <6 5 4 2>
    32 0 0x3b712000 0x2f000 0x2e000 com.apple.driver.AppleFWOHCI (3.9.7) <31 17 7 6 5 4 2>
    33 1 0x3b7e3000 0x5000 0x4000 com.apple.iokit.IOKeyLargo (1.7.2f1) <12>
    34 0 0x3b7fc000 0x7000 0x6000 com.apple.driver.AppleKeyLargo (1.7.2f1) <33 18 17 12>
    35 3 0x3b966000 0x37000 0x36000 com.apple.iokit.IOUSBFamily (3.4.9) <7 6 5 4 2>
    36 0 0x3ba59000 0xe000 0xd000 com.apple.driver.AppleUSBOHCI (3.4.6) <35 17 6 5 4>
    37 0 0x3ba76000 0x3000 0x2000 com.apple.driver.AppleBlower (2.0.0) <12>
    38 0 0x3ba87000 0x4000 0x3000 com.apple.driver.MacIOGPIO (1.3.0d0) <12>
    39 0 0x3ba9c000 0x5000 0x4000 com.apple.driver.I2CGPIO (1.3.0d0) <12>
    40 2 0x3bb84000 0x22000 0x21000 com.apple.iokit.IOSCSIArchitectureModelFamily (2.1.1) <6 5 4 2>
    41 1 0x3bbb7000 0xc000 0xb000 com.apple.iokit.IOSCSIParallelFamily (1.5.2) <40 6 5 4 2>
    42 0 0x3bbfb000 0x18000 0x17000 com.apple.driver.AppleLSIFusionMPT (2.0.3) <41 17 6 5 4 2>
    43 0 0x3bc27000 0x3000 0x2000 com.apple.driver.AppleKeyswitch (1.0.4d1) <12>
    44 0 0x3bc86000 0x4000 0x3000 com.apple.driver.AppleMPIC (1.5.3) <17 12>
    45 2 0x3bd0e000 0x12000 0x11000 com.apple.iokit.IOATAFamily (2.0.1) <6 5 4 2>
    48 0 0x3bd4e000 0x4000 0x3000 com.apple.driver.AppleVIA (1.5.1d1) <12>
    49 0 0x3bd6a000 0x4000 0x3000 com.apple.driver.AppleGPIO (1.3.0d0) <18 12>
    50 0 0x3be74000 0x16000 0x15000 com.apple.driver.ApplePMU (2.5.6d2) <21 12 7 6 5 4>
    51 0 0x3bee6000 0x3000 0x2000 com.apple.iokit.IOUSBUserClient (3.4.9) <35 6 5 4>
    52 0 0x3bf9b000 0x10000 0xf000 com.apple.driver.AppleUSBHub (3.4.9) <35 6 5 4>
    53 0 0x3c029000 0x4000 0x3000 com.apple.driver.AppleKiwiATA (1.0.2f1) <45 17 12>
    55 5 0x3c13f000 0x21000 0x20000 com.apple.iokit.IOStorageFamily (1.5.6) <7 6 5 4 2>
    56 0 0x3c19c000 0x13000 0x12000 com.apple.iokit.IOATABlockStorage (2.0.6) <55 45 6 5 4 2>
    58 0 0x3c2f5000 0x6000 0x5000 com.apple.driver.XsanFilter (2.7.91) <55 12>
    60 0 0x3c4f4000 0x24000 0x23000 com.apple.driver.AppleRAID (3.0.19) <55 6 5 4>
    61 2 0x356c5000 0x26000 0x25000 com.apple.iokit.IOGraphicsFamily (1.7.3) <17 7 6 5 4>
    62 1 0x356eb000 0x18000 0x17000 com.apple.iokit.IONDRVSupport (1.7.3) <61 17 7 6 5 4>
    63 0 0x3567d000 0x3000 0x2000 com.apple.driver.AppleI2S (1.0.1f1) <12>
    64 1 0x35703000 0xc000 0xb000 com.apple.iokit.IOSerialFamily (9.4) <7 6 5 4 2>
    65 0 0x3570f000 0x9000 0x8000 com.apple.driver.AppleRS574Serial (1.3b7) <64 12>
    66 0 0x35718000 0x4000 0x3000 com.apple.driver.AppleLED (2.0.0a2) <12>
    67 0 0x3571c000 0x4000 0x3000 com.apple.driver.AppleLM87 (2.0.0) <12>
    69 0 0x357e6000 0xf000 0xe000 com.apple.driver.AppleVSP (2.2.2) <12>
    70 3 0x35811000 0x1f000 0x1e000 com.apple.iokit.IONetworkingFamily (1.6.1) <7 6 5 4 2>
    71 0 0x35830000 0xb000 0xa000 com.apple.iokit.IOFireWireIP (1.7.7) <70 31 6 5 4 2>
    72 1 0x35723000 0x4000 0x3000 com.apple.kext.OSvKernDSPLib (1.1) <6 5>
    73 2 0x3b49d000 0x20000 0x1f000 com.apple.iokit.IOAudioFamily (1.6.9fc5) <72 6 5 4 2>
    74 0 0x35727000 0x5000 0x4000 com.apple.driver.VirtualAudioDriver (2.5.8f1) <73 12>
    79 0 0x3b4bd000 0x17000 0x16000 com.apple.iokit.AppleBCM5701Ethernet (2.2.3b1) <70 17 6 5 4 2>
    80 0 0x3b3f5000 0xb000 0xa000 com.apple.iokit.AppleGMACEthernet (1.5.9f1) <70 17 6 5 4 2>
    82 0 0x3a2f8000 0x3000 0x2000 com.apple.driver.AppleFPButton (1.0.5a1) <12>
    83 0 0x3a31a000 0x3000 0x2000 com.apple.driver.AppleHWClock (1.5.2d0) <18 12>
    84 0 0x3b4df000 0x44000 0x43000 com.apple.ATIRadeon (5.4.8) <62 61 17 12 4 2>
    86 0 0x3b400000 0x5000 0x4000 com.apple.driver.AudioIPCDriver (1.0.6) <73 6 5 4 2>
    90 0 0x3b57b000 0x16000 0x15000 com.apple.driver.DiskImages (199) <55 7 6 5 4 2>
    91 0 0x3bd9a000 0xd000 0xc000 com.apple.filesystems.autofs (2.0.2) <7 6 5 4 2>
    92 1 0x22c9d000 0xe000 0xe000 com.apple.driver.ndrv.ATY,BlueStar.0x22ca6248 (1.0.0f251)
    93 0 0x3b555000 0x1b000 0x1a000 com.apple.iokit.IOSCSIBlockCommandsDevice (2.1.1) <55 40 6 5 4 2>
    I'd be grateful for any help or advice in clari
    Message was edited by: gregariousfruit

    I got sick of the error so hard-rebooted the server manually. Seems to be fine now, and software updates work as normal.

  • "returning error page for JRun too busy or out of memory"

    Hello,
    I've got some trouble to update a ColdFusion linux based.
    We have already tried to update from ASPB11-04 and ASPB11-14 but we always have the folloing erreor message :
    "returning error page for JRun too busy or out of memory"
    We really need a solution ASAP. Thanks!
    Jeff

    Can you share the exception and application logs having the error entries.
    Regards,
    Anit Kumar

Maybe you are looking for