Get detail info of PO

Experts,
I'm trying to get PO pendent confirmation details in order to build a report in SRM GUI. This PO detail has to be related with the SC detail also. I'm using FM BBP_PD_PO_GETLIST but i cannot get all the information i need. Can u tell me how can i retrieve all the information ( FM, REPORT, TABLES)? in other words i want to know for a certain REQ NAME which confirmations are still pendent!
Can u help me ?
Best regards,
Mário.

Hi,
Try using function module bbp_pd_po_getdetail.
You can even use the tables BBP_PDBEI , CRMD_ORDERADM_I, CRMD_ORDERADM_H.
and if still u dont get the required info, use the BBP_PD transaction. there u give the PO number and you will get the required information from different tables.
Hope this helps,
Thanks,
Pradeep

Similar Messages

  • Is there a wat to get detailed info on numbers dialed and received?  Seems my phone only stores apx. 2 months of that data. Thanks

    Is there a way to get detailed info on numbers dialed and received?  Seems my phone stores about 2 months of this information. Thanks.

        Hi there, molsoniceman! You certainly can get call details. The best place to collect that info is through My Verizon Online (http://bit.ly/xB4iTc ). If you're already registered as an Account Member or Account Owner, please log in and review your detailed billing statements. It should show the dates, times, phone numbers, and call duration for all calls within specific billing cycles. Your last 18 months of statements should be available for your review!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • How to get detail info of application acknowledgement in BPM send step

    Hello
    in BPM we will send an async message to SAP backend system, we need to know if the message is successfully process or not, if not, we need to get the detail info which is returned in the acknowledgement message.
    As you know in PI monitor, you can open the acknowledgement message and you can see the error texts that are sent by the SAP backend system to PI in the acknowledgement message. However seems like there is no standard way in PI BPM to get the error texts inside the acknowledgement. In the send step you can only specify that application ACK is required, if negative ACK comes in, an exception is raised and you can handle the exception in the exception branch. However there is nowhere to capture the acknowledgement message to get the detail error texts.
    Anyone has good idea to get the error texts from the application acknowledgment message inside BPM/
    Thanks

    we need to know if the message is successfully process or not, if not, we need to get the detail info which is returned in
    the acknowledgement message
    One way to have the above requirement done is make the process synchronous (if RFC/ Proxy). The response message should contain the state of processing of the message inside SAP....now in the BPM make a check on the response message to see if it is a success or failure....you can apply logic like is success terminate the BPM without any alert.....if failure raise an alert/ send a mail.
    Regards,
    Abhishek.

  • Where can I get detailed info on bug fixes?

    Hi,
    Where can I get more information on bug fixes that are listed in the release notes of each version? For instance, I am interested in each of the following ones.
    GRANITE-1215 - Workflow Monitoring via JMX
    CRX-4167 - Improved handling for backup procedure on ""listDir = /""
    GRANITE-877 - Fixed ""Too many open files"" issue in monitoring
    GRANITE-741 - Replication can handle missing content in the activation queue
    GRANITE-1090 - Configure exclusion of publish instances for activation status updates
    CRX-2943 - Cluster: Enable audit log on workspaces
    Apart from the one line descriptions, I need more detailed info like what was the issue or why it occurs and how was it fixed, looking for something similar to a KB article.
    Thanks

    These are internal reference numbers and the detailed descriptions are not available publicly.
    Please note that they are not all bug fixes, they can also be: improvements; enhancement requests; and new features.

  • Can't get detailed info in App Store

    I can no longer get into the application page in App Store.  When I search, plenty of applications come up and I can purchase from this screen but I can't tap on the application and get further info.  Any thoughts?

    Have you tried the basic troubleshooting steps?
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Quit the app store app and restart. In order to quit or close apps - Go to the home screen first by tapping the home button. Double tap the home button. The task bar will appear with all of your recent/open apps displayed at the bottom. If you are using multitasking gestures in iOS 5 - you can swipe up from the bottom of the screen to reveal the task bar. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • I AM NEW TO BI ,WHERE I WILL  GET  DETAIL  INFO  FOR  'USEREXIT'

    HI ALL,
    I AM NEW  TO BI WHERE I WILL GET ALL DETAILS ABOUT USEREXITS.
    AND HOW TO WRITE SIMPLE USEREXIT....I.E SOME EXAMPLE RELATED TO IT..

    Check this program for Finding User Exit.
    Pass the transaction Code in the section Screen of the Program.This program outouts all exits related to TC given in sel screen
    Report
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
      select single * from tadir where pgmid = 'R3TR'
                                   and object = 'PROG'
                                   and obj_name = tstc-pgmna.
      move : tadir-devclass to v_devclass.
      if sy-subrc ne 0.
        select single * from trdir where name = tstc-pgmna.
        if trdir-subc eq 'F'.
          select single * from tfdir where pname = tstc-pgmna.
          select single * from enlfdir where funcname = tfdir-funcname.
          select single * from tadir where pgmid = 'R3TR'
                                       and object = 'FUGR'
                                       and obj_name eq enlfdir-area.
          move : tadir-devclass to v_devclass.
        endif.
      endif.
      select * from tadir into table jtab where pgmid = 'R3TR'
                            and object = 'SMOD'
                            and devclass = v_devclass.
      select single * from tstct where sprsl eq sy-langu and
                                       tcode eq p_tcode.
      format color col_positive intensified off.
      write:/(19) 'Transaction Code - ',
           20(20) p_tcode,
           45(50) tstct-ttext.
      skip.
      if not jtab[] is initial.
        write:/(95) sy-uline.
        format color col_heading intensified on.
        write:/1 sy-vline,
               2 'Exit Name',
              21 sy-vline ,
              22 'Description',
              95 sy-vline.
        write:/(95) sy-uline.
        loop at jtab.
          select single * from modsapt where sprsl = sy-langu and
                                             name = jtab-obj_name.
          format color col_normal intensified off.
          write:/1 sy-vline,
                 2 jtab-obj_name hotspot on,
                21 sy-vline ,
                22 modsapt-modtext,
                95 sy-vline.
        endloop.
        write:/(95) sy-uline.
        describe table jtab.
        skip.
        format color col_total intensified on.
        write:/ 'No of Exits:' , sy-tfill.
      else.
        format color col_negative intensified on.
        write:/(95) 'No User Exit exists'.
      endif.
    else.
      format color col_negative intensified on.
      write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    at line-selection.
      get cursor field field1.
      check field1(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first   screen.
    Cheers,
    Manoj.

  • How to get more detailed info while running a BAPI in test mode

    Hi friends
    I am trying to test 'BAPI_QUOTATION_CREATEDATA2' by opening the BAPI with 'se37' and then clicking on the button Test/Execute (F8) and entering all the data required.
    However, I get a message as follows.
    '555 The sales document is not yet complete: Edit data'
    While creating the QUOTE manually using 'va21' I get more detailed messages like what kind of data is missing 'whether valid to date is missing ..etc.etc.'.
    However, while testing thro' bapi, all it says is that sales document is not complete.
    Is there a way to see more detailed info as to what information is missing, so that I can put them before running.
    Your feedback or suggesions will be highly appreciated.
    Thansk
    Ram

    Thanks Rob
    Actually it says
    W  V1   555  The sales document is not yet complete: Edit data.
    As I said, I am running the BAPI manually by opening the BAPI using SE37 and then clicking on the F8 button. This inreturn will give me an opportunity to click on different object trees to enter the sample data. So I have entered everything that I thought was needed. But still it keeps complaining that the info is not complete but no further details.
    Hope there is some log file or something that I can see to get more details.
    Thanks
    Ram

  • DVD detailed Info- software comparable for the mac

    I need to help someone and need some detailed info a some DVds they gave me. Is there mac software to show details like this PC software here:
    http://www.videohelp.com/tools/GSpot
    Or how do I do the same thing on a mac? Get info isnt much help. Im new to this.

    If you want to find out what CODECS are used in audio and video files you have, simply open the Apple Quicktime Player and then drag the file you want information about to the Quicktime Player icon in the dock. Then select WINDOW>SHOW MOVIE INSPECTOR (this is for the Quicktime X Player - older versions are slight different).
    need some detailed info a some DVds
    DVDs all use mpg-2 video encoding.

  • Getting more info about a resource

    Hi,
    could you please let me know what is the endpoint i can use to get detailed information about a resouce, for example if i have a virtual network "foo" then how do get the which address space and subnets are in that network , The api endpoint i
    can GET/POST so that i get this info. i would prefer the ARM endpoint , as i use that for provisioing too
    Thanks in advance..
    - Benno

    Hi,
    Thank you for posting in here.
    We are checking on this and will get back at earliest.
    Regards,
    Manu Rekhar

  • Cannot get details for a SLED+SP1 workstation

    Hello everybody.
    Using ZAM 7.50.0023 IR 10.
    I have licenses for both Windows and Linux workstations.
    No firewall is operating/in use between the ZAM server and the Linux box.
    I installed the ZAM client on the SLED10+SP1 box without problems and the
    client is running as root user; port 7461 on the client is in LISTEN state:
    COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
    tscclient 10008 root 3u IPv4 3093188 TCP *:7461 (LISTEN)
    The client gets detected by the Network Discovery task but I'm unable to get
    more details from the client, even if I force a scan either using the manager
    or the WEB console.
    Here's what reported when running in "diagnostic" mode:
    04/07/08 13:15:20 - Collection Client initialized
    04/07/08 13:15:20 - /usr/local/zam/bin/tscclient
    04/07/08 13:15:20 - pid: 10008 uid: 0 euid: 0
    04/07/08 13:15:20 - Client Version 7.50.0013 built Apr 10 2007 14:45:11.
    04/07/08 13:15:20 - Options= First:0, Port:0, Online:0, Svc:0, SN:0
    04/07/08 13:15:20 - EstablishOperatingMode
    04/07/08 13:15:20 - running in Normal mode
    04/07/08 13:15:20 - Changing to Idle Mode
    04/07/08 13:15:20 - Executing '/usr/local/zam/sysinfo/bin/sysinfo -format
    report -version > siver.dat', rc: 0, pid: 10010
    04/07/08 13:15:20 - Waiting for 10010...
    04/07/08 13:15:25 - read SysInfo Version 6.0.1 (H5)
    Binary Build Information:
    Build Number: 2006
    04/07/08 13:15:25 - sysinfo reports version: 6.0.1
    04/07/08 13:15:25 - client getting connection info.
    04/07/08 13:15:25 - conninfo - lang: 1, plat: 6, cfgid:
    04/07/08 13:15:25 - conninfo - cname: rzini, uname: , LANadd: 005004485B85, sn:
    04/07/08 13:15:25 - conninfo - oid: 21750882-023F-11DD-B706-005004485B85
    04/07/08 13:15:25 - CreateListener: port=7461; inbox=/usr/local/zam/bin/InboxCC
    04/07/08 13:15:25 - CWinsockMsgServer::SetLocalHostInfo() completed.
    04/07/08 13:15:26 - CCollectionServer::SetRemoteHostInfo:
    00000000-0000-0000-0000-000000000000 - fred-zam - 7460
    04/07/08 13:15:26 - ConnectForScanMode to fred-zam (XXX.XXX.XXX.XXX)
    04/07/08 13:15:26 - 29xID: LAN addr: 005004485B85
    04/07/08 13:15:26 - Connected to fred-zam
    04/07/08 13:15:26 -
    04/07/08 13:15:26 -
    04/07/08 13:15:26 - initial connect state: 1
    04/07/08 13:15:26 - Received RequestForCatalog
    04/07/08 13:15:27 - Sent Catalog
    Please notice the above (XXX.XXX.XXX.XXX) IP address has been changed as not
    to reveal the address of the ZAM server.
    I can telnet to port 7461 from the ZAM server to the client without problems.
    I tried by defining a Collection Set in several ways:
    .. LAN Address = <MAC address of the client>
    .. Asset-Type = Unix/Linux
    but unsuccessfully.
    From the Manager, I can perform a Query for "Inventory Type = UNIX
    Workstation" and the client gets reported but again I don't have additional
    info available.
    The the row reporting the client box, I can force a "Scan now" but I do not
    see evidences of the scan in progress.
    "netstat -an" does not report any connections to the IP of the client box.
    Thanks,
    Rob

    Does your Collection Server event log show any indication that the Client in question has connected to it, or has asked for a scan? Even more, has that Client scanned by this time and this issue become moot?
    I've observed that sometimes a freshly restarted Client won't scan until it's gone through at least one checkin cycle.
    What's your Client checkin interval? That should be in the Collection Server's "Advanced" tab (in the Manager).
    -- Tim --
    Originally Posted by Rob
    Hello everybody.
    Using ZAM 7.50.0023 IR 10.
    I have licenses for both Windows and Linux workstations.
    No firewall is operating/in use between the ZAM server and the Linux box.
    I installed the ZAM client on the SLED10+SP1 box without problems and the
    client is running as root user; port 7461 on the client is in LISTEN state:
    COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
    tscclient 10008 root 3u IPv4 3093188 TCP *:7461 (LISTEN)
    The client gets detected by the Network Discovery task but I'm unable to get
    more details from the client, even if I force a scan either using the manager
    or the WEB console.
    Here's what reported when running in "diagnostic" mode:
    04/07/08 13:15:20 - Collection Client initialized
    04/07/08 13:15:20 - /usr/local/zam/bin/tscclient
    04/07/08 13:15:20 - pid: 10008 uid: 0 euid: 0
    04/07/08 13:15:20 - Client Version 7.50.0013 built Apr 10 2007 14:45:11.
    04/07/08 13:15:20 - Options= First:0, Port:0, Online:0, Svc:0, SN:0
    04/07/08 13:15:20 - EstablishOperatingMode
    04/07/08 13:15:20 - running in Normal mode
    04/07/08 13:15:20 - Changing to Idle Mode
    04/07/08 13:15:20 - Executing '/usr/local/zam/sysinfo/bin/sysinfo -format
    report -version > siver.dat', rc: 0, pid: 10010
    04/07/08 13:15:20 - Waiting for 10010...
    04/07/08 13:15:25 - read SysInfo Version 6.0.1 (H5)
    Binary Build Information:
    Build Number: 2006
    04/07/08 13:15:25 - sysinfo reports version: 6.0.1
    04/07/08 13:15:25 - client getting connection info.
    04/07/08 13:15:25 - conninfo - lang: 1, plat: 6, cfgid:
    04/07/08 13:15:25 - conninfo - cname: rzini, uname: , LANadd: 005004485B85, sn:
    04/07/08 13:15:25 - conninfo - oid: 21750882-023F-11DD-B706-005004485B85
    04/07/08 13:15:25 - CreateListener: port=7461; inbox=/usr/local/zam/bin/InboxCC
    04/07/08 13:15:25 - CWinsockMsgServer::SetLocalHostInfo() completed.
    04/07/08 13:15:26 - CCollectionServer::SetRemoteHostInfo:
    00000000-0000-0000-0000-000000000000 - fred-zam - 7460
    04/07/08 13:15:26 - ConnectForScanMode to fred-zam (XXX.XXX.XXX.XXX)
    04/07/08 13:15:26 - 29xID: LAN addr: 005004485B85
    04/07/08 13:15:26 - Connected to fred-zam
    04/07/08 13:15:26 -
    04/07/08 13:15:26 -
    04/07/08 13:15:26 - initial connect state: 1
    04/07/08 13:15:26 - Received RequestForCatalog
    04/07/08 13:15:27 - Sent Catalog
    Please notice the above (XXX.XXX.XXX.XXX) IP address has been changed as not
    to reveal the address of the ZAM server.
    I can telnet to port 7461 from the ZAM server to the client without problems.
    I tried by defining a Collection Set in several ways:
    .. LAN Address = <MAC address of the client>
    .. Asset-Type = Unix/Linux
    but unsuccessfully.
    From the Manager, I can perform a Query for "Inventory Type = UNIX
    Workstation" and the client gets reported but again I don't have additional
    info available.
    The the row reporting the client box, I can force a "Scan now" but I do not
    see evidences of the scan in progress.
    "netstat -an" does not report any connections to the IP of the client box.
    Thanks,
    Rob

  • BPMON Alerts "Detail info" disappeared in SP10-11

    Hi BPMON Experts,
    we have upgraded SOLMAN from SP08 to SP11 (skipping SP10).
    We have already had BPMON and Analytics setup in SP08.
    Now finding out that in SP11the "Detail Info" and SP13 buttons in Alert Inbox completely disappeared.
    Reading TECHED mats from last year, it sais that BPMON alert details are not integrated in SP10.
    However SAP recommends for users with old BPMON settings to still use OLD  BPO workcenter to realize full functionality..
    But without detail info button - there is not much use for it.
    Is anyone else experiencing same problem ?
    Appreciate your comments.
    Thanks
    Elena

    Hi Elena
    I wonder whether you use MAI based BPMon (BPMon on new monitoring infrastructure) or use classic one...  If the BPMon and BP Analytics setting were made when SP was SP8, I assume it is Classic one.
    Anyway, let me clarify some points.
    As you know from Teched replay, as of Solution Manager 7.1 SP10, BPMon offer new BPMon that based on monitoring alert infrastructure (MAI).  But this does not means, after the SP10, your existing BPMon or BP Analytics setting runs on new MAI infra. Without switching on the MAI, your solution still run on Old infrastructure (I will use classic BPMon engine here).
    Since all the BPMon cases are not covered yet in SP10/SP11 and also conversion tool from classic BPMon to MAI BPMon is not available in SP10/SP11, using Classic BPMon is still recommended.
    So if you simply update SolMan SP from SP8 to 11, your BPMon and  BP Analytics Monitors still run classic BPMon infra. Here basically everything should be same.
    So I bit suprise you have some issue (detail info is not available, ST13<?> button is nto avaialble)...
    In my understanding, there should not be the issue if you still run classic BPMon infra.
    So if this is the case, I recommend you to check your monitor setting. If you update ST-A/PI in managed system during SP11 upgrade, I recommend you to conduct following to get latest repository.
    1. Go to BPMon setup and chose your logical component area. And conduct load monitor definition.
        By pressing this, latest monitor definition is loaded from managed system to SolMan.
    2.To refrect the latest repository content, go to logical componet and choose all monitor and de-activate ->Generate->Activate existing monitors.
    For ST13 button, I recommend you to check your monitor setting (analysis tool tab). If not T-CD/Program assigned to your monitor, the button is not avaialble in alert inbox. So you need to assign the T-CD /Program that you want to see in alert inbx in analysis tool tab of your monitor.
    If your case, is not based on classic BPMon (You newly create solution and switch on MAI setting to your Solution as attached picture), I recommend you to chck new Alert Inbox and open detail info.
    As of SP10, you can control classic / MAI BPMon per solution (but if there is existing monitor, you cannot switch. So you need conversion tool that is planned SP12 probably).
    In MAI based BPMon, there is BPO workcenter. And it offer a bit different alert inbox.
    In new MAI based Alert inbox, to use detail info button, you need to press show detail button.
    (like technical monitoring, new alert inbox support grouping etc.. so to see detail info, you need to go into 1 more detail level).
    In detail display, detail info should be still avaialble like attached picture (but now it is http based. not GUI base).
    So even the new BPMon, detail info still should be avaialble. Also you should be able to call transaction/program like you could do before. (actually in new infra, it can do more).
    I think in the teched replay, it might says "BPMon BW Alert report is not supported yet" in new BPMon....
    Hope above info help you.

  • IPhone OS 4.0 - detailed info on lock screen?

    Hey everyone,
    I guess this has been asked before, but since yesterday iPhone OS 4.0 was introduced in the dev preview, I thought my worries would come to an end, though, they did not.
    It turns out Apple does not plan to rethink the way the lock screen gives iPhone users information about missed events like calls, texts and emails or calendar events.
    Is there a way to submit a feature request to Apple so that maybe a feature will be integrated in a future update of iPhone OS ? I couldn't find a such "button" on the Apple homepage.
    Maybe I'm also to naive to think Apple would offer such user-friendly generosity, but I've seen this post on tuaw.com linked at the bottom and I thought it looked like im NOT the only one asking for such functionality.
    Also, Steve Jobs said in yesterday's iPhone OS 4.0 dev preview keynote that "... many, many users have requested this ..." and I wonder HOW they all have transferred their thoughts to Apple HQ. Can anyone help me out on this?
    Here's tuaw.com's link on future features for iOS, notice "1. The lock screen"
    http://www.tuaw.com/2010/01/10/dear-apple-what-we-want-to-see-for-iphone-4-0-par t-1/

    I just sent this to Apple via apple.com/feedback:
    Dear Apple,
    Until now, I will have to go through the phone, mail and SMS (and calendar) app to catch up on all the events that have occurred since I locked my iPhone's screen.
    This non-presence of detailed lock screen information on iPhone OS, a detailed view on who sent me an email and what the subject of that email is; what exactly the upcoming calendar event is about and who called when is not the best available solution.
    Additionally, when I have an unlock code set up, I will have to enter my 4-digit code before I can get more detailed info on what has happened. It would be far more convenient to have that enhanced info before I even decide to unlock the screen.
    For inspiration on what this could look like and proof that I'm not the only one missing this functionality, have a look at this link from tuaw.com:
    http://www.tuaw.com/2010/01/10/dear-apple-what-we-want-to-see-for-iphone-4-0-par t-1/
    Thank you for your time!

  • 5508 - Getting detailed user association events in Syslog

    Hi everybody
    Sounds like an obvious request. I need to trace some malware and I need to know in detail when each user is associated to an AP / SSID.
    I can see some Syslog events like SISF-6-ENTRY_CHANGED. Nevertheless, I see nothing that explicitly tells me that an SSID association started or finished.
    I was specifically looking for a mac address and if possible for the IP mapped to it.
    I enabled the Debug level for Syslog messages and using the for Syslog facility the User process.
    I don't have a WCS; just two WLC 5508.
    Did you have this requirement?
    Regards
    Enrique Waizel

    I don't think you will get that info from syslog. You can try searching the forum to see, but here is a thread I did find.
    https://supportforums.cisco.com/thread/2171466
    Sent from Cisco Technical Support iPhone App

  • My MacBook is plugged in with a green light and shows it's plugged in, but is not charging.  When it's unplugged, it dies.  It was charging last time I used it but not any more.  I am no computer whiz and need detailed info on what to do  Thanks.

    My MacBook is plugged in with a green light and shows it's plugged in, but is not charging.  When it's unplugged, it dies.  It was charging last time I used it but not any more.  I am no computer whiz and need detailed info on what to do  Thanks.

    The model 2,1 MacBook has an easily removable battery. You can get a new third party battery fairly cheap on eBay. Every MacBook from 2006 through Mid 2009 except the Late 2008 Aluminum Unibody and the Late 2009 and 2010 White Unibodies use the same A1185 battery.
    Black Batteries http://shop.ebay.com/i.html?_nkw=macbook+black+battery&_sacat=0&LH_BIN=1&_sop=12 &_dmpt=Laptop_Batteries&_odkw=macbook+white+battery&_osacat=0&_trksid=p3286.c0. m 270.l1313
    White Batteries http://shop.ebay.com/i.html?_nkw=macbook+white+battery&_sacat=0&LH_BIN=1&_sop=12 &_dmpt=Laptop_Batteries&_odkw=macbook+black+battery&_osacat=0&_trksid=p3286.c0. m 270.l1313
    Or for $129 from The Apple Store  http://store.apple.com/us/product/MA566LL/A?mco=MTY3ODQ5OTY
    Removing the battery:
    Shut down the computer. Disconnect any cords connected to the computer.
    Turn the computer over.
    Locate the battery latch on one side of the battery.
    Use a coin to turn the latch a quarter-turn clockwise. The battery should pop up slightly.
    Lift the battery out.
    Installing the battery:
    Place the right side of the battery into the battery compartment at an angle, as shown below.
    Gently press the left side of the battery down until it sits flat.
    While holding the battery down, use a coin to turn the latch a quarter-turn counter-clockwise. The battery should lock into place.
    Note: Keep in mind that once the new battery is inserted, you will need to press the power button to start up the computer.

  • Creating link on report elements to get more info

    Hello,
    I have created a data model in BI publisher which integrates two data models one from BI Answser (a query ) and One from source data (a table)
    I have linked an element on the BI Answer data model to the corresponding lement in the source table. to get more information on that data element.
    I want to be able to create a report and click on that data element and get detail information about it. Do you know who I can do this?
    Thanks

    Could be a link to a large PDF that is taking a long time to download. They show up as blank, black windows while downloading, usually with a progress bar.

Maybe you are looking for

  • Serial Number in Sales order

    Hi Team, My client wants to maintain one serial no profile but multiple no range. Suppose in an order they entered 5 different material but all bellongs material types Finished goods. So they want different number range for this 5 different materials

  • Blurred Text in Safari

    Occasionally when reading a ducument in Safari, the text blurs and I have to reboot Safari. Anyone else have this problem? Virg

  • Alright why oh why can't I switch between iTunes details and mini player?

    Ok I like the new format, separation of the iTunes store makes it a great media player. However the with the new iTunes application what Neanderthal decided not to use the green button to switch between listing and viewing and the mini player, instea

  • SSIS Import is showing multiple Excels

    Hi There, When am trying to import data from spreadsheet to SQL Table is is giving me different excel names other than the one I wan to import. This is first time am seeing, please check below screenshot and suggest what to do. AM going to clean all

  • PXI-4351 reading rate

    Hello, I'm using a 4351 board for RTD and thermocouple measurements. I've got a strange behaviour when activating "auto-zero at start" : the reading rate is higher than with no auto-zero at all. It looks like it was in "Fast" mode, although i leave t