Fetch the netprice from the validity period which always matches with the

Let me describe the same.
Suppose the PO creation date is 04.07.2007
The conditions for an item in a contract for the PO are as follows;
1. Validity from 04.07.2007 validity to 04.07.2007 Netprice = 100.00
2. Validity from 05.07.2007 validity to 31.12.9999 Netprice = 200.00
We need to always fetch the netprice from the validity period which always matches with the PO creation date. here the value 100.00 should be the correct netpr as the PO creation date matches with the first validity period.
But the program is fetching the netprice 200.000 which belongs to the second validity period. That is beacuse the select statement which fetches the data for contracts collects on the basis of EKKO-kdate and ekko-kdtab.the fields kdate and kdtab retrieves the validity period of the contract which is from 04.07.2007 to 31.072007. This data is then used to retrieve the netpr data from EKPO and it fetched 200.00 as it retrives the netprice of current data in contract validity and h not with respect to PO creation date.
This data is then used to fetch the get the netpr data from EKPO.
what we need is the netprice for that validity period of item(Conditions) that matches with the PO creation date..
Below is the code where I'm selecting the data from ekko and ekpo for the contracts data..Can you please add the code snippet to the below attachesd subroutine to get the required data from KONV and KONP so that we can retrieve the correct Netprice.
FORM select_contracts USING p_s_cebeln LIKE s_cebeln[]
p_c_k_bstyp TYPE ebstyp
p_p_bukrs TYPE bukrs
p_p_ekorg TYPE ekorg
p_p_ekgrp TYPE bkgrp
*Begin of Mod-004
fp_p_cernam type ty_r_ernam
p_p_cernam TYPE ernam
*End of Mod-004
p_s_werks LIKE s_werks[]
p_s_matnr LIKE s_matnr[]
p_s_lifnr LIKE s_lifnr[]
p_s_val_dt LIKE s_val_dt[].
*mod-002
data : l_amount type BAPICURR_D, " Net price
l_waers TYPE waers, " Currency Key
l_eff_amount type BAPICURR_D. " Effective value
data: l_v_netpr type bprei.
*mod-002
SELECT ebeln
bukrs
bstyp
aedat
ernam
lifnr
zterm
ekorg
ekgrp
waers
wkurs
kdatb
kdate
inco1
INTO TABLE i_ekko
FROM ekko
WHERE ebeln IN p_s_cebeln
AND bstyp EQ p_c_k_bstyp
AND bukrs EQ p_p_bukrs
AND ekorg EQ p_p_ekorg
AND ekgrp EQ p_p_ekgrp
*Begin of Mod-004
AND ernam EQ p_p_cernam
AND ernam IN fp_p_cernam
*End of Mod-004
AND lifnr IN p_s_lifnr
AND ( kdatb IN p_s_val_dt OR kdate IN p_s_val_dt ).
IF sy-subrc EQ 0.
Populates internal table i_ekpo using EKPO table.
SELECT ebeln
ebelp
loekz
txz01
matnr
werks
ktmng
menge
meins
bprme
netpr
peinh
webaz
mwskz
uebto
untto
erekz
pstyp
knttp
repos
webre
konnr
ktpnr
ean11
effwr
xersy
aedat
prdat
INTO TABLE i_ekpo
FROM ekpo
FOR ALL ENTRIES IN i_ekko
WHERE ebeln = i_ekko-ebeln
and aedat = i_ekko-aedat
AND werks IN p_s_werks
AND matnr IN p_s_matnr.
LOOP AT i_ekpo INTO rec_ekpo.
MOVE rec_ekpo-ebeln TO rec_contr-ebeln.
MOVE rec_ekpo-ebelp TO rec_contr-ebelp.
MOVE rec_ekpo-loekz TO rec_contr-loekz.
MOVE rec_ekpo-txz01 TO rec_contr-txz01.
MOVE rec_ekpo-matnr TO rec_contr-matnr.
MOVE rec_ekpo-werks TO rec_contr-werks.
MOVE rec_ekpo-ktmng TO rec_contr-ktmng.
MOVE rec_ekpo-menge TO rec_contr-menge.
MOVE rec_ekpo-meins TO rec_contr-meins.
MOVE rec_ekpo-bprme TO rec_contr-bprme.
MOVE rec_ekpo-netpr TO rec_contr-netpr.
move l_v_netpr TO rec_contr-netpr.
mod-002
read table i_ekko into rec_ekko with key
ebeln = rec_ekpo-ebeln.
l_waers = rec_ekko-waers.
CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
EXPORTING
currency = l_waers
amount_internal = rec_contr-netpr
IMPORTING
AMOUNT_EXTERNAL = l_amount.
rec_contr-netpr = l_amount.
mod-002
MOVE rec_ekpo-peinh TO rec_contr-peinh.
MOVE rec_ekpo-webaz TO rec_contr-webaz.
MOVE rec_ekpo-mwskz TO rec_contr-mwskz.
MOVE rec_ekpo-uebto TO rec_contr-uebto.
MOVE rec_ekpo-untto TO rec_contr-untto.
MOVE rec_ekpo-erekz TO rec_contr-erekz.
MOVE rec_ekpo-pstyp TO rec_contr-pstyp.
MOVE rec_ekpo-knttp TO rec_contr-knttp.
MOVE rec_ekpo-repos TO rec_contr-repos.
MOVE rec_ekpo-webre TO rec_contr-webre.
MOVE rec_ekpo-konnr TO rec_contr-konnr.
MOVE rec_ekpo-ktpnr TO rec_contr-ktpnr.
MOVE rec_ekpo-ean11 TO rec_contr-ean11.
MOVE rec_ekpo-effwr TO rec_contr-effwr.
mod-002
CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
EXPORTING
currency = l_waers
amount_internal = rec_contr-effwr
IMPORTING
AMOUNT_EXTERNAL = l_eff_amount.
rec_contr-effwr = l_eff_amount.
*mod-002
MOVE rec_ekpo-xersy TO rec_contr-xersy.
APPEND rec_contr TO i_contr.
CLEAR: rec_ekpo,rec_contr.
mod-002
CLEAR : rec_ekko,l_amount, l_eff_amount,l_waers.
mod-002
ENDLOOP.
Modifying i_contr using i_ekko.
SORT i_ekko BY ebeln.
LOOP AT i_contr INTO rec_contr.
READ TABLE i_ekko INTO rec_ekko WITH KEY
ebeln = rec_contr-ebeln
BINARY SEARCH.
MOVE rec_ekko-bukrs TO rec_contr-bukrs.
MOVE rec_ekko-bstyp TO rec_contr-bstyp.
MOVE rec_ekko-aedat TO rec_contr-aedat.
MOVE rec_ekko-ernam TO rec_contr-ernam.
MOVE rec_ekko-lifnr TO rec_contr-lifnr.
MOVE rec_ekko-zterm TO rec_contr-zterm.
MOVE rec_ekko-ekorg TO rec_contr-ekorg.
MOVE rec_ekko-ekgrp TO rec_contr-ekgrp.
MOVE rec_ekko-waers TO rec_contr-waers.
MOVE rec_ekko-wkurs TO rec_contr-wkurs.
MOVE rec_ekko-kdatb TO rec_contr-kdatb.
MOVE rec_ekko-kdate TO rec_contr-kdate.
MOVE rec_ekko-inco1 TO rec_contr-inco1.
MODIFY i_contr FROM rec_contr.
ENDLOOP.
ENDIF.
REFRESH: i_ekko,
i_ekpo.
CLEAR : rec_ekko,
rec_ekpo,
rec_contr.
ENDFORM. "select_contracts
Thanks.

Hi,
Please get the valid condition ( based on date ) from A016 (MK & LPA). With the appropriate KNUMH read the Condition header. You can access the different condition items viz., PB00, RA00 etc., for the values from table KONP. Further if you have Value scales / Quantity scales, you can read the data from KONM, KONW.
An additional tips: in KONP, if you have a condition like RA00 - Rebate, the value will be multiplied by 10 and saven in database to accomodate the discount to the third decimal.
I could not completely understand your requirements like nature of development ( Is it a Report / SAP Script ??) you are working etc., so that I could help you precisely.
Hope this helps,
Best Regards, Murugesh AS
Message was edited by:
        Murugesh Arcot

Similar Messages

  • Bought a new iphone and i cant activate it unless the previous owner deletes the account from their icloud but i lost contact with the previous owner how can i fix this?

    bought a new iphone and i cant activate it unless the previous owner deletes the account from their icloud but i lost contact with the previous owner how can i fix this?

    Take it back where you got and and get your money back.
    As has been pointed out, if there was a "previous owner", the phone is not "new". Thephone you purchased is most likely stolen. If whoever you bought it from won't give you your money back, turn it over to the police.

  • I need to make another iTunes account but keep all the purchases from an old account which I shared with my family. Is there any way to do that?

    Hello, I am finishing up High School ready to go to college, and I wanted to make a new iTunes account with my billing information so I could start fresh. I have an iPod synced to a current account, and the rest of my family has their computers synced to this universal account as well. What I'm really trying to do is just create a new account, but find a way to move all of my apps, music, and movies to this account as well, all while keeping the old account untouched. Any infromation for this would be greatly appreciated.
    Thanks to anyone who can help

    Content can't be moved from the old account to the new one unless the iTunes Store staff says otherwise. You'll be able to use the old content after setting up the new account, but will require the old account's password to be able to update it or make in-app purchases from it.
    (101850)

  • How to load data from a  flat file which is there in the application server

    HI All,
              how to load data from a  flat file which is there in the application server..

    Hi,
    Firstly you will need to place the file(s) in the AL11 path. Then in your infopackage in "Extraction" tab you need to select "Application Server" option. Then you need to specify the path as well as the exact file you want to load by using the browsing button.
    If your file name keeps changing on a daily basis i.e. name_ddmmyyyy.csv, then in the Extraction tab you have the option to write an ABAP routine that generates the file name. Here you will need to append sy-datum to "name" and then append ".csv" to generate complete filename.
    Please let me know if this is helpful or if you need any more inputs.
    Thanks & Regards,
    Nishant Tatkar.

  • HT204368 I recently upgraded from an iPhone 4s to an iPhone 5.  I have a Motorola HX550 Bluetooth Headset which worked flawlessly with the iPhone 4s.  However, since upgrading to the iPhone 5, I frequently lose audio when in the middle of a call.  I am no

    I recently upgraded from an iPhone 4s to an iPhone 5.  I have a Motorola HX550 Bluetooth Headset which worked flawlessly with the iPhone 4s.  However, since upgrading to the iPhone 5, I frequently lose audio when in the middle of a call.  I am not certain whether it is a full disconnect or just an audio loss.  The person on the other end reports still being able to hear me, however, I suppose they could hear me speaking over another source even if bluetooth disconnected. The loss of audio is always preceded by a quick shrill noise, so I can easily tell when it happens.  All I have to do to fix the problem is to select Audio Source on the call screen, temporarily switch audio back to the iPhone, and then switch back to the headset, and then it starts working again.
    Is is important to note that I am not the only one experiencing this issue:
    This is a link to someone using the Motorola H19txt headset experiencing the same issue
    https://forums.motorola.com/posts/94ac15ad7c
    If you go to the Plantronics website and look at the "Ratings and Reviews" on the Voyager Legend you will see the same issue reported:
    http://www.plantronics.com/us/product/voyager-legend (next paragraph is taken from the review since there is no direct link to the review.
    Really nice Headset unless you own an Iphone 5. I own several Plantronics headsets and have always loved the quality/ performance. This headset seems not to be compatible with the new Iphone 5. In the middle of a conversation it will lose all incoming audio. This leaves you trying to switch audio sources really fast in order not to lose your phone call. Ive tried 3 legend headsets and they all do the same thing. Hopefully this gets fixed soon because the headset is really nice
    Since this issue appears to affect multiple headsets from multiple vendors, I think it is fair to conclude that it is an issue with the iPhone5 bluetooth itself.
    I am posting this as a new discussion as I don't see any other posts specific to this iPhone 5 Bluetooth issue.  I would have reported this as a problem to Apple, but don't seem to be able to find a way to do this on the web.  Hopefully they are already aware, but if not, maybe they will see i here.

    here is an interesting thing: take the iphone and set lock screen to never. Now make an email with siri--be sure to activate her with call button. get to the body and get some text in there. then just stop talking. LOCK SCREEN APPEARS!!!!!! and of course you draft is gone.
    There does seem to be a work around for some--maybe all these issues. Don't use the call button--use the buttons on the phone.
    Siri seems to behave properly with scenerio above---sans call button. She does not go to lock.

  • Hi all - any idea how to download songs from an old AOL iTunes account - have updated to Apple ID which is fine for new songs but didn't realise this wouldn't include the old songs.  Have a 1st gen ipod with the original purchases on if that helps

    Hi all - any idea how to download songs from an old AOL iTunes account - have updated to Apple ID which is fine for new songs but didn't realise this wouldn't include the old songs.  Have a 1st gen ipod with the original purchases on if that helps

    ....... is there a way for me to get my old music library (which was controlled by my dad's apple ID) onto my new mac, but from that point on, start using my own apple ID for purchases?........
    Yes, once the content is in iTunes on your computer, just click it to play and authorise your computer to play it by entering your Dad's ID and password.
    Log into your own account and start purchasing your own content which will then be added to the existing content.

  • Any validity  period or expire of maintain the skip indicator is there

    Hi
    Any validity  period or expire of maintain the skip indicator is there.
    Because we mantianed the skip lot for the materials. and it create the correctly upto some period and now eventhou we maintained in the insp type . it not show the X mark against the skip lot field for this lot for the materials.
    Thanks
    vraj

    Hi,
    What is the status of the lot lots
    UD ICCO SPCO STUP
    and let me know what is the DRM setting you have
    u mean DMR.
    DMR is LOT .  dynamic modification -at lot creation
    stage 10::
    inspection severity : blank
    skip : tick
    ist: tick
    short text: skip
    No. of skips........ 9
    Max. skip duration:blank
    New insp. stage 20
    Rejections 1
    New insp. stage 30
    stage20 :
    inspection severity : 4 say
    skip : blank
    ist: blank
    short text: inspect
    No. of inspections.. 1
    New insp. stage 10
    Rejections 1
    New insp. stage 30
    stage30 :
    inspection severity : 4 say
    skip : blank
    ist: blank
    short text: inspect
    No. of inspections.. 5
    New insp. stage 10
    Rejections 1
    New insp. stage 30

  • TS2755 I received a message from my wife, to which I replied but the response went to her and others in her contact list. How is this possible?

    I received a message from my wife, to which I replied but the response went to her and others in her contact list. How is this possible?

    I have had a similar but worse issue.  I sent a text with photo to 6 friends and family members.  Their replies went to folks in my contacts list who were not even part of the original string.  In fact, one of the replies went to someone whom I had evidently called once but was not in my contact list. This is very strange.

  • My laptop was stolen and with it my itunes, all of my music (including non-apple downloaded content) is still on my iphone 5, how can I transfer the files to my new laptop which is authorised to the same apple ID?

    my laptop was stolen and with it my itunes, all of my music (including non-apple downloaded content) is still on my iphone 5, how can I transfer the files to my new laptop which is authorised to the same apple ID?

    See this user tip for recovering the media from the iPhone: https://discussions.apple.com/docs/DOC-3991

  • I have set up my airprint wifi printer which works perfectly with the HP eprint app. However, when i view an email and click on the top right arrow button and select "PRINT" on my ipad nothing happens????...

    I have set up my airprint wifi printer which works perfectly with the HP eprint app. However, when i view an email and click on the top right arrow button and select "PRINT" on my ipad nothing happens????...
    Also, when im viewing websites and i find something i wish to print, same again, if i simply click on the print option at the top right of the screen nothing happens... the only way I can print is if i copy the weblink of the site page then click on my HP eprint app and paste the web link, then select print, it prints off fine.. but its it such a pain to keep copying and pasting links or screen dumping emails just to print...

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • TS1544 I am the administrator of my MacBook Pro, which I share with my kids. One of them forgot his password, so as the admin I changed it for his account, but  when I try to see his account, it says I need to provide the keychain password. How can i get

    I am the administrator of my MacBook Pro, which I share with my kids. One of them forgot his password, so as the admin I changed it for his account, but  when I try to see his account, it says I need to provide the keychain password. How can i get it? I have no idea how to sort this out...

    First, make sure caps lock is not on.
    You must back up all data before continuing, unless you've already done so. If you need to back up but can't log in, ask for instructions.
    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password.
    Otherwise*, boot into Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
     ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but your Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead the instructions on this page:
    If you forget the password and FileVault is on

  • Setup.exe gives a "LANG_LIST has some locales which does not match with the locale of serial number"

    I ran the Adobe Customization Wizard XI to create a transform file and now when run setup.exe it always come with the error "LANG_LIST has some locales which does not match with the locale of serial number".
    It does the same thing when using msi with the command : msiexec /i  AcroPro.msi TRANSFORMS=AcroPro.mst /qb!
    Here is my setup.ini file
    [Startup]
    RequireOS=Windows XP
    RequireMSI=3.1
    RequireIE=7.0.0000.0
    Require64BitVC10RT=1
    CmdLine=/spb /rs /sl"1036"
    [Product]
    msi=AcroPro.msi
    vcrtMsi=vc_red.msi
    vcrtDir=VC10RT_x64
    Languages=1033;1036
    2052=Chinese Simplified
    1028=Chinese Traditional
    1029=Czech
    1030=Danish
    1043=Dutch (Netherlands)
    1033=English (United States)
    1035=Finnish
    1036=French (France)
    1031=German (Germany)
    1038=Hungarian
    1040=Italian (Italy)
    1041=Japanese
    1042=Korean
    1044=Norwegian (Bokmal)
    1045=Polish
    1046=Portuguese (Brazil)
    1049=Russian
    1051=Slovak
    1060=Slovenian
    1034=Spanish (Traditional Sort)
    1053=Swedish
    1055=Turkish
    1058=Ukrainian
    1025=English with Arabic support
    1037=English with Hebrew support
    6156=French (Morocco)
    CmdLine=TRANSFORMS="AcroPro.mst"
    [Windows XP]
    PlatformID=2
    MajorVersion=5
    MinorVersion=1
    ServicePackMajor=3
    [MSI Updater]
    Path=WindowsInstaller-KB893803-v2-x86.exe
    I don't know what goes wrong as took my serial number on my profile from the adobe web site, same thing for the download of the software.
    Does it means that the serial number provided was invalid for deploying ?
    NB.: My goal is to deploy our Acrobat XI through SCCM in silent mode and I don't know if there is extra consideration for that.  For now it's only not working at the command line.
    Another important point is that the install works great without customization !  If I just run the setup.exe from freshly extracted files and I use my serial number, everything is working fine.
    So what goes wrong ?

    Thanks for the reply brogers_1 and Vinod Dbhal, you gave good hint.
    I retried installing the initial package in French on a Windows 7 English and the software installed properly in French. 
    As I used to work with virtuals for those tests, I rolled back my virtual and redo my test installation with chosing to install it in English on my Windows 7 English and again the installation finished properly but I was surprised when I realized that even if I chose English as language, the software was running in French !
    Of course I can change the language settings (in the edit-preferences-language) to follow the operating system witch is nice.
    That gave me the cue I needed to know.  I started from scratch my customization with choosing only the French language in the "Application Languages" and I left the MUI Languages blank and saved the .mst
    I ran again the same command : msiexec /i  AcroPro.msi TRANSFORMS=AcroPro.mst /qb!
    And everything works fine.
    NB.: As I used the .msi directly, of course I had to install the prerequirement Visual C++ 2010 first.  Otherwise the installation failed without any error message.
    Thanks again to you for your good hint,
    Bob

  • Pull the data from legacy System into report and display with SAP data

    Hi Friends,
    My requirement is-
    Create report by processing data from SAP tables and prepare output.And Before displaying the output, I have to pull the data from non-sap system which is readymade (It will come as flat file with similar fields as Report structure has) and finally display the records from both SAP and Legacy System by filtering duplicates.

    Steps:-
    Define the file path on selection screen:-
      Selection screen data
        select-options   (s_)
          parameters     (p_)
          radio buttons  (r_)
          checkboxes     (x_)
          pushbuttons    (b_)
    SELECTION-SCREEN  BEGIN OF BLOCK block1 WITH FRAME TITLE text-f01.
    parameter:    p_file    type text_512 obligatory.
    Start-of-selection.
      data : l_fname type string. " File Name
      l_fname = p_file .
      call function 'GUI_UPLOAD'
        exporting
          filename                = l_fname
          filetype                = 'ASC'
          has_field_separator     = '#'
        tables
          data_tab                = lt_data
        exceptions
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          others                  = 17.
      if sy-subrc <> 0.
        message e000 with 'Unable to upload file from the PC'(t13).
      endif.
    lt_data is of same structure as the fields in the file.
    For filtering duplicates:-
    delete adjacent duplicates from lt_data.
    Now display the records using either ALV or using write statements.
    You can display the records in any of the way you want.

  • When I try to print an address from Address Book on an envelope, the printer menu shows the menu from IPhoto.  All other print requests show the normal pinter menu. How do get the normal menu?

    When I try to print an address from Address Book on an envelope, the printer menu shows the menu from IPhoto.  All other print requests show the normal pinter menu. How do get the normal print menu?

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • Whenever I try to download an app [from the app store on the computer], a popup message appears saying 'A server with the specified hostname could not be found'. What could I do to resolve this?

    Whenever I try to download an app [from the app store on the computer], a popup message appears saying 'A server with the specified hostname could not be found'. What could I do to resolve this? I am using a MacBook Pro laptop. There is around 250 gb of free space. Please help

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try to update. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

Maybe you are looking for

  • Ichat won't open

    My Ichat will not open. I have tried to open it by going to finder and applications and then ichat but it still does not open. The icon in the dock menu just bounces up and down for awhile and then stops. How do i fix this? Since it will not open i h

  • How do I contact Apple for help?

    I'm going insane. I waited on hold for something like half an hour before I had to leave for class. Is there an email address for service and support? I need help with the scratch issue. I've had my ipod nano for about a week and a half, I've been ex

  • How can I set up my Tiscali email account on my ipad mini?

    Please can someone help me understand how to set up my new ipad mini so that I can read my Tiscali email.

  • Display html document

    I have created an html file in the portal (Content Management -> Explorer -> Folder ->HTML File). I want to create an iview that will display this file. How can I achieve this

  • ITunes sorting question - album art

    Hi, I currently have my itunes setup whereby it shows the album art for each album (this is the third possible viewpoint, of the four that you can select). The trouble is, some of my albums have multiple singers in them (e.g compilation albums). So,