Source of Time-off Request Project

Hi,
I am new to CAF guided procedures, I am trying to implement the Callableobject in webdynpro(java) same as time-off request. in gallery>examples>Time-offrequset, will clear my doubts. so how can i get the DCs
             com.sap.caf.eu.gp.example.timeoff.wd.create.CCreate
             com.sap.caf.eu.gp.example.timeoff.wd.approve.CApprove
              com.sap.caf.eu.gp.example.timeoff.wd.complete.CComplete
              com.sap.caf.eu.gp.example.timeoff.wd.display.CDisplay
Regards,
Naga

Hi Chandan,
Thanks For your reply.
todo These  things, i needed from the source.
1. When we open the time-off process , its opening webdynpro view directly, without clicking execute button. how can we achive it?, i tried the example "Designing a process from the scratch" , but didnt get it.(its directly opening webdynpro screen when i click the initiate the process, how can i acieve this?)
2.How can we allocate the action to processors in run time?
3.when we initiating a process its not not asking the stepsfill input, edit roles ? how can we achive this?
Regards,
Naga

Similar Messages

  • Guided Procedures - Runtime "Create Time-off Request"

    Hi Everyone,
    I’ve created a Time-Off Process using the tutorial downloaded from SDN site.
    When I try to start the Runtime project (Employee side) I find the “Processors Table” in "Create Time-off Request" screen.
    The Approver name is not correct… is not what I expected!
    1) How can I change (in the Design Time project/area) the Approver and HR Consultant parameters?
    2) How can I hide (in the Runtime area) the “Processors Table”? 
    Furthermore, I would like to have more information about the “Parameters Consolidation” meaning. Could you help me to catch this meaning?
    Thanks in advance,
    Enrico

    Hi David,
    thanks for you useful answer! You gave me an answer of 80%!
    Now I try to explain you my problem for the other 20%!
    Now, ... I can't modify the Time-Off exemple, right?! But I would just like to start from this example and modify it!!!
    Can I do it starting from the project code?!
    Can I see the code lines which describe the Time-Off behaviour, so that I can customize it???? ... enfact, if I could do it, I wouldn't have to rewrite the whole code, and I also could understand the logic of TimeOff project structure.
    Do you understand me? Was I clear?

  • Infopath Time Off Request For on Sharepoint Coding in C#

    So I have created a Time Off Request form to put up on our internal company intranet sharepoint site. 
    I am trying to get this form to do several things.
    First of all, after the user fills out the form they can click the submit button and it will email it to their manager.  That part is working fine.
    The other button is the one that I am having trouble with.
    Once the Manager receives the request I want them to be able to click a 2nd "approve" button and make the following happen:
    A calendar entry is automatically created in the managers calendar for the day/days requested off.  It needs to be created as an All Day Event and Marked Private.
    An appointment invitation needs to be sent to the requester so they can accept and the day/days will be added to their calendar as well.
    An email needs to be sent to the Requester telling them their request has been approved.
    Here is the code I have so far.  It is in C#
    using Microsoft.Office.InfoPath;
    using System;
    using System.Windows.Forms;
    using System.Xml;
    using System.Xml.XPath;
    using mshtml;
    using Outlook = Microsoft.Office.Interop.Outlook;
    using System.Reflection;
    using System.Net;
    using System.Net.Mail;
    namespace ITTimeOffRequest
        public partial class FormCode
            public void InternalStartup()
                ((ButtonEvent)EventManager.ControlEvents["CTRL10_2"]).Clicked += new            ClickedEventHandler(CTRL10_2_Clicked);
            public void CTRL10_2_Clicked(object sender, ClickedEventArgs e)
                // Get a reference to the Main datasource
                XPathNavigator root = MainDataSource.CreateNavigator();
                // Create an Outlook application
                Outlook.Application outlookApp = new Outlook.Application();
                // Get NameSpace and Logon
                Outlook.NameSpace outlookNS = outlookApp.GetNamespace("mapi");
                outlookNS.Logon("arochelle", Missing.Value, false, true);
                // Create a new AppointmentItem
                Outlook.AppointmentItem appointmentItem =
              (Outlook.AppointmentItem)outlookApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olAppointmentItem);
                appointmentItem.Sensitivity = Microsoft.Office.Interop.Outlook.OlSensitivity.olPrivate;
                appointmentItem.AllDayEvent = true;
                appointmentItem.ReminderSet = true;
                appointmentItem.ReminderMinutesBeforeStart = 5;
                appointmentItem.BusyStatus = Outlook.OlBusyStatus.olBusy;
                appointmentItem.IsOnlineMeeting = false;
                appointmentItem.OptionalAttendees = root.SelectSingleNode("//my:field2", NamespaceManager).Value;
                appointmentItem.Subject = ("Time Off Request");
                appointmentItem.Body = ("Date of request") + root.SelectSingleNode("//my:field4", NamespaceManager).Value;
                appointmentItem.Location = root.SelectSingleNode("//my:field13", NamespaceManager).Value;
                //appointmentItem.Start.Day.ToString = root.SelectSingleNode("//my:field10", NamespaceManager).Value;
                //appointmentItem.End.Day.ToString = root.SelectSingleNode("//my:field10", NamespaceManager).Value;
                //appointmentItem.Start = DateTimePicker.("//my:field10");
                //appointmentItem.End = DateTimePicker("//my:field10");
                appointmentItem.Start = DateTime.Parse("//my:field10");
                // Save to Calendar
                appointmentItem.Save();
                // Logoff
                outlookNS.Logoff();
                // Clean up
                appointmentItem = null;
                outlookNS = null;
                outlookApp = null;
                // Send Email Confirmation.
                SmtpClient client = new SmtpClient();
                client.Port = 25;
                client.Host = "sw-exchange";
                client.EnableSsl = false;
                client.Timeout = 10000;
                client.DeliveryMethod = SmtpDeliveryMethod.Network;
                client.UseDefaultCredentials = false;
                MailMessage mm = new MailMessage("<manager email address here", "//my:field2", "Your Time Off Has Been
                    Approved", "Your Time Off Has Been Approved");
                mm.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure;
                client.Send(mm);
    Obviously i'm trying to get the code to pull in a lot of the information from the fields people have filled on on the form.  For example in the send email confirmation section Field 2 is the choose emplayee email drop down box on the form.  CTRL10_2
    is the approve button.  Field 10 is the day requested off.  The form has five lines to request days off on it and each line has a date picker to choose the day.  A text field for number of hours requested off, a Time field for Start Time, a
    Time field for End Time and a Drop down box to pick Sick Leave or Annual Leave.
    I'm having a problem with creating the appointment on the appropriate day in the managers calendar and then sending the appointment request to the requester.  That is where the code errors out.  This is only the coding for the first line of time
    off requests as well, i'm not sure how to change the code so that it will include all 5 request lines unless I have to use some kind of Matrix or something.
    I'm trying to get the appointmentitem.start and .end to pull from the date(s) that have been requested off but what happens so far is that when the approve button is clicked it just crates a private all day calendar entry for the current day on the managers
    calendar and doesn't generate the appointment request for the requester or send the confirmation email.
    Any help would be greatly greatly appreciated.

    for the electronic form:
    since you're on Standard edition, I wouldn't recommend InfoPath... I'd start with standard SharePoint list (using attachments for scanned images)... if it needs to be customized, I'd use web dev approaches (HTML+JavaScript), since we've found this approach
    to be VERY upgradable.
    For the process:
    Assuming the process is LINEAR, I'd use SharePoint Designer with an approval process activity and a task activity (for AP). If the process is NOT linear, I'd look into a third party component like Nintex or K2 (you may find some people who say "just build
    it with Visual Studio"... don't. You'll regret it later, and the business will too).
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Time Machine requests more storage than needed!

    Starting standard backup
    Backing up to: /Volumes/TM_Backup/Backups.backupdb
    No pre-backup thinning needed: 1.94 GB requested (including padding), 109.41 GB available
    Copied 2539 files (265.1 MB) from volume Snow_Leopard.
    Copied 2547 files (265.1 MB) from volume Leopard.
    Copied 2754 files (548.8 MB) from volume Data.
    No pre-backup thinning needed: 1.29 GB requested (including padding), 108.86 GB available
    Copied 382 files (103 bytes) from volume Snow_Leopard.
    Copied 390 files (196 bytes) from volume Leopard.
    Copied 435 files (196 bytes) from volume Data.
    Starting post-backup thinning
    No post-back up thinning needed: no expired backups exist
    Backup completed successfully.
    As you can see from the log entries above, Time Machine requested 1.94 GB, but it backed up only 548.8 MB.
    And then it requested 1.29 GB and it backed up only 196 bytes.
    I recall reading in this forum that this may be caused by the size information in some folder being wrong. I have partitioned my internal hard drive in three partitions:
    1. Leopard
    2. Snow Leopard
    3. Data
    So, I excluded the Leopard partition and did another backup and it was still more than 1 GB.
    I added Leopard and took a backup.
    Then I excluded Snow Leopard and did another backup and the space requested was still more than 1 GB.
    So I added Snow Leopard and took a backup.
    Then I excluded Data and did another backup. It requested more than 1 GB.
    So, I was unable to identify which volume had the bad folder info.
    I wiped out the Time Machine backup by reformatting the volume,
    I then re-created the directory of all three volumes using Disk Warrior.
    And then I ran a fresh backup.
    And then I ran another backup. It still requests more than 1 GB than needed.
    Any else I should try?
    Thank you very much.
    Roberto
    Message was edited by: Roberto Sepúlveda

    Pondini wrote:
    Roberto Sepúlveda wrote:
    As you can see from the log entries above, Time Machine requested 1.94 GB, but it backed up only 548.8 MB.
    And then it requested 1.29 GB and it backed up only 196 bytes.
    That's more of an over-estimate than usual. TM adds 20% to the estimated size of the backup, and it's usually fairly close.
    no it's not. I frequently see large disparity between estimated and actual backup for smaller backups. in the example I posted the ratio is 5:1! this is completely normal. there is nothing to troubleshoot or see here.
    There are some things that will cause the estimate to be off significantly, but most of them result in larger backups, not smaller ones.
    It's pure speculation, but I suspect if the same file is updated repeatedly between backups, it's size may be counted more than once for the estimate.
    But as you mentioned, something corrupted might be a cause, also. Since there's no way to tell how much was estimated from each partition, I'd run +*Verify Disk+* on the partition you're running from, and +*Repair Disk+* on the others, then do a Restart.

  • My iPad does not recognize my Apple ID. I have reset several times (as requested) it's stated that its successful, and then does not work..I cannot access anything!!!!

    My iPad does not recognize my Apple ID. I have completed a reset several times (as requested).
    The re-set is shown as successful but then doesn't work..I'm locked out of everything!!!

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Time off in print preview doesn't show

    Hi, 
    I'm working in Project 2010 on a Windows 7 machine.
    In the Gantt-diagram the time off (saterday and sunday) is shown.
    However, it doesn't in the print preview neather on the print itself. Te free time is just as blank as the rest of the week.
    I use project a lot but never had this problem.
    Even when I copiet the rows to another project where I didn't have the problem, the problem also moved to that project..
    Hope anybody can help me with this problem.

    Have you compressed the print so you are not showing every day?  Check File > Print and click the Page setup hyperlink.  On the Page tab does it show 100% ?

  • Employee Time Off Workflow

    I would like to create a FormsCentral employee time off form.  Our currently form is a PDF that has 3 submission buttons - each submission button is used by a different person in the work flow chain.
    1st submission is done by the employee requesting time off, when pressed it attaches itself to an e-mail and is then the employee enters the supervisors email.
    2nd submission is for the supervisor to approve the time off and once the submit button is pressed it again attaches itself to an e-amil and is sent to human resources.
    3rd submission is to human resources which then records it and is then sent back to the employee for the employee to keep as a record of approval.
    Basically -
    Employee > Supervisor > Human Resources > Employee
    How can I replicate this or would there be a better way to handle this with Forms Central?
    Thanks

    Hi;
    FormsCentral does not have any sort of a "workflow" for forms.  We just released a feature that could be used for something like you've described but is not what the feature is designed for.
    The new feature is "Save Web Form" which is turned on and configured by the author of the form and allows the form filler to "Save" their progress and Email a URL to the partially completed form to themselves (or to someone else).  You could accomplish a "workflow" using this feature.  The Human Resources person in the chain would probably "Submit' the form and with "Email Reciepts" turned on the Employee could recieve an email confirmation that the process was completed.
    The "Save Web Form" feature is enabled on the Options tab, under "Save Web Form".
    Thanks,
    Josh

  • Source Media Time Code in Export Frame Metadata

    It is possible to include source media time code in the XMP metadata for images created using the Export Frame command? When I export a frame, the metadata only contains sequence time code. I work for an aerial survey and remote sensing firm, and we use time of day time code from aerial video footage in many places in our workflow. We include still frames of key points in the video in our deliverables for clients, and the time code values we need come from the same points as those still frames, so our current workflow uses RedCine-X to export still frames and Digital PIE to extract source time code from those images. I would strongly prefer to work only in Premiere Pro and never open RedCine-X, but I can't keep the workflow all in Premiere Pro if I can't get source time code out with the images.

    That's a good suggestion Jim. I did try that before I posted, and exporting from the source monitor does embed time code in the XMP, but it's not time code I recognize. It's neither the media source time code nor the sequence time code where that frame appears in the only sequence I have in my test project. For example, I just exported a frame from the source monitor at 18:43:45:15 in the source media time code. That frame appears at 00:43:23:22 in the sequence I have open, and I used match frame to open the frame in the source monitor. The resulting time code in the XMP for the exported frame is 00:44:53:06. There are no options for anything except file name, format, and output directory in the Export Frame dialog, so I don't know how to control what time code Premiere sends out from the source monitor.

  • Issue with PTO (Paid Time Off) quota generation

    Hi All,
    We have an issue with quota generation of PTO for our employees.
    The issue goes like this:
    We have a Paid time off for employees 5weeks( 200 hrs) for employees who have worked less than 5 years.
    we have  paid time off for employees 6 weeks ( 240 hrs) for employees who have worked more than 5 years.
    we have the following logic that has to go in this config:
    -- Our fiscal year starts on Feb 1st and ends on Jan end or Feb starts which has a full week of working days. ( ex: if 01/31/2012 falls on a Thursday the following Monday which has full 5 day working week would be the end of the fiscal year).
    -- Depending on the working hours of  the employees and the date of joining for the first year ( for new hires)0041 info type the eligibility gets varied and reduced. Ex( employees who joins on start of fiscal year and works 40hrs per week schedules is eligible for 200hrs of PTO. Employees who join in the month of august and works for 35 hrs per week ( i.e mid of fiscal year) would get 91 hrs of PTO.
    I need to put this in the system. I am thinking this could be done with out tweaking PCR.I need help in configuring this in Absence quotas as to what are the things i need change in system config and how do i do it. Please help with some screen shots if possible.  I really need this to get it done ASAP. Looking forward for help.
    Thanks,
    Chowdary.

    We use TM00 schema. Can i call TS15 and TS 12  rules into TM00 acheieve my issue of quota entilements?
    Iam doing this because my businees needs to see if an employee chages his work schedule from 40 to 30 or 20 etc.. the PTO has to vary accordingly.
    As the minimum eligibility is to work for 20 hrs to avail the PTO days. If at any point the employee drops it under 20 he will not be eligible till he work any this >= 20hrs per month so the evaluation has to check periodically to update the quota availability.... I need help plz suggest ...

  • Query-Paid Time Off (PTO)

    Hi,
    I am working on Time Management. I have a query. I need to set the PTO (Paid Time Off) right wherein the Details given as under:-
    Scenario:-
    1) Length of Service=0-0.99
    Accrual hours per pay period=4.01
    Yearly Equivalent= 96 Hours
    Maximum Hours of Accrual=96
    2) Length of Service=1-1.99
    Accrual hours per pay period=4.01
    Yearly Equivalent= 96 Hours
    Maximum Hours of Accrual=144
    Here the query is that the Maximum number of Hours to be accrued should be 96+96=192 but the client wants it to be 144 and not 192 but clients wants to add the Scenario 1 and 2 for maximum number of hours but the total should not exceed 144. Same is the case with other scenario’s given wherein I need to add maximum number of hours but there is limit set  for total.
    I went to T559L but unable to understand how to incorporate the above stated.
    Kindly help.
    Regards,
    Garima

    Hi,
    Kindly go give a reply.
    I need to solve the query.
    It will be suitably rewarded.
    Regards,
    Garima

  • Overtime compensation by time off.

    Dear Experts,
    I am using TM00 for time evaluation, I want to compensate the overtime perfomed by employee by time off only (no payment for overtime), I am using PCR YO16 for determining overtime (Copy of TO16 Determine overtime without approval), I have set the compensation type 3 (Compensation time off) using PCR YO16, I have created one absence quotya type 02 called as "comp off" with "INCREASE" mode in customizing, I have kept base entitlement for this quota type as Day Balance 0410 (Time off from overtime), the issue is that the quota type 02 is geting accrued twice if employee works overtime this is because PCR for compensation of Overtime TC10 updates the quota 02 by UPDTQA by overtime hours and QOUTA function also increases the quota type 02 by overtime hours,.
    Since my quota type 02 should only get generated if any employee works overtime I dont want it to get processed by QUOTA function so could you please let me know how to achieve it.
    If there is any other solution for my requirement then also please let me know.
    Thanks,
    Javed

    Hi Okan,
    For accessing the quota in time evaluation should be in increase mode.
    Still I tries as you said be it is also preventing it from getting updated by UPDTQA.
    I am having one workaround...if I remove the UPDTQA statement from TC12 I am getting correct results since the quota is getting updated by QUOTA function only...but I think this would not be the correct way to get the solution since SAP has provided the UPDTQA statement in TC12 means there should be some purpose behind it...right...the correct way would be to avoid the quota getting updated by QUOTA function...I think we are missing something...bevause of which we are not able prevent QUOTA function from updating our quota..please suggest...
    Thanks,
    Javed

  • Trying to use labview to analyse analog data from a jump on a force plate and measure peak force (at two points, initial land and 2nd land from jump). Also need to mark the time of flight (time off plate).

    Attached is a file of 3 trials of a drop vertical jump activity onto a force plate.  the subject stands on a platform off the force plate, jumps onto the force place and immediately jumps up as if going for a rebound.  I am able to run this data and obtain a waveform graph with no problems.  however, I need to be able to find the initial contact with the force palte, the peak of the drop, the intial time off the force plate (prior to the jump), the return from the jump and finally the second peak (landing from the jump). 
    I want to calculate the time of flight ( time off the plate and in the air after the intial drop) to calculate juimp height.
    I had someone write me a mathscript for it and it works well, however, I need to do it without mathscript as I do not understand mathscript (nor Labview!!).
    Please help
    Attachments:
    Jose_Index and shift register6.vi ‏130 KB
    NI post.docx ‏365 KB

    OK, but I'm not understanding what you're asking us to do... Are you asking us to explain what the MathScript code is doing? (It's searching the array for the elements when the values are above or below a threshold.) Are you asking someone to convert the whole MathScript code to LabVIEW (we are not a code-writing service), or you just want to be able to calculate the new stuff you want with LabVIEW?
    In the future, please do not post proprietary file formats. Most people do not have Word, or Word 2007 for that matter. Please post text files or PDFs. Thanks.

  • Can EJB and BC exist at the same time in one project?

    having to use ADF's BC and EJB to access data in both way due to the special requirements, but I am always getting the deployment failure.
    can Ejbs and BC components exist at the same time in one project?

    thanks for your reply.
    I considered to separate the BC and EJB as the separate project. I just use the EJB component to implement the dynamic tree menu, whether a little make a mountain out of a molehill if you as a separate project.

  • Unable to find consolidate field in Time off Process application

    Hi All,
    I create an aplllication for Time off process and unable to find "consolidate" field when selecting set up block parameters .I am using portals EP 7.0 Version
    Could you please help me in getting this ...
    Thanks ,
    Nararaju.

    Hi,
       we group parameters so that the output of process actions is automatically entered as input .We can consolidate parameter at Action,block adn process levels
    follow the below steps
    1. Select your Seq Block and click on the tab "Parameters" at the bottom pane
    2. Mark all the parameter (press ctrl for multiple ) and Click on Map
    3. Supply the Name and say create
    at last do a SavaAll
    hope this will solve ur problem
    cheers
    souza

  • V240 ALOM resets every time it requests an IP address through DHCP

    I'm encountering an issue with an ALOM configured to DHCP. Every time it requests an IP address (tracked by watching messages on the DHCP server, which is running Red Hat EL4 update 4), the ALOM resets. All the POSTs pass. If it's configured for a static IP, it stops resetting, but immediately begins doing it again if switched back. I've encountered this with two different ALOMs on different V240s, so I'm guessing it's not hardware, but it hasn't happened 100% of the time either (it seems to DHCP fine most of the time, then it will get into this state and stay there).
    Here's output from the reset grabbed from the serial console:
    sc>
    ALOM BOOTMON v1.6.5
    ALOM Build Release: 001
    Reset register: e8000000 EHRS ESRS LLRS CSRS
    ALOM POST 1.0
    Dual Port Memory Test, PASSED.
    TTY External - Internal Loopback Test
    TTY External - Internal Loopback Test, PASSED.
    TTYC - Internal Loopback Test
    TTYC - Internal Loopback Test, PASSED.
    TTYD - Internal Loopback Test
    TTYD - Internal Loopback Test, PASSED.
    Memory Data Lines Test
    Memory Data Lines Test, PASSED.
    Memory Address Lines Test
    Slide address bits to test open address lines
    Test for shorted address lines
    Memory Address Lines Test, PASSED.
    Memory Parity Test
    Memory Parity Test, PASSED.
    Boot Sector FLASH CRC Test
    Boot Sector FLASH CRC Test, PASSED.
    Return to Boot Monitor for Handshake
    ALOM POST 1.0
    Status = 00007fff
    Returned from Boot Monitor and Handshake
    Clearing Memory Cells
    Memory Clean Complete
    Loading the runtime image...
    Sun(tm) Advanced Lights Out Manager 1.6.5 (Pool0007)
    Full VxDiag Tests
    BASIC TOD TEST
    Read the TOD Clock: WED OCT 31 11:10:38 2007
    Wait, 1 - 3 seconds
    Read the TOD Clock: WED OCT 31 11:10:40 2007
    BASIC TOD TEST, PASSED
    ETHERNET CPU LOOPBACK TEST
    50 BYTE PACKET - a 0 in field of 1's.
    50 BYTE PACKET - a 1 in field of 0's.
    900 BYTE PACKET - pseudo-random data.
    SC Alert: SC System booted.
    ETHERNET CPU LOOPBACK TEST, PASSED
    Full VxDiag Tests - PASSED
    Status summary - Status = 7FFF
    VxDiag - - PASSED
    POST - - PASSED
    LOOPBACK - - PASSED
    I2C - - PASSED
    EPROM - - PASSED
    FRU PROM - - PASSED
    ETHERNET - - PASSED
    MAIN CRC - - PASSED
    BOOT CRC - - PASSED
    TTYD - - PASSED
    TTYC - - PASSED
    MEMORY - - PASSED
    MPC850 - - PASSED
    Please login:
    Serial line login timeout, returns to console stream.
    Enter #. to return to ALOM.
    ALOM BOOTMON v1.6.5
    ALOM Build Release: 001
    Reset register: e8000000 EHRS ESRS LLRS CSRS
    ALOM POST 1.0
    Dual Port Memory Test, PASSED.
    TTY External - Internal Loopback Test
    TTY External - Internal Loopback Test, PASSED.
    TTYC - Internal Loopback Test
    TTYC - Internal Loopback Test, PASSED.
    TTYD - Internal Loopback Test
    TTYD - Internal Loopback Test, PASSED.
    Memory Data Lines Test
    Memory Data Lines Test, PASSED.
    Memory Address Lines Test
    Slide address bits to test open address lines
    Test for shorted address lines
    Memory Address Lines Test, PASSED.
    Memory Parity Test
    Memory Parity Test, PASSED.
    Boot Sector FLASH CRC Test
    Boot Sector FLASH CRC Test, PASSED.
    Return to Boot Monitor for Handshake
    ALOM POST 1.0
    Status = 00007fff
    Returned from Boot Monitor and Handshake
    Clearing Memory Cells
    Memory Clean Complete
    Loading the runtime image...
    Sun(tm) Advanced Lights Out Manager 1.6.5 (Pool0007)
    Full VxDiag Tests
    BASIC TOD TEST
    Read the TOD Clock: WED OCT 31 11:18:36 2007
    Wait, 1 - 3 seconds
    Read the TOD Clock: WED OCT 31 11:18:38 2007
    BASIC TOD TEST, PASSED
    ETHERNET CPU LOOPBACK TEST
    50 BYTE PACKET - a 0 in field of 1's.
    50 BYTE PACKET - a 1 in field of 0's.
    900 BYTE PACKET - pseudo-random data.
    SC Alert: SC System booted.
    ETHERNET CPU LOOPBACK TEST, PASSED
    Full VxDiag Tests - PASSED
    Status summary - Status = 7FFF
    VxDiag - - PASSED
    POST - - PASSED
    LOOPBACK - - PASSED
    I2C - - PASSED
    EPROM - - PASSED
    FRU PROM - - PASSED
    ETHERNET - - PASSED
    MAIN CRC - - PASSED
    BOOT CRC - - PASSED
    TTYD - - PASSED
    TTYC - - PASSED
    MEMORY - - PASSED
    MPC850 - - PASSED
    Please login:

    Look in XP control panel/device manager. Check Network Adapters, is there a yellow tick on the Nvidia nForce Networking Controller?
    Click on nVidia and select the Driver tab. My Driver Provider is NVIDIA, Driver Date: 4/6/2005, Driver Version: 4.8.2.0 and it is Digitally Signed. The Nvidia driver file version is 1.00.00.0482. Mine works fine.
    Have you tried the Marvell Yukon NIC? That should work.
    Bob...

Maybe you are looking for

  • How to make a field mandatory in SAP Business one ?

    How to make a text field mandatory in SAP Business one?

  • How can I create a Web Service with several classes

    Hello, I developed an API which I want to use to create a webService that offer an acces to all the classes and use all their methods.I tried this with Netbeans but I view that I will have a WSDL file for each class. But I have tested the yahoo api w

  • Schedule a job by passing variant parameter

    Hi, We are trying to copy a job with it's all properties to another Job. In this process, 2nd job is schedule as per the following statement. details: called Prog name : Z_program1 variant : Zvaraint1 statement used here is " submit Z_program1 using

  • Multi-processor aware?

    I'm using Aperture 3 and CS5 on my 2GHz aluminum MacBook (4G RAM) and especially A3 seems to get bogged down at times. I'm considering a new 27" iMac. The question is does quad core or hyperthreading make a difference with A3 or CS5? I don't do video

  • Syncing my Music..

    How do i update itunes on an ipod 5? every time i try to sync my music from my macbook pro to my ipod, it says i need to update itunes to 11.1... how do i do this? Thanks!