Roll up scheduling

I have zen 3.2 sp 1 and I am working on a roll up policy.
Under the roll-up schedule properties in console one there is a check
box
for Randomly dispatch during time period. Exactly what does that
mean?
I cannot find any references to it in the documentation anywhere.
There is another box that says repeat the action. Is that in
reference to
if the initial roll up fails?
Also, I have scheduled roll up for 2 hours from 5 to 7 every monday
evening.
What if the roll up doesn't finish at 7 pm, will it continue where it
left
off the next monday?
Any insight would be greatly appreciated.
Jared H.

Thanks,
That is good info. Are you able to roll up from say 10 different
servers at
the exact same time?
Jared H.
"Uwe Buckesfeld" <[email protected]> wrote in message
news:[email protected] .227...
> "Jared H." <[email protected]> wrote in
> news:PMcVa.25204$[email protected]:
>
> > I have zen 3.2 sp 1 and I am working on a roll up policy.
> > Under the roll-up schedule properties in console one there is a
check
> > box for Randomly dispatch during time period. Exactly what does
that
> > mean? I cannot find any references to it in the documentation
> > anywhere.
>
> Nope, this means you never know when the roll up will occur, except
that
it
> will be somewhere in the time frame you set <G>
>
> > There is another box that says repeat the action. Is that
> > in reference to if the initial roll up fails?
>
> Nope, it will start again every XX hours/minutes. Keep in mind that
the
> scan policy probably runs at a completely different time, so that
the roll
> up process may find files at different times.
>
> > Also, I have scheduled roll up for 2 hours from 5 to 7 every
monday
> > evening. What if the roll up doesn't finish at 7 pm, will it
continue
> > where it left off the next monday?
>
> AFAIK yes. Actually we are talking about very small amounts of data
here.
> If you don't have a large number of workstation scans pushed across
a
modem
> connection, I think you're safe.
>
> Uwe
>
>
> --
> Novell Support Connection Volunteer SysOp
> Please don't send me support related e-mail unless I ask you to do
so.

Similar Messages

  • Use SQL to roll a schedule forward to a random date

    Hi,
    oracle 10.2.0.4  Linux
    We have two largeish  tables ( 10^5 rows in each) that track our workforces scheduled hours.  The first table creates generic schedules that show working days, each schedule must have 1-n rows in it, one for each day in the cycle.  The majority of our workforce are on a rolling 8 day cycle.  In the example below I have two shifts
    Sched_4d that is a four day cycle of day-on day-off pairs.
    Sched_3d this is a staggered full day, half day, day-off cycle.
    From the information below you can see that in 1990 the sched_4d went from an 8 hour day to a 9 hour day.  There is no guarantee that SCHED_4D will not suddenly gain 2 extra days as part of this years union talks.
    The second table is a simple assigment table showing when a person goes onto a schedule.
    To work out a given day's schedule, you look at the EMP_SHIFT table to work out which schedule is "current", then you look at the date that the person was assigned to the schedule and assume that is SHIFT_ID 1, the next day is SHIFT_ID 2 until you complete the cycle and start again.
    CREATE TABLE SCHED_DATA
      SCHED_ID     VARCHAR2(8 CHAR)             NOT NULL,
      ASOFDATE           DATE                          NOT NULL,
      SHIFT_ID        NUMBER(3)           NOT NULL,
      SCHED_HRS       NUMBER(4,2)                   NOT NULL
    CREATE UNIQUE INDEX SCHED_DATA on SCHED_DATA (SCHED_ID, ASOFDATE, SHIFT_ID)
    CREATE TABLE EMP_SHIFT
    EMPID VARCHAR2(15 CHAR) NOT NULL,
    ASOFDATE DATE NOT NULL,
    SCHED_ID VARCHAR2(8 CHAR) NOT NULL
    CREATE UNIQUE INDEX EMP_SHIFT on EMP_SHIFT ( EMPID, ASOFDATE, SCHED_ID)
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1980',1,8);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1980',2,0);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1980',3,8);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1980',4,0);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1990',1,9);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1990',2,0);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1990',3,9);
    INSERT INTO SCHED_DATA VALUES ('SCHED_4D', '01-JAN-1990',4,0);
    INSERT INTO SCHED_DATA VALUES ('SCHED_3D', '01-JAN-1990',1,8);
    INSERT INTO SCHED_DATA VALUES ('SCHED_3D', '01-JAN-1990',2,4);
    INSERT INTO SCHED_DATA VALUES ('SCHED_3D', '01-JAN-1990',3,0);
    INSERT INTO EMP_SHIFT VALUES ('001', '20-DEC-1989', 'SCHED_4D');
    INSERT INTO EMP_SHIFT VALUES ('001', '01-JAN-1990', 'SCHED_4D');
    INSERT INTO EMP_SHIFT VALUES ('001', '03-JAN-1990', 'SCHED_3D');
    Given the above information, I need to write a select that receives 2 dates ( :FROM and :TO) and for all employees in EMP_SHIFT returns a row for each day and the relevant scheduled hours for that day. 
    Thus the above data  with a from and to of '21-DEC-1989' : '05-JAN-1990' should return
    EMPID, DATE, SCHED_HOURS
    001, 21-DEC, 0
    001, 22-DEC, 8
    001, 23-DEC, 0
    001, 24-DEC, 8
    001, 25-DEC, 0
    001, 26-DEC, 8
    001, 27-DEC, 0
    001, 28-DEC, 8
    001, 29-DEC, 0
    001, 30-DEC, 8
    001, 31-DEC, 0
    001, 01-JAN, 9
    001, 02-JAN, 0
    001, 03-JAN, 8
    001, 04-JAN, 4
    001, 05-JAN, 0
    The employee started thir assignment to sched_4d on 20-DEC, so that would be SHIFT_ID 1.  Thus 21-DEC is SHIFT ID 2 which is 0 hours.  Cycle until the next event which is 01-JAN, when they are assigned to the new sched_4d which has them working 9 hours on day 1.  On 03-JAN they switch to the new cycle and go on the 8:4:0 rotation.
    I can see how I could
    SELECT EMPID, DAY_OF_INTEREST, SCHED_ID
    FROM EMP_SHIFT A, (SELECT '01-JAN-1979' + rownum "DAY_OF_INTEREST" from dual connect by level <=10000)
    WHERE A.ASOFDATE = (SELECT MAX(A1.ASOFDATE) FROM EMP_SHIFT A1 WHERE A1.EMPID = A.EMPID AND A1.ASOFDATE <= DAY_OF_INTEREST)
    AND DAY_OF_INTEREST BETWEEN :FROM_DT AND :TO_DT
    And I imagine I need to use some kind of MOD( (DAY_OF_INTEREST - EMP_SHIFT.ASOFDATE), (#number of days in shift) ) to work out which shift_id applies for a given Day_of_interest
    But I am struggling to do this in a way that would scale to more than one employee,
    Do any of the analytic functions achieve this in a neat way ?

    Hi,
    There are several analytic functions that might help here.  Both tables include starting dates only; we need to know ending dates for employee assignments as well as for schedules.  I used the analytic MIN and LEAD functions to get these in the query below.  Also, the query below needs to know how many days are in each schedule.  I used the analytic COUNT function for that.
    WITH    params   AS
       SELECT  TO_DATE ('21-DEC-1989', 'DD_MON-YYYY')  AS start_date
       ,       TO_DATE ('05-JAN-1990', 'DD_MON-YYYY')  AS end_date
       FROM    dual
    ,       all_dates   AS
        SELECT  start_date + LEVEL - 1    AS a_date
        FROM    params
        CONNECT BY  LEVEL <= (end_date + 1) - start_date
    ,       sched_data_plus AS
        SELECT  sched_id, asofdate, shift_id, sched_hrs
        ,       NVL ( MIN (asofdate) OVER ( PARTITION BY  sched_id
                                            ORDER BY      asofdate
                                            RANGE BETWEEN 1         FOLLOWING
                                                  AND     UNBOUNDED FOLLOWING
                                          ) - 1
                    , TO_DATE ('31-DEC-9999', 'DD-MON-YYYY')
                    )          AS uptodate
        ,       COUNT (*) OVER ( PARTITION BY  sched_id
                                 ,             asofdate
                               )  AS days_in_sched
        FROM    sched_data
    ,       emp_shift_plus AS
        SELECT  empid, asofdate, sched_id
        ,       NVL ( LEAD (asofdate) OVER ( PARTITION BY  empid
                                             ORDER BY      asofdate
                                           ) - 1
                    , TO_DATE ('31-DEC-9999', 'DD-MON-YYYY')
                    )    AS uptodate
        FROM    emp_shift
    SELECT    e.empid
    ,         d.a_date
    ,         s.sched_hrs
    FROM      all_dates        d
    JOIN      sched_data_plus  s  ON   d.a_date    BETWEEN s.asofdate
                                                   AND     s.uptodate
    JOIN      emp_shift_plus   e  ON   d.a_date    BETWEEN e.asofdate
                                                   AND     e.uptodate
                                  AND  e.sched_id  = s.sched_id
                                  AND  MOD ( d.a_date - e.asofdate
                                           , s.days_in_sched
                                           ) + 1   = s.shift_id
    ORDER BY  e.empid
    ,         d.a_date
    This query starts by getting all the days of interest, that is, all the days between the given start- and end dates.  (When you said "random date", I assume you meant "given date", which may not involve any random element.)
    Once we have a list of all the dates of interest, getting the results you want is just a matter of inner-joining to get which schedules were in effect on those dates, and which employees were assigned to those schedules on those dates.
    If you're concerned about having more than 1 employee, maybe you should post sample data that involves more than 1 employee.
    How do you handle employee terminations?  For example, what if employee 001 had quit on January 4, 1990?  I assume you'd want the output for that employee to stop on January 4, rather than continue to the end of the period of interest.
    If you have termination dates in an employee table not shown here, then you can use that termination date instead of December 31, 9999 as the default end date for assignments.  If you have a special schedule for terminations (or leaves of absence, for that matter) you'll probably want to include a WHERE clause in the main query not to display dates after the employee left (or while the employee was on leave).

  • Can you modify the roll-up schedule for child servers into the parent?

    We have one parent server (which server some clients directly) and two child servers.  There appears to be a large delay (maybe 2 hours) between when a server reports into a child server and when that update reaches the parent server.  We would
    like to be able to query the master server on patch night and get an up to date accounting of patch status without having to wait for the roll-up.  Is there any way to change the roll up interval or to force a roll-up on demand (say right before generating
    a report of approved patches)?
    Tom

    Here is the scenario:  The clients are set for a 3 hour detection frequency, and on patch day the patches are approved at least 3 hours before the earliest patch time.  The first patch window starts at 8:00PM on patch night and the servers are
    set to patch and reboot, so they start installing at 8:00 and after they finish and reboot they always report in to their reporting server within a few minutes after startup.
    This scenario is almost certainly doomed on principle from the start. Consider the following sequence of events that must occur between the time you approve the updates on the USS and the client system wants to install the update (at 8:00pm).
    The USS WSUS Server downloads the files for the approved updates from Microsoft. (This could run from minutes to an hour or more depending on the number of updates and available bandwidth, and I'm considering a liberal Internet connection for this activity.)
    The DSS WSUS Server(s) synchronize with the USS. The first sync event following the completion of any given update download will trigger the download of that file to the DSS as well. (How often your DSS syncs will drive this delay.)
    The DSS completes the download from the USS. (Like #1, this could run from minutes to hours, depending on the number of updates and available bandwidth.)
    The client system executes a detection with the assigned DSS and discovers that an approved update has a file available for download. (How often your client executes a detection will drive this delay, and even with a 3-hour detection, the client only has
    max TWO possible opportunities to find these updates between 10am and 8pm.)
    The client system completes the download from the DSS. (And these downloads must be completed BEFORE 8pm in order for the WUA to actually schedule the updates to be installed.)
    As such, the practicalities of getting from approval (even assuming mid-morning for that event) to fully downloaded by 8pm (so a total time span of ~10 hours end-to-end) is flirting with failure.
    For best results to make your 8:00pm installation time, you really need to approve the updates at least 24 hours in advance, and to ensure they get to the replica servers, probably closer to 48 hours in advance, all depending on what the actual
    DSS synchronization interval is, and the available connection bandwidth between the DSS and USS, and the USS and Microsoft.
    We would like to be able to see if all servers have patched as soon as possible after 8:00PM so we can start troubleshooting them and get them patched.
    The first hurdle here is when those systems are restarted after the updates are installed (assuming that the updates have actually gotten to the client system in time to be installed at all). The client system reports back to the assigned replica WSUS server
    following the restart. That state information is then uploaded to your upstream WSUS server during the next DSS server synchronization event. In addition, the reporting events from both the client-to-DSS and DSS-to-USS are processed asynchronously inside the
    database.
    The only way you could get that data "as soon as possible" is to set the client detection frequency to 2 hours, the DSS synchronization to 12 times per day, and even then, there's a potential delay of up to four hours between client restart and the
    availability of that status data at the upstream WSUS server. In order to get anything more "real time" than this, you'd have to implement a managed deployment tool such as
    SolarWinds Patch Manager.
    Furthermore, there are significant disadvantages to having 2-hour detections and 12x daily synchronizations, in terms of the amount of noise generated in the form of "events" reported at each of those activities a dozen or more times a day.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • When will Malaysia be on par with Singapore as far as Apple products roll out schedules?

    We in Malaysia are also avid Apple users and are always looking forward to your products coming onboard. At the moment, the speed of the products arriving in Malaysia is pretty much in either the 3rd or 4th wave.
    When can we enjoy Apple products like Singapore?

    When you say "we are not Apple", what do you mean by that?
    Of course only Apple will know, hence this question? Or if there are other ways to channel this question, it would be great.
    Thanks for the response though... 

  • Firming the Schedule Lines in Sch.Agreement

    Hi , I have done the  following to firm the schedule lines in Scheduling agreement.
    1. Firm Zone as 30 days
    2.Tradeoff zone days as 60 days
    3.Binding MRP indicator as NULL(Lines not changeable within Zones)
    4.In OMIN , Firm Schedule lines enabled for the MRP group
    When i run the MRP, schedule lines are getting created with Firm Indicator (*) for the requirements lying within these zones. After transmitting the schedule lines to vendor , if i change the requirement again, the schedule  lines within Firm Zone are getting adjusted as per the new requirment. I dont know whats the purpose behind maintaining these Firm Zone and Trade off Zone.
    Pointers are much appreciated.
    Thanks and regards,
    Milton Isaac

    Hi,
    Rolling delivery schedules issued under scheduling agreements are divided into different time zones indicating the degree to which lines of the schedule are binding.
    Firm zone (zone 1) (go-ahead for production).
    The schedule lines within this zone count as firm and thus as fully binding. If you cancel a schedule line that falls within the firm zone, the vendor is entitled to charge you with both production costs and the costs of procuring input materials incurred by him as a result of the cancellation.
    Trade-off zone (zone 2) (go-ahead for procurement of input materials)
    This is the "semi-firm" zone, giving the vendor the go-ahead to procure necessary input materials for the manufacture of the item ordered. If you cancel a schedule line within this semi-firm zone, the vendor is only entitled to charge you the material costs. Schedule lines falling within this time zone are thus less binding that those falling within the firm zone.

  • B2B, EBiz design - rollling delivery schedules

    I am restarting B2B implementation after a long gap.
    The customer (European auto manufacturer) sends rolling delivery schedules (ODETTE DELINS format) every week for the next 3 months over VAN. The delivery instructions are sent based on their demand, what is in transit and what has been shipped already.
    (1) How can these delivery instructions be converted into sales order in EBiz? The supplier is on 11.5.10 EBiz suite and has 11.1.1.3 SOA intallation including B2B.
    (2) I checked in the B2B Document Editor. I do not see any standard document for DELINS. I could see only DELFOR and DELJIT which are quite different. What are my options in building a B2B solution for DELINS document type?
    (3) While setting up VAN via GSX, is it better to pull transactions or set up GSX to push data over HTTP? Are there any documented pros and cons to these approaches?
    Thanks
    Shanthi

    Thanks Nitesh and Ramesh!
    On (2), I am still confused. In B2B Doc editor when I create a "New Document", I see DELINS under ODETTE. However, when I select this type, the default segments that it displays are for DELFOR which is totally different from DELINS. My sample message looks as below:
    UNH+1+DELINS:3::OD:ODETTE'
    MID+19990713141725+990713'
    SDT+0012001910::::::0012001910'
    BDT+320001002::::::320001002+901'
    ARI+1+990713:000713'
    CSG+UKI:VALMET AUTOMOTIVE INC:UUSIKAUPUNKI::::UKI+601'
    ARD+4373536:637459858:MOTOR+:PCE+35440262+SE'
    PDI+19990707072447+990707'
    SAD+1+47:MARJATTA UUSITALO'
    DST+990713+:1151::981231'
    PDN+17001805:990615+250+990616'
    PDN+17001333:990518+250+990519'
    SID+2+W:6'
    SID+3+W:6'
    DEL+990907+250'
    DEL+991019+250'
    DEL+991201+138'
    DEL+000101+135'
    DEL+000201+177'
    DEL+000301+170'
    DEL+000401+146'
    DEL+000501+178'
    DEL+000601+89'
    DEL+000701+2'
    TCO+:012++100+1.10:1.00:0.80:MTR+875.500:820.000:KGM'
    ARD+4395117++41340937+SE'
    PDI+19990707072447+990707'
    SAD+1+47:MARJATTA UUSITALO'
    DST+990713+:4824::981231'
    PDN+17002227:990706+108+990708'
    PDN+17002070:990701+144+990705'
    SID+2+W:4'
    SID+3+W:4'
    DEL+990712+108::3'
    DEL+990817+72'
    DEL+990824+162'
    DEL+990831+180'
    DEL+990907+162'
    DEL+990914+180'
    DEL+990921+162'
    DEL+990928+180'
    DEL+991005+180'
    DEL+991012+162'
    DEL+991019+180'
    DEL+991026+36'
    DEL+991101+855'
    DEL+991201+623'
    DEL+000101+652'
    DEL+000201+791'
    DEL+000301+807'
    DEL+000401+617'
    DEL+000501+775'
    DEL+000601+603'
    DEL+000701+135'
    TCO+:013++100+1.10:1.00:0.80:MTR+875.500:820.000:KGM'
    UNT+56+1'

  • What internet security suites does Firefox work with completely?

    My Kaspersky internet website blocker and advisor won't work with the new Firefox update. This is why I am not updating. What security internet suites does Firefox work completely with. This is a constant problem with Kaspersky which is one of the higher rated security suites available. I don't like paying for security that Firefox disables.

    Toolbars and other applications bundled with anti-virus are usually not helpful in any way. I stay away from all toolbars simply because they are useless and offer no real protection other than annoying me.
    If you <s>ever</s> have Kaspersky or any other anti-virus installed, you will be protected. Every antivirus protects your whole system, not just a certain program. You will be fine.
    As for Firefox and Kasperky's toolbar not existing peacefully, that's a problem on Kaspersky's side. They need to keep up-to-date with Mozilla's roll out schedule. (Firefox 37 will be rolled out in 3 days). Contact Kaspersky for an update on their toolbar.

  • When will iPhone 5 be available in Saudi Arabia

    Please give me the date or an approximate answer

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    No one here knows the answer to that. Apple has not announced a roll out schedule for the different nations.

  • Automatic Client Push not working - Site System Servers

    Having an issue getting automatic site-wise client push to work when only
    having "Configuration Manager site system servers" selected.  This was turned on after discovery was enabled and fully executed.
    SCCM 2012 R2 CU1, Single Primary Site Server, 2 Management Points (one on primary and second is standalone), with 5 DP's (currently), SQL is standalone.
    The site systems are within the IP range boundaries and show as assigned (i.e. site code showing in console of object).  The boundaries are in a boundary group with site assignment selected, and a DP added.  When I view the object properties I
    see its returning the correct IP that does fall withing the IP range boundary.
    Nothing in the ccm.log indicating its ever trying to install the client and the ccr and ccrretry folders are empty.  I can do a manual client push without issue to a site server object or a discovered desktop/laptop object.
    Is there something I may be missing here?  And does anyone know the interval in which SCCM should be creating ccr records for discovered objects that don't have a client?

    Thanks or the quick replies everyone.  To answer Idan's questions, no errors in log or component status and SQL is not clustered.
    John, I hope this isn't the case.  If it were wouldn't that effectively mean you would not be able to enabled discovery until you are ready to turn on auto client push?  And if you did that you would have no way to control the client roll out.
     Maybe I am missing something in that equation.  I'll test that theory regardless but if that ends up being the case that is alarming!  :-)
    Jason, thanks for the tip on the potential bug.  Was really more so hoping to validate automatic client push rather than actually needing it for my site system servers.  So if it is the issue you reference above hopefully its just contained to
    the site system servers.  Would be nice to be able to select automatic client push to just a collection of devices prior to turning it on for site wide deployment.  
    I guess I could always just turn off discovery temporarily and delete all but some test clients, enable client push for workstations, then once validated, turn it back off and re-enable discovery.  (wouldn't turn push back on until most clients are
    deployed on the roll out schedule)

  • Firm zone/tradeoff zone

    Hi all,
    Presently I am working in a SAPscript.I have copied the standard SAP script medruck.There is a data element ESTAT
    for the field indicator: firm zone/tradeoff zone. Based on the value of this indicator I have to print some schedule line item in the script. This field is present in the table EKPB, but in the client server there is no data in this table. Can any one suggest me that except EKPB which table may I use to retrieve the value of indicator: firm zone/tradeoff zone??
    Thanks in advance
    Raj

    Hi,
    Rolling delivery schedules issued under scheduling agreements are divided into different time zones indicating the degree to which lines of the schedule are binding.
    Firm zone (zone 1) (go-ahead for production).
    The schedule lines within this zone count as firm and thus as fully binding. If you cancel a schedule line that falls within the firm zone, the vendor is entitled to charge you with both production costs and the costs of procuring input materials incurred by him as a result of the cancellation.
    Trade-off zone (zone 2) (go-ahead for procurement of input materials)
    This is the "semi-firm" zone, giving the vendor the go-ahead to procure necessary input materials for the manufacture of the item ordered. If you cancel a schedule line within this semi-firm zone, the vendor is only entitled to charge you the material costs. Schedule lines falling within this time zone are thus less binding that those falling within the firm zone.

  • How to create SA LPA from (ME31L,ME38,ME84, ME9E,Migo,Miro)

    Hi,
    Could any one tell me the process to use the transactions ME84.
    What are all the configurations needs to be done ?
    What are all the master data needs to be maintained ?
    What is the business process process cycle.
    Providing SAP library link for the above topic will be highly appreciated.
    Regards,
    DilliB

    Hi,
    In MM Purchasing, this term is used
    A) as a generic term covering various kinds of order document issued against outline agreements (these may be release orders issued against contracts or - as here - scheduling agreement releases, i.e. types of rolling delivery schedule issued against scheduling agreements), and
    B) in connection with an internal approval or expenditure authorization process for purchasing documents. In both cases, "releasing" can be regarded as equivalent to "giving the green light" to go ahead with a certain action (e.g. to the vendor to deliver a certain quantity of materials, to Purchasing to create or issue a PO for items requested by a user department).
    ---With release documentation (in the standard system, document type LPA)
    The schedule lines in the system have internal character. This means that you can change them in any way you wish. They are not transmitted to the vendor until you explicitly create a scheduling agreement release (technically, such a release consists of a header and the current version of the delivery schedule and may take one of two forms: a forecast delivery schedule or a JIT delivery schedule).
    The release documentation allows you to display the releases transmitted to a vendor over a certain period in order to establish exactly when you transmitted which information to the vendor.
    ---Without release documentation (in the standard system, document type LP)
    The schedule lines immediately have official character. This means that they are transmitted to the vendor as soon as you save the schedule. There is no release documentation in this case.
    rgds
    Chidanand

  • Optic Fibre from Street to Building (Strata Plan)

    Dear Community, Our building has 122 units and is situated in Newtown NSW 2042. We wish to have optic fibre from the street to the building installed. All units within the building are under a common strata plan managed by the Owners Coporation via the Executive Management Committee. The Owners Corporation wishes to have optic fibre to each of the 122 units. Step 1 - the Owners Corporation wishes to have the optic fibre from the 'node' to the building.Step 2 - once this is done, the optic fibre will be put in the building to connect each of the units Who do we speak to as the the Owners Corporation within Teltra to request a proposal to have this work done? We have already contacted five different areas within Telstra - each suggesting another area and ultimately not able to assist as it is 'not their area'.  The Owners Coporation is neither a business, nor a private residential entity. To this end, the Owners Corporation works with its Strata Manager to maintain and introduce new services to the building. Advice would be appreciated as to who we speak to inside Telstra responsible for working with Strata Plans/Owners Corporations to install optic fibre from the node to the building. Thank you for taking the time to assist.

    Hi Georgina,
    If you are talking about arranging a connection for the building to the NBN, this isn't something that Telstra can organise as Telstra is not Managing the roll out of the NBN. Your building would be connected by NBN Co as per their roll out schedule for your area.
    If you are talking about accessing the Foxtel/Telstra HFC Cable network, we would need to complete a Commercial Quote to see if it is possible to extend the network to cover your building. If this is the case I can put you in touch with the right person to help get this organised.
    If you are talking about something else can you clarify what you are after for me and I am happy to provide an answer

  • When will be the X-Fi sold in

    Message Edited by hungwingyin on 09-2-2005 :28 AM

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    No one here knows the answer to that. Apple has not announced a roll out schedule for the different nations.

  • WebLogic Time Service

    Hi,
    I've created a time service on the server, which gets activated on
    startup and repeatly occurs at some given interval. However, I need to
    stop the timer and restart it again when the time interval is changed.
    Is it possible to do that without bringing down the server?
    Thanks,
    TomyD

    Mario -
    I believe the way it works is you call the schedule () method of your WL
    Time Services implementing object first. For example:
    // Obtain a T3Services factory
    T3ServicesDef t3 = getT3Services ();
    // Request a ScheduledTrigger from the factory. Use
    // this class for scheduling and execution
    std = t3.time().getScheduledTrigger(this, this);
    // Start the ball rolling
    std.schedule();
    Your schedule method would specify the point of time in the future in
    which you are interested.
    Your trigger method, when invoked, should set some instance variable in
    your class. Your schedule method will be invoked after your trigger
    method completes. When your schedule method is invoked, it should check
    the instance variable and if it has been set, the schedule method should
    return 0 to prevent the trigger from being called again.
    Make sure that the schedule method is correctly setting the returned
    long.
    Oh --- your class should be implementing the Schedulable and Triggerable
    interfaces, in case you were using something else. I agree that the
    documentation for this feature seems pretty confusing.
    Peter
    "Mario B. Jones" wrote:
    >
    List,
    As you can tell, I've been spending alot of time playing with Weblogic
    time service lately, and needless to say, I've been running into alot of
    roadblocks.
    Question.
    How in the heck do you implement the time api to perform a "one-time"
    trigger for some point of time in the future? All of the examples, api
    documentation, etc talks you through the necessary to perform
    "recurring" actions. But nothing on one time actions. I have tried
    several different variations but cannot get it done. Seems like the
    trigger will immediately fire the first time but can be delayed for
    future iterations till a specified point of time in the future using
    java.util.Date methods.
    Help!
    Thanks in advance...

  • I still on 2.3.4 android version and 4.0.2.A.062 Build number why ?

    dear sirs
    I have Arc S LT 18i
    Si 1256-1239
    2.3.4 android version
    4.0.2.A.062 Build number
    According to Sony’s Roll-out schedule for ICS 4.0.4 I should have gotten the upgrade notification on Aug 15th but I never received any notification. My PC Companion says that my phone is up to date. Any ideas why I didn’t receive the notification yet? I also tried from update service and got the same message

    that what Nabeel mentioned "
    Once flashing finishes, it would ask you to disconnect your mobile and restart.( It may take several minutes to restart ). and done.
    Its your wish if you want to stay on it but i suggest you to repair your phone software using SUS. It will reinstall the original ICS software in your mobile "
    explain pleas

Maybe you are looking for