Get Agent IP Address During Script Execution

Good Evening,
I'm looking for a little advice...  I'm trying to develop a method of alerting agents to the fact they are not ready.  I have a script that can dynamically change the wallpaper on an IP phone.  My aim is to add a step to the "Select Resource" portion of a script that will execute if an agent doesn't answer a call presented to them.  However in order for this script to work it requires the IP address of the phone the agent is logged on to.  Can anybody recommend a method of getting this IP dynamically during script execution?  We use EM so statically defining IPs in an XML document wouldn't be appropriate.
On a similar note I'd also need a method of executing the same script when an agent manually alters their state to ready.  i.e. When they change to ready on the IP Phone Agent I'd like to be able to intercept that process as it takes place and automatically trigger this same script.
I'm using UCCX 8.5(3).
Hope that makes sense.  Any suggestions regarding how to achieve this would be much appreciated.
Much appreciated,
Ryan

I don't write enough scripting to know for sure if the agent's phone's IP address would be available anywhere in the UCCX enviornment by default but I'm going to go with 'probably not'. You'd need to obtain this information from CUCM, the most straightforward method would likely be to use CUCM's AXL interface to pull this information. The HTTP Document Step may be able to produce the necessary AXL requests I guess, but I've never tried.
Cheers,
Kris

Similar Messages

  • Clients using PXE don't get an IP address

    I'm trying to install an Altiris deplyment server but my clients even don't get an IP address during the PXE boot.
    I configured the port with "switchport host" and have on my router the command "ip helper" active.
    As soona s the clients boot their OS, they receive an IP address.
    Why aren't clients getting an IP address ( via DHCP ) when they boot in PXE but do get an IP address ( via DHCP ) when they boot their OS.
    Is this a IOS bug ???

    The command "switchport host" disables the spanning-tree on the port.
    I just found the problem.
    The Altiris deployment Ip address was faulty !
    It seems that the DHCP request and the boot file are connected together.
    If your PXE server isn't configured correct you wont get an DHCP address either

  • Way to get alv grid varients info during background execution

    I have used the function module 'REUSE_ALV_GRID_LAYOUT_INFO_GET' to get info alv grid varients i.e already created layout info. Is there any other way of getting this info as this is not giving the exact layout during background execution.

    Hi Vijaya,
    It should work. I am giving you a sample code. Try this and let me know.
    REPORT TEST.
    data gt_lfa1 type standard table of lfa1.
    data gt_kna1 type standard table of kna1.
    start-of-selection.
      select * from lfa1 into table gt_lfa1 up to 10 rows.
      select * from kna1 into table gt_kna1 up to 20 rows.
    end-of-selection.
      if sy-batch eq 'X'.
        perform display_lfa1.
        perform display_kna1.
      endif.
    form display_lfa1 .
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = sy-repid
          i_structure_name   = 'LFA1'
        tables
          t_outtab           = gt_lfa1
        exceptions
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " DISPLAY_LFA1
    form display_kna1 .
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = sy-repid
          i_structure_name   = 'KNA1'
        tables
          t_outtab           = gt_kna1
        exceptions
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " DISPLAY_KNA1
    copy and paste the code and create a program. Activate it and come back to SE38 screen.
    Now, in program name give the name of the report created and then
    select PROGRAM->EXECUTE->BACKGROUND from the MENU bar.
    This will generate two separate spools . One for KNA1 data & one for LFA1 data.
    Let me know how it goes.
    Thanks,
    Abhishek

  • Report script execution is getting failed

    Hi ,
    We are facing one strange issue while executing the Essbase report script. I am new to the report script and I am not getting how to resolve the issue.
    When we are changing the year in code from FY13 to FY14 the script is getting failed however the same script is successfully generating the report if we keep year as FY13 in code.
    Could you please let me know where would be the problem , below is the part of the code form Report script.
    {MISSINGTEXT "0"}  // replace #Missing with 0
    <Link ((<LEV("Customer", "Lev0,Customer")) AND ( <IDESC("All Customers")))
    <Link ((<LEV("Product", "Lev0,Product")) AND ( <IDESC("All Products")))
    <Link ((<LEV("Period", "Lev0,Period")) AND ( <IDESC("YearTotal")))
    FY14

    Hi ,
    I am getting below error message.
    "Report Script execution Failed. Please see message panel for details " and in message panel It is not showing any details , just displaying Execute Report script Failed with date and time details.
    I also checked that FY14 do exist in the application and no duplicate FY14 member exist in the outline.
    Could you please suggest where would be the problem.

  • Invisible index getting accessed during query execution

    Hello Guys,
    There is a strange problem , I am encountering . I am working on tuning the performance of one of the concurrent request in our 11i ERP System having database 11.1.0.7
    I had enabled oradebug trace for the request and generated tkprof out of it. For below query which is taking time , I found that , in the trace generated , wait event is "db file sequential read" on an PO_LINES_N10 index but in the generated tkprof , for the same below query , the full table scan for PO_LINES_ALL is happening , as that table is 600 MB in size.
    Below is the query ,
    ===============
    UPDATE PO_LINES_ALL A
    SET A.VENDOR_PRODUCT_NUM = (SELECT SUPPLIER_ITEM FROM APPS.IRPO_IN_BPAUPDATE_TMP C WHERE BATCH_ID = :B1 AND PROCESSED_FLAG = 'P' AND ACTION = 'UPDATE' AND C.LINE_ID =A.PO_LINE_ID AND ROWNUM = 1 AND SUPPLIER_ITEM IS NOT NULL),
    LAST_UPDATE_DATE = SYSDATE
    ===============
    Index PO_LINES_N10 is on the column LAST_UPDATE_DATE , logically for such query , index should not have got used as that indexed column is not in select / where clause.
    Also, why there is discrepancy between tkprof and trace generated for the same query .
    So , I decided to INVISIBLE the index PO_LINES_N10 but still that index is getting accessed in the trace file .
    I have also checked the below parameter , which is false so optimizer should not make use of invisible indexes during query execution.
    SQL> show parameter invisible
    NAME TYPE VALUE
    optimizer_use_invisible_indexes boolean FALSE
    Any clue regarding this .
    Thanks and Regards,
    Prasad
    Edited by: Prasad on Jun 15, 2011 4:39 AM

    Hi Dom,
    Sorry for the late reply , but yes , an update statement is trying to update that index even if it's invisible.
    Also, it seems performance issue started appearing when this index got created , so now I have dropped that index in test environment and ran the concurrent program again with oradebug level 12 trace enabled and found bit improvement in the results .
    With index dropped -> 24 records/min got processed
    With index -> 14 records/min got processed
    so , I am looking forward without this index in the production too but before that, I have concerns regarding tkprof output. Can we further improve the performance of this query.
    Please find the below tkprof with and without index .
    ====================
    Sql statement
    ====================
    UPDATE PO_LINES_ALL A SET A.VENDOR_PRODUCT_NUM = (SELECT SUPPLIER_ITEM FROM
    APPS.IRPO_IN_BPAUPDATE_TMP C
    WHERE
    BATCH_ID = :B1 AND PROCESSED_FLAG = 'P' AND ACTION = 'UPDATE' AND C.LINE_ID =
    A.PO_LINE_ID AND ROWNUM = 1 AND SUPPLIER_ITEM IS NOT NULL),
    LAST_UPDATE_DATE = SYSDATE
    =========================
    TKPROF with Index for the above query ( processed 643 records )
    =========================
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 2499.64 2511.99 98158 645561632 13105579 1812777
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 2499.64 2511.99 98158 645561632 13105579 1812777
    =============================
    TKPROF without Index for the above query ( processed 4452 records )
    =============================
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 10746.96 10544.13 84125 3079376156 1870058 1816289
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 10746.96 10544.13 84125 3079376156 1870058 1816289
    =============================
    Explain plan which is same in both the cases
    =============================
    Rows Row Source Operation
    0 UPDATE PO_LINES_ALL (cr=3079377095 pr=84127 pw=0 time=0 us)
    1816289 TABLE ACCESS FULL PO_LINES_ALL (cr=83175 pr=83026 pw=0 time=117690 us cost=11151 size=29060624 card=1816289)
    0 COUNT STOPKEY (cr=3079292918 pr=20 pw=0 time=0 us)
    0 TABLE ACCESS BY INDEX ROWID IRPO_IN_BPAUPDATE_TMP (cr=3079292918 pr=20 pw=0 time=0 us cost=4 size=22 card=1)
    180368800 INDEX RANGE SCAN IRPO_IN_BPAUPDATE_N1 (cr=51539155 pr=3 pw=0 time=16090005 us cost=3 size=0 card=1)(object id 372721)
    There is a lot increase in the CPU ,so I would like to further tune this query. I have run SQL Tuning task but didn't get any recommendations for the same.
    Since in the trace , I have got db scattered read wait event for the table "PO_LINES_ALL" but disk reads are not much , so am not sure the performance improvement even if I pin this table (620 MB in size and is it feasible to pin , SGA is 5GB with sga_target set ) in the shared pool .
    I have already gathers stats for the concerned tables and rebuilt the indexes .
    Is there any other thing that can be performed to tune this query further and bring down CPU, time taken to execute.
    Thanks a lot for your reply.
    Thanks and Regards,
    Prasad
    Edited by: Prasad on Jun 28, 2011 3:52 AM
    Edited by: Prasad on Jun 28, 2011 3:54 AM
    Edited by: Prasad on Jun 28, 2011 3:56 AM

  • Netsh becoming cetsh during the execution of the script

    netsh becoming cetsh during the execution of the script - for DHCP

    Hi Venky6262,
    As Philippe said, please post more detailed information about this issue to help us to troubleshoot, like what do you want to achieve with the cmd netsh, your code and the error.
    In addition, there are good examples to use Netsh commands for DHCP:
    http://technet.microsoft.com/en-us/library/cc787375(v=ws.10).aspx
    Best Regards,
    Anna

  • Error CLSRSC-507 during the execution of root.sh on second node

    Hi all.
       OS.......: Red-Hat 6.5
       RDBMS: Oracle 12.1.0.2.0
       During the installation of a 2-node RAC in a RHEL 6.5, during the execution of the root.sh script in the second node, i get the following error:
    [root@oraprd02 grid]# ./root.sh
    Performing root user operation.
    The following environment variables are set as:
        ORACLE_OWNER= grid
        ORACLE_HOME=  /u01/app/12.1.0/grid
    Enter the full pathname of the local bin directory: [/usr/local/bin]:
       Copying dbhome to /usr/local/bin ...
       Copying oraenv to /usr/local/bin ...
       Copying coraenv to /usr/local/bin ...
    Creating /etc/oratab file...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root script.
    Now product-specific root actions will be performed.
    Using configuration parameter file: /u01/app/12.1.0/grid/crs/install/crsconfig_params
    2015/05/04 22:47:16 CLSRSC-4001: Installing Oracle Trace File Analyzer (TFA) Collector.
    2015/05/04 22:47:59 CLSRSC-4002: Successfully installed Oracle Trace File Analyzer (TFA) Collector.
    2015/05/04 22:48:00 CLSRSC-363: User ignored prerequisites during installation
    OLR initialization - successful
    2015/05/04 22:48:46 CLSRSC-507: The root script cannot proceed on this node oraprd02 because either the first-node operations have not completed on node oraprd01 or there was an error in obtaining the status of the first-node operations.
    Died at /u01/app/12.1.0/grid/crs/install/crsutils.pm line 3681.
    The command '/u01/app/12.1.0/grid/perl/bin/perl -I/u01/app/12.1.0/grid/perl/lib -I/u01/app/12.1.0/grid/crs/install /u01/app/12.1.0/grid/crs/install/rootcrs.pl ' execution failed
    The root.sh on the first node completed successfully. I get the succeeded message from the script in the first node.
    Have anyone faced this problem? Any assistance will be most helpfull.
    Thanks in advance.

    crsd and cssd logs were empty and there was no relevant info in crs alert
    i am just reinstalling clusterware now
    one thing i wanted to ask
    why does owner ship of raw files change back to root (after node restart)
    even though i chnged them to oracle

  • 432 4.2.0 STOREDRV.Deliver; Agent transient failure during message resubmission

    I am having an issue where emails to specific users internal to internal are being successfully delivered, but [a duplicate is?] also getting stuck in the "SMTP Delivery to mailbox" queue, with the sender getting a "Delivery is delayed to
    these recipients or groups:" "Remote Server returned '400 4.4.7 Message delayed" This only happens with emails to specific people in the organization, they get the email immediately after being sent, and everyone else works fine. This issue
    started after we migrated the users mailboxs from Exchange 2007 to Exchange 2013 CU5, we did not notice the issue until we finished moving all user mailboxes to 2013.
    Delivery Report of email to affected user:
    Delivered
    6/30/2014 11:20 AM mail.domain.com
    The message was successfully delivered.
    Pending
    6/30/2014 11:20 AM
    The message has been queued on server 'mail.domain.com' since 6/30/2014 11:20:15 AM (UTC-06:00) Central Time (US & Canada). The last attempt to send the message was at 6/30/2014 11:21:09 AM (UTC-06:00) Central Time (US & Canada) and generated the error
    '[{LRT=};{LED=432 4.2.0 STOREDRV.Deliver; Agent transient failure during message resubmission[Agent: Mailbox Rules Agent]};{FQDN=};{IP=}]'.
    -Strange time stamp 
    Original message headers:
    Received: from mail.domain.com (172.22.220.68) by
     mail.domain.com (172.22.220.68) with Microsoft SMTP Server (TLS)
     id 15.0.913.22; Sun, 29 Jun 2014 21:36:34 -0500
    Received: from mail.domain.com ([fe80::1554:6e6f:4ca5:85be]) by
     mail.domain.com ([fe80::1554:6e6f:4ca5:85be%12]) with mapi id
     15.00.0913.011; Sun, 29 Jun 2014 21:36:34 -0500
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: T S <[email protected]>
    To: M M <[email protected]>
    CC: D M <[email protected]>
    Subject: FW: Migration Complete
    Thread-Topic: Migration Complete
    Thread-Index: Ac+UAzn/W6u8OF7qRG2V93cDeqU24wACDqXL
    Date: Sun, 29 Jun 2014 21:36:33 -0500
    Message-ID: <[email protected]>
    References: <[email protected]>
    In-Reply-To: <[email protected]>
    Accept-Language: en-US
    Content-Language: en-US
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator: <[email protected]>
    MIME-Version: 1.0
    X-Originating-IP: [71.170.174.74]
    Return-Path: [email protected]
    Update 7/2/14:
    Checked event viewer, and found that event ID 1051, erroring multiple times per second with message:
    "Agent 'Mailbox Rules Agent' caused an unhandled exception 'StoreDriverAgentTransientException: Store Driver Agent was unable to send email.' while handling event 'OnDeliveredMessage'"
    Ran Test-MailFlow on my mailbox, and the two know non-working mailboxes, For me it returned as successful, but showed as a Failure on the two other accounts. 
    The test emails were actually delivered to the user mailboxes even though it shows as a Failure with the Test-MailFlow command:
    From Exchange Queue viewer you can see the test emails stuck in retry, with the following information:
    Identity: mail\3112\1395864371267
    Subject: Test-Mailflow 8f33ae76-fdd9-4528-8e73-5b9f2481a333 66c7004a-6860-44b2-983a-327aa3c9cfec
    Internet Message ID: <[email protected]>
    From Address: SystemMailbox{658b82cc-efc2-4407-8c92-8303213c63e2}@domain.com
    Status: Retry
    Size (KB): 8
    Message Source Name: SMTP:Default mail
    Source IP: 172.22.220.68
    SCL: 0
    Date Received: 7/1/2014 9:52:12 PM
    Expiration Time: 7/3/2014 9:52:12 PM
    Last Error: 432 4.2.0 STOREDRV.Deliver; Agent transient failure during message resubmission[Agent: Mailbox Rules Agent]
    Queue ID: mail\3112
    Recipients:  [email protected];3;3;[{LRT=};{LED=432 4.2.0 STOREDRV.Deliver; Agent transient failure during message resubmission[Agent: Mailbox Rules Agent]};{FQDN=};{IP=}];0;CN=Mailbox Database 2111459242,CN=Databases,CN=Exchange Administrative
    Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=LCS,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=com;0

    Hi S Calkin,
    According to the error messages, I find following information for your reference:
    1. About Event ID 1051
    This warning event indicates that the transport agent referenced in the event description has encountered an unhandled exception while handing the event.
    More details in the following article:
    http://www.microsoft.com/technet/support/ee/transform.aspx?ProdName=Exchange&ProdVer=8.0&EvtID=1051&EvtSrc=MSExchange+Extensibility
    2. About "432 4.2.0 STOREDRV.Deliver; Agent transient failure during message resubmission[Agent: Mailbox Rules Agent]"
    I suggest double check whether you have enough space. I find a similar case that caused by the low space, please see this:
    432 4.2.0 STOREDRV.Deliver; Agent transient failure during message resubmission[Agent: Mailbox Rules Agent]
    http://social.technet.microsoft.com/Forums/exchange/en-US/750d89fb-1832-4aaf-b095-c2b9defec977/432-420-storedrvdeliver-agent-transient-failure-during-message-resubmissionagent-mailbox-rules?forum=exchangesvrgeneral
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Getting content and address of select-options (created dynamically)

    Hi guys,
    Suppose I have a dynamically created select-options in a program
    SELECT-OPTIONS it_ranges FOR ...
    Let's say I can determine its name ( IT_RANGES ) only during program execution.
    Now I know I can use field symbols to get its content like below:
    FIELD-SYMBOLS: <fs>.
    "here I will have content of the table in <FS>
    ASSIGN ('IT_RANGES[]') TO <fs>.
    ...but I would like to know how can I get the content of this select-options table through date reference
    TYPES: BEGIN OF t_ranges,
            sign TYPE c,
            option(2) TYPE c,
            low TYPE i,
            high TYPE i,
           END OF t_ranges.
    "let say tt_ranges is of the same type like IT_RANGES
    TYPES: tt_ranges TYPE TABLE OF t_ranges.
    DATA: ref TYPE REF TO data.
    CREATE DATA ref TYPE tt_ranges.
    The above will only create typed reference to table but I want it to point to my table IT_RANGES. The statement below don't work here.
    GET REFERENCE OF ('IT_RANGES[]') INTO ref.
    Is there any other way I can get (using data reference)?
    1) address of this select-options table
    2) content of this select-options table
    Thanks for help in advance
    M.
    Edited by: Marcin Pciak on Nov 28, 2008 11:33 AM

    Statement CREATE DATA would only make sense when you are trying to create the dynamic select options. You can use the addition TYPE HANDLE in order to create the Range Table. Check method implementation CREATE_RANGE_TABLE in class CL_WDR_SELECT_OPTIONS.
    Once the Select-option is created, you need to use the GET REFERENCE to get the data reference of the Select-options. We can't specify the dynamic reference with brackets in the GET REFERENCE statement. So, you need to use the field-symbols to do the dynamics.
    DATA: ref TYPE REF TO data.
    DATA: ref_fs TYPE REF TO data.
    FIELD-SYMBOLS: <fs>.
    DATA: w_range TYPE i.
    SELECT-OPTIONS it_rang FOR w_range.
    START-OF-SELECTION.
      GET REFERENCE OF it_rang[] INTO ref.
      ASSIGN ('IT_RANG[]') TO <fs>.
      GET REFERENCE OF <fs> INTO ref_fs.
      write: 'done'.
    Regards,
    Naimesh Patel

  • GP Mail: Unexpected internal exception during background execution

    Hi,
          I have designed a process in Guided Procedures which send mails when Approved or Rejected. I get an exception for users who have yahoo or gmail IDs.
    Technical Exception:
    Unexpected internal exception during background execution: The message contains non-trusted or invalid receivers
    Is there any setting /configuration for sending mails to these.
    Pl help
    Thanks,
    Vasu
    Message was edited by:
            Vasu Mullapudi

    Hi,
    are you using the Bounced Mails Framework to manage you mails? If so, one possible explanation is that BMF blocks untrusted messages.
    To configure BMF options, go to the Administration workset and edit the list of trusted addresses in BMF.
    More info:
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/44/450862f1f014bce10000000a155369/frameset.htm">Administering the BMF</a>
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/44/4491dafaab0597e10000000a155369/frameset.htm">Managing Trusted Addresses</a>
    HTH
    Regards, Petja

  • Vertical line issue - How can we get Apple to address this?

    Hi guys,
    As can be seen in this forum (and a lot of other forums, as well), a lot of people are experiencing this problem on their 17" iMac G5 with iSight. Here are some pertinent details (which may be familiar to a lot of people but can be a primer for those who are just starting to experience the problem):
    1. For most of us, these lines started appearing between 13-15 months after they purchased them. The lucky ones either had these failures occur during the first 12 months, or had APP.
    2. The majority of these units can be traced to the Shanghai factory W8 (enter your S/N in this website to get the manufacturing information of your unit: http://www.chipmunk.nl/klantenservice/applemodel.html).
    3. A similar issue occurred (or is occurring) with 17" PBs. From what I have read on the Apple PB forums, it seems that this has been a long standing issue and Apple has SUPPOSEDLY attempted to censor some of the posts discussing this. Note that these units can also be traced back to the same Shanghai factory.
    4. The "iMac G5 Repair Extension Program for Video and Power Issues" which certain people have always been referring users to on posts discussing this type of problem obviously refers to a totally different issue (http://www.apple.com/support/imac/repairextensionprogram/) and is applicable only to first gen iMac G5s. I'm sure that everyone appreciates it but, at this point, it is quite clear that it is not the solution to our problem.
    5. Based on the number of posts discussing this very same problem in the Apple forums, it is pretty obvious that these are not isolated issues. There are too many similarities (time of failure, how the numbers of line increase over time, manufacturing source, etc.)
    6. Some people have suggested that unstable power sources may be the primary cause of the problem. However, based on the locations of the people with these problems who have posted in this forum, it seems unlikely. From what I can see, the problem happens whether you are from a highly industrialized country (where a stable power source can be expected) or a developing country (where power sources MAY be more unstable).
    7. Apple has typically responded (to anyone who has taken the time to write or have their iMacs inspected) that this is not a known manufacturing defect issue. As such, the cost to repair this problem, which can go up to USD 500, will have to be borne by the owner.
    8. Based on posts of some people who have had their units repaired, it is the LCD that has to be replaced. This is also supported by posts from people who have resorted to purchase a separate display as a workaround.
    Now, the question is, *how do we get Apple to address this issue*? Do we all start writing Steve Jobs about it? Do we go to the press? Should we put up a website and Digg it to death? A spoof video on YouTube? MySpace? Or will we just suffer in silence? Suggestions anyone?
    P.S. Suggestions that involve any sort of violence or industrial sabotage are not acceptable, please.
    Note that Ale_Tog has put up a Flickr page where we can post photos of our poor iMacs. Just send the photo to [email protected] with the subject "Dead pixels on iMac". No text, just the photo attachment. (+Ale_Tog, if you read this, I hope you don't mind me posting this here. Also, I suggest that we at least put the first 5 chars of the serial number, the factory information which can be retrieved on the link in #2 above, and which country the unit is based.+). I highly recommend that everyone send a photo to show that these are not isolated issues.
    To get an idea on how many people are experiencing this problem, here are a list of posts in these forums, as well as others, discussing this issue (feel free to add to this):
    http://i7.ebayimg.com/05/i/000/b2/75/2e8d_1.JPG
    http://i16.ebayimg.com/06/i/000/b2/75/2ee5_1.JPG
    http://i12.ebayimg.com/07/i/000/b2/75/2faf_1.JPG
    http://discussions.apple.com/thread.jspa?threadID=974094
    http://discussions.apple.com/thread.jspa?messageID=5146382&tstart=0
    http://www.macusersg.org/forums/index.php?topic=40998.0
    http://discussions.apple.com/thread.jspa?threadID=607522&tstart=180
    http://discussions.apple.com/thread.jspa?threadID=463075&tstart=270
    http://discussions.apple.com/thread.jspa?threadID=197560&tstart=360 (this is about dead pixels, but one person reported a whole line)
    http://discussions.apple.com/thread.jspa?threadID=292889&tstart=390
    http://discussions.apple.com/thread.jspa?threadID=293895&tstart=390
    http://discussions.apple.com/thread.jspa?threadID=279138&tstart=420
    http://discussions.apple.com/thread.jspa?threadID=197630&tstart=465
    http://discussions.apple.com/thread.jspa?threadID=197745&tstart=510
    http://discussions.apple.com/thread.jspa?threadID=197741&tstart=510
    http://discussions.apple.com/thread.jspa?threadID=197641&tstart=585
    http://discussions.apple.com/thread.jspa?messageID=4227335&#4227335
    http://discussions.apple.com/thread.jspa?messageID=976574&#976574
    http://discussions.apple.com/messageview.jspa?messageID=4369582&stqc=true
    http://discussions.apple.com/thread.jspa?threadID=778470&tstart=0
    Please start sending your suggestions. The more the many-ier!

    Yep. I feel Apple's 1 year manufacturer warranty for the iMac is not adequate, especially for an all-in-one unit with a relatively high price.
    My iMac G5 started displaying a vertical cyan line about 4 weeks ago, only about 19-20 months after I bought it for Christmas in 2005.
    I called up Apple to enquire what could be done and was told by their customer service that a rather long period had elasped since the warranty expired in 2006. So I was told to take the iMac to an authorised repair centre and Apple will not contribute to the cost of the repair.
    I expect respectable service life from my computer and anything less than 5 years is totally unacceptable. Thus I seriously question the value proposition for the iMac in this respect. Does it mean that I have to replace my iMac every 2 years? The computer still feel reasonably zippy, I still have plenty of space left on my hard drive, but the screen is failing ...
    Today another line (green) appeared on the screen ...
    It is my understanding that a number of LCD monitor manufacturers are now providing 3 year warranties for their products. Now why should Apple only provide a 1 year warranty? Especially when the replacement option will cost more than buying an entire new LCD monitor with even better specifications?
    Based on the number of responeses I have seen here, this is not a rare occurance and I seriously question their quality control in their manufacturing process. I think Apple should be responsible for these repairs, and also provide a 3-year warranty for their LCD screens.
    My iMac's serial number is W8548Zxxxxx.
    Sincerely yours, an unhappy Apple customer.

  • Error with dbms_scheduler and shell script execution

    Hi,guys.
    I have an issue with a dbms_scheduler and a shell script execution. So, the shell script as it self works fine, when i'm executing ./test.sh all process is running, but when i'm executing the script from dbms_scheduler it just simply doesn't work. Actually it works, but some of executable information in sh doesn't work, seems it just jump over of the part of the script. Sendmail part is running, maybe there is problem with rman script as it self?
    DB version: 10g
    And my scripts:
    Shell scripts (permisons 755):
    #!/bin/ksh
    export PATH=/home/oracle/product/asm_home/bin:/home/oracle/product/db_home/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/oracle/bin:/usr/bin/X11:/sbin:.
    export ORACLE_BASE=/home/oracle/product
    export ORACLE_SID=zabbix
    export ORACLE_HOME=/home/oracle/product/db_home
    ${ORACLE_HOME}/bin/rman<<EOF
    connect target /
    run {backup recovery area delete all input;}
    EOF
    {       echo "From:[email protected]"
            echo "To: [email protected]"
            echo "Subject: Recovery area"
            echo 'Content-Type: text/html'
            echo
            echo '<html><body><table border="1" cellspacing="1">'
            echo '<tr><td><b>Process</b></td><td><b>Statuss</b></td></tr>'
            echo "<tr><td>RMAN</td><td><b>Works</b></td></tr>"
            echo "</table></body></html>"
    } | sendmail -tIn the first part i'm exporting all of the important stuff for oracle, then I call RMAN with specific atributes. And then there is just simply sendmail functionality inside script to represent if script works (for now).
    And below pl/sql script:
    begin
      DBMS_SCHEDULER.CREATE_JOB
      job_name => 'FLASH_RECOVERY',
      job_type => 'EXECUTABLE',
      job_action => '/home/oracle/backup/test.sh',
      start_date => sysdate,
      job_class => 'DEFAULT_JOB_CLASS',
      enabled => TRUE,
      auto_drop => FALSE,
      comments => 'FLASH RECOVERY USAGE AREA backup and delete'
      END;
      /And this job execution:
           begin
               DBMS_SCHEDULER.run_job (job_name =>'FLASH_RECOVERY',use_current_session => TRUE);
           end;What can be wrong? For me, I think it's something with permisions.
    I hope you got my idea and could help me.
    Tom
    Edited by: safazaurs on 2013.18.2 22:16

    There is no error, i just receive all the time e-mail, seems it jumps over rman. I tried almost everything and still couldn't get result as i want. And, if i'm running script from command line - it works. Rman calls, and starts to recover archivelogs.

  • Question on use of shared memory objects during CIF executions

    We have a CIF that runs in background via program RIMODACT that is invoked from our external job scheduler.  (The schedulere kicks off a job - call it CIFJOB - and the first step of this job executes RIMODACT.)
    During the execution of RIMODACT, we call a BAdI (an implementation of SMOD_APOCF005.)
    In the method of this BAdI, we load some data into a shared memory object each time the BAdI is called. (We create this shared memory object the first time the BAdI is called.)
    After program RIMODACT finishes, the second step of CIFJOB calls a wrapper program that calls two APO BAPI's.  
    Will the shared memory object be available to these BAPIs?
    Reason I'm asking is that the BAPIs execute on the APO app server, but the shared memory object was created in a CIF exit called from a program executing on the ECC server (RIMODACT).
    Edited by: David Halitsky on Feb 20, 2008 3:56 PM

    I know what you're saying, but it doesn't apply in this case (I think.)
    The critical point is that we can tie the batch job to one ECC app server.  In the first step of this job (the one that executes RIMODACT to do the CIF), we build the itab as an attribute of the "root" shared memory object class.
    In the second step of the batch job, we attach to the root class we built in the first step, extract some data from it, and pass these data to a BAPI that we call on the APO server.  (This is what I meant by a "true" RFC - the APO BAPI on the APO server is being called from a program on the ECC server.)
    So the APO BAPI never needs access to the ECC shared memory object - it gets its data passed in from a program on the ECC server that does have access to the shared memory object.
    Restated this way, is the solution correct ???

  • How to get the Delivery address for PO

    I have a problem.
    I am working on a SAP Script , which is for PO(Zmedruck_po) , which is a copy of
    MEDRUCK.
    I am asked to print the delivery adress in a window .
    The scenario is like this .
    In ME23N , under item details , there is a tab called DELIVERY ADDRESS
    this has option to enter the adress details or a delivery number in the  address text box .
    If the address number is present i have to print that address , else i have to print the address which is entered in the delivery address tab.
    If the delivey address number is there i have no problem in printing it ,But if address number is not there ,I need to know how to get the delivery address,
    is it the plant address, company code address ... ?
    I debuged ,but could not find out.
    Can anyone help please .

    Hi,
    try using the below method:
    Goto TWLAD table with storage location (EKPO-LGORT) as key to get address number (ADDRNUMBER).  then goto ADRC table to get the address of the delivery
    Regards
    Shiva

  • An error has occurred during the execution of the JSPM_MAIN phase.

    Hi,
    When I run the go.bat for running SLD, I am getting the following exception.
    An error has occurred during the execution of the JSPM_MAIN phase.
    Cannot initialize application data. Could not determine profile parameters. Error while retrieving value j2ee/dbhost,j2ee/dbname,j2ee/dbtype, with retriever com.sap.sdt.tools.sysinfo.ProfileDataRetriever. Could not extract value with key j2ee/dbhost,j2ee/dbname,j2ee/dbtype, from file D:/usr/sap/CE1/SYS/profile/DEFAULT.PFL. A possible reason could be that the path to the directory containing the sappfpar executable is not included in the PATH environment variable. Could not start process sappfpar. Error while executing process sappfpar. java.io.IOException: CreateProcess: sappfpar all pf=D:/usr/sap/CE1/SYS/profile/DEFAULT.PFL error=2
    You can find more information in the log file D:\usr\sap\CE1\J01\j2ee\JSPM\log\log_2007_07_11_18_49_45\JSPM_MAIN_1_01.LOG.
    Use the information provided to troubleshoot the problem. An SAP Note may provide a solution to this problem. Search for SAP Notes with the following key words:
    com.sap.sdt.jspm.phases.PhaseTypeJSPM
    com.sap.sdt.jspm.gui.JspmUiException
    Cannot initialize application data.
    JSPM_MAIN
    JSPMPhases
    NetWeaver Upgrade
    SAPJup
    Java Upgrade
    Any inputs regarding this highly appreciated.
    Thanks
    Siva

    You can look at the following link, it may help
    https://www.sdn.sap.com/irj/sdn/directforumsearch?userid=3474257&rankby=10001&start=90

Maybe you are looking for

  • Installation Problem Developer 6i/Oracle 8/Windows NT4 Please help.

    Hi, I am trying to install Oracle Developer 6i and Oracle 8 under Windows NT platform. I had several kind of problem. Atlast I found the installation tips very help and followed it step by step. Still I am facing the problem. Let me explain what i di

  • Why does (only)Nightly erase(delete) clipboard contents when I close it on my Win 8.1 64 bit HP desktop?

    After using Nightly for several months on a new HP Win 8.1 64-bit All-in-One desktop, I've noticed that if I have copied anything from Nightly to the clipboard, it disappears when Nightly is closed, and is not available to be pasted into any applicat

  • MS15-011 GPO not showing after patches have been installed

    As per MS15-011 once the patches are installed I should see the "Network Provider" section in the Administrative Templates Group Policy Objects. I do not. I have installed these patches on all of my DC's and the severs in the Domain. KB3034196 KB3031

  • Bex query hep

    Hi , I need some help regarding bex query I have 3 key figures say A,B,C allocation check characterstic I want to display in report output in following manner If allocation check = 'OFF' then MINIMUM of A and B END IF IF allocation check = 'ON' then

  • Will it Burn Up in 18 months like a Time Capsule?

    Just got a Mini Server. Its a nice little machine. But I'm concerned about the internal power supply and the heat it puts off right where the power cord comes in. Is this going to end up like the time capsules that bricked after 18 months of use? I w