G/L account Correction

Hi to all
i am a SD consultant, getting error in posting the document to FI/CO
this is regarding shipment cost calculation, the document got saved but not posted to the FI/CO. In the log it is showing the error:
"G/L account 417000 can not be used (please correct)"
Message No.:ME05
Diagnosis: Comparision of the field selection strings from the G/L account and the Account Assignment category 'K' reveals that there is an imcompatiable combination of field sections for the field selection group 'EARKMARKED FUNDS'.
The G/L account field selection is stored in table T004F, that for the Account Assignments is stored in T162K
Procedure:Please correct the G/L account.
please help in solving this problem.
2. what is the next step after creating shipment cost document. should i create purchase order, service entry sheet. or any other procedure.
please advice me
Babu Rao

Hi,
There is inconsitency between GL FSG an Movent type FSG.
Go to SE38 and execute program CUFA (I am not excatly remebering the program name hence the wild cards. I this is RMCUFA00).
Here give GL number and the movement type that is triggering with the release of document.
Or otherwise you can go to OB14 and select teh FSV of your GL account and change the "Ear marked fund feild" to optional.
reward if useful.
sarma

Similar Messages

  • How can I reach someone in Verizon Customer Service that can get my account corrected?

    I have been trying to get my account corrected since January the 12th.  I have called dozens of times each time I am promised a return call as an IPR must be completed and then nothing happens.  I call back and told a different excuse every time. I have been with Verizon since 2003 and just don't know why I have to call so many times and told so many conflicting stories. 

    When you find the answer please let me know...

  • HT1414 If i back up my phone due to the wifi option being grayed out it says to connect to itunes and reset my phone but everything will get deleted that wont happen if everything is in my icloud account correct

    If i back up my phone due to the wifi option being grayed out it says to connect to itunes and reset my phone but everything will get deleted that wont happen if everything is in my icloud account correct

    If Wi-Fi is greyed out, it is not possible to backup to iCloud.
    If the device is backed up to iTunes and contacts, calendars, notes, etc are synced to a supported application or cloud service, and media and pictures are on the computer, then a restore will not cause any data to be lost.

  • I went to create a itunes account and entered the wrong e-mail in and my ITunes confirmation code was sent to that e-mail. The person who recieved the e-mail shouldnt be able to keep it due to they dont know the password i made for the account correct?

    I went to set up an ITunes account and entered the WRONG e-mail. After everything was complete it sent the Itunes conformation number to the wrong e-mail. I dont believe they can use it because they dont know the password it will ask them for that e-mail for the account. How do i redeem the itunes back? When i enetr the code to try and use it for my correct e-mail it says it already has been redeemed.

    Go to https://expresslane.apple.com ; select 'iTunes' in the first column; 'iTunes Store' in the second column then see if there is an appropriate place to report the problem.

  • Purchase Query through Control Account - Correction

    Dear Experts,
                        Can anybody help me to correct the below query, where I need to incorporate the Control Account (OINV-Ctlaccount) as one another selection parameter in the existing one.
    Try this :-
    DECLARE
    @StartDate DATETIME,
    @EndDate DATETIME,
    @Dummy INTEGER
    SELECT TOP 1 @Dummy = DocNum
    FROM OPCH T0
    WHERE T0.DocDate >= [%1]
    AND T0.DocDate <= [%2]
    SELECT
    @StartDate= '[%1]'
    @EndDate = '[%2]'
    SELECT DISTINCT
    T0.DocEntry,
    T0.DocNum AS 'A/P Inv Num',
    CONVERT(VARCHAR(10), T0.DocDate, 3) AS 'Bill Date',
    T0.CardName AS 'Supplier Name',
    -- T1.Dscription AS 'Item Description',
    ----T1.Quantity,
    --T1.Price AS 'Price',
    --T1.TaxCode,
    SUM(T1.LineTotal) AS 'Asscessable Value',
    MAX(T1.TaxCode),
    --t1.vatsum as 'TaxAmount',
    T0.TOTALEXPNS AS [Freight Amount],
    (SUM(T1.LineTotal)+SUM(T1.VATSUM)+T0.TOTALEXPNS+T0.rounddif) as [TotAmt],
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (11,-90)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'BED',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN( -60,12)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'Cess',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (-55,13)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'HeCess',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (5)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'Service',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (6)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'Cess_ST',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (-10)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'HSCess_ST',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (1,15)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'VAT',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType = 4
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'CST',
    T0.Comments
    --,ISNULL(T10.WTCODE,0) AS [WTCODE],ISNULL(T10.RATE,0) AS [RATE],ISNULL(T10.WTAMNT,0) AS [WTAMNT]
    FROM OPCH T0 INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN PCH5 T10 ON T0.DOCENTRY = T10.ABSENTRY
    LEFT JOIN OACT T99 ON T99.ACCTCODE = T1.ACCTCODE
    WHERE T0.DocDate >= @StartDate
    AND T0.DocDate <= @EndDate
    AND T1.TargetType < > 19
    --AND T0.DOCENTRY = 8679
    AND (T99.ACCTname = '[%3]' OR '[%3]' = '')
    GROUP BY T0.DOCENTRY,T0.DOCNUM,T0.DOCDATE,T0.CARDNAME,T0.TOTALEXPNS,T0.ROUNDDIF,T0.COMMENTS
    FOR BROWSE
    Thanks in Advance,
    Bhoopathi.K

    Hi,
    Try this:
    DECLARE
    @StartDate DATETIME,
    @EndDate DATETIME,
    @Dummy INTEGER
    SELECT TOP 1 @Dummy = DocNum
    FROM OPCH T0
    WHERE T0.DocDate >= [%1]
    AND T0.DocDate <= [%2]
    SELECT
    @StartDate= '[%1]'
    @EndDate = '[%2]'
    SELECT DISTINCT
    T0.DocEntry,
    T0.DocNum AS 'A/P Inv Num',
    CONVERT(VARCHAR(10), T0.DocDate, 3) AS 'Bill Date',
    T0.CardName AS 'Supplier Name',
    -- T1.Dscription AS 'Item Description',
    ----T1.Quantity,
    --T1.Price AS 'Price',
    --T1.TaxCode,
    SUM(T1.LineTotal) AS 'Asscessable Value',
    MAX(T1.TaxCode),
    --t1.vatsum as 'TaxAmount',
    T0.TOTALEXPNS AS [Freight Amount],
    (SUM(T1.LineTotal)+SUM(T1.VATSUM)+T0.TOTALEXPNS+T0.rounddif) as [TotAmt],
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (11,-90)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'BED',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN( -60,12)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'Cess',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (-55,13)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'HeCess',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (5)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'Service',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (6)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'Cess_ST',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (-10)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'HSCess_ST',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType IN (1,15)
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'VAT',
    (SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
    FROM PCH4
    WHERE PCH4.StaType = 4
    AND PCH4.DocEntry = T0.DocEntry
    -- AND PCH4.LineNum = T1.LineNum
    ) AS 'CST',
    T0.Comments
    --,ISNULL(T10.WTCODE,0) AS [WTCODE],ISNULL(T10.RATE,0) AS [RATE],ISNULL(T10.WTAMNT,0) AS [WTAMNT]
    FROM OPCH T0 INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN PCH5 T10 ON T0.DOCENTRY = T10.ABSENTRY
    LEFT JOIN OACT T99 ON T99.ACCTCODE = T0.[CtlAccount]
    WHERE T0.DocDate >= @StartDate
    AND T0.DocDate <= @EndDate
    AND T1.TargetType < > 19
    --AND T0.DOCENTRY = 8679
    AND (T99.ACCTname = '[%3]' OR '[%3]' = '') OR  (T99.[AcctCode] = '[%4]' OR '[%4]' = '')
    GROUP BY T0.DOCENTRY,T0.DOCNUM,T0.DOCDATE,T0.CARDNAME,T0.TOTALEXPNS,T0.ROUNDDIF,T0.COMMENTS
    FOR BROWSE
    Thanks & Regards,
    Nagarajan

  • Clean install Lion Server ...set up network accounts correctly....can't log in?

    I recently wiped the system and using internet recovery I did a clean lion server re install ... after configuring user accounts and the server app correctly by the book, I am unable to login on any computer that is joined to the OD server. I set a share point afp://server.ex.ex/Users in workgroup manager as its home directory. When I go to login it tells me it cannot because an error has occured. Yes I have configured all units to allow all network accounts to login on the client end.
    In addition I have all the services activated on the server .app pane .... none of them except only wiki server are able to authenticate successfully against the server.
    It is running through a WRT54G cisco router with the DMZ zone set to its DHCP IP.
    DNS is correct and the account is a dyndns domain name resolving to the router.
    What is happening here?
    Any ideas....

    By the way I also should add that I deleted the old hostname and created a new one but DNS seems good as it points to the server when entered through locally and globally.

  • Foreign exchange reporting : how to include Inhouse Cash Accounts correctly

    Hello,
    I want to report the foreign exchange risk position of a mother company (euro based) which is also hosting the inhouse cash center. This means that the foreign currency balances held by the affiliates with the IHC are part of the fx exposure of the mother company.  For example, a polish affiliate that has a PLN balance of 1 mio PLN (in favour of the affiliate) means a FX SHORT position for the mother company.
    In AISFSS or FTR_DEALPOS you can include Cash Management information.  But it makes no sense to include the IHC accounts of the affiliates in the exposure report of the mother company, because the direction of the exposure of the affiliate account is the opposite of the mother company's exposure. i don't want to reprogram CM to inverse the sign.
    So,  then I thought, ok let' s include the receivables/payables accounts 416xxxx  and 439xxx  that centralize (via F9HL + F9HI ) the affiliates balances in the FI ledger of the mother company.  Unfortunately, these two accounts are not managed in open line item mode.  Accountting department does not accept that we cahnge that setting.t   The consequence of that being that in the CM grouping I get the countervalue in euro instead of the balances in the respective foreign currencies.
    Instead of having the IHC balances aggregated in one Accounts Receivable and one Accounts Payable account, Accounting department would agree to have one G/L account per trading partner/ currency, which would be a perfect reflection of a single IHC account.
    I had been told that there would be a T-code (in SAP Inhouse Cash) that allows you to re-split in FI the affiliate balances per currency/trading partner.  If this works, then I can pick the currency balances up in original currency via CM grouping.
    Does anyone know about this T-code (to split), does anyone have documentation  or does anyone have an alternative solution (no ABAP programming).
    Thanks a lot for your help.
    Carl

    Hi,
    Yes you can use this report IHC_TOOL_TRAPO (Note number 750700) and do the necessary settings in the corresponding custimizing table.  Though I am not sure why you want a separate valuation according to different trading partners.  Are they posting to different G/L accounts for different TPs for the account in same currency? 
    Anyway, you can maintain the setting only for those affialiates having accounts in foreign currency.  Also I guess it should be enough if you maintain only for final postings account and not for intermediate postings (provisional) in case if you are having 2 accounts.  You can also check in the customizing node mentioned in the previous post - you can use the additional key field and use a custom coding in case if you feel the report is not going to be suffecient.
    Regards,
    Ravi
    Edited by: Ravishankar Ramamurthy on Jan 21, 2011 5:00 PM

  • I have followed the instructions and set up mail account correctly but I can send or receive emails

    I am experiencing probelms with my mail account since setting up my iphone. My mail account now wont recognise my username or password. Can anyone help?

    If this is an iPhone account, you might have better luck getting an answer on the iPhone community.

  • Is it possible to manage 3-4 iPods from the same laptop?  Each iPod owner needs their own iTunes account, correct?

    I've used an iPod for many years, and now that my kids are old enough to enjoy their own, with their own music, I want to to buy each one their own shuffle.  I just don't know if it's possible to manage all of these different music libraries from one computer.  Any advice is appreciated.  Thanks, Jim

    Entirely possible.  If you create a different Windows login for each user, then everyone will have a distinct library by default, located in:
    C:\Users\user1/Music\iTunes
    C:\Users\user2/Music\iTunes
    etc.
    In this scenario it is a good idea to disable fast user switching in iTunes, so that you can't have multiple users logged in and running iTunes at the same time.  This is probably the best solution, especially as it provides the simplest upgrade path to the time when your children have their own computers.  The only real downside here is that it is a little more difficult (and not automatic) to share music between the libraries.
    You can also have multiple iTunes libraries under a single Windows login, though this is a little more awkward to set up and use - everyone will need to hold down SHIFT while starting iTunes and select his/her library based on the location of the appropriate iTunes database file.
    Last option would be to have one Windows login, one iTunes library, and just use different playlists associated with each user's iPod.

  • Account issues for over a year.

    This occurence started over a year ago, March of 2013.
    Went looking at laptops for my niece's birthday and we were all playing with the tablet set-ups and got hooked. I was pretty well-off then so I went on a splurge and spent around 2,000 on new tablets for myself and some family members, warranties and GS plans to boot. No rewards card at the time, they informed me of the points system and how I'd receive them for that purchase if I set one up so of course I did. 
    Few months later wanting to buy something, checking on my points (assuming I had quite a bit considering how much I spent then and since then) and there was NO purchases on my account history, no points. Find out my account had been mixed with someone else's name and spent hours at best buy customer service one day correcting the situation. Everything was fine but I still hadn't spent my points yet. Someone mentioned something about points giving out email certificates, but I have not received a single one of those from Best Buy ever. 
    Come this past week, purchase an xbox one bundle with GCU. Planned today to buy a video game and take advantage of the points and the bonus from GCU but, wow. I have no points, no GCU on my account, and my account again is showing that I have never purchased anything except a can of aerosol nearly a year ago. They "fixed" the situation by applying a brand new GCU onto my account, nope, still no GCU on my account and still out of those thousands of points.Looking at my receipts I notice they all say the party's name who's account mine was originally mixed with, which they were supposed to have corrected two times now?
    This has become aggravating, and I am unsure of what I'm supposed to do in this situation now. What am I going to do to go about points I never received, the fact they can't seem to process my account correctly?

    Hello GotThesePills,
    I'm glad you have found our forum.  Thank you for visiting, and thank you too for your message.  I'll be happy to work with you to get your account straightened out.
    I am sorry to hear of the trouble you've had with your My Best Buy account.  It can certainly be frustrating to not see any certificates from your earned points.  I would likewise be upset to learn that the Gamers Club Unlocked membership I purchased was not properly associated with my account.
    I'll need a bit of information so that I can see what is going on with your account, so I will be sending you a private message to continue that conversation.  Please watch for that message shortly.  To check your messages, while logged into the forum click on the envelope in the upper right corner of the page.  
    Thank you for being a My Best Buy member.
    Regards,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Family Sharing vs using single iTunes account - can I switch?

    I currently have my iTunes account used on my devices, and also use it for my daughters' iTunes account on their iPods. They do not have their own iCloud account at  all at this point.
    I am planning to give them their own iCloud accounts with their new iPods at Christmas, and want to make sure I understand how Family Sharing works before committing to it. Some of what I have heard about it does not seem to be any better than what I currently do with my wife - we have our own iCloud accounts, but share the same account (mine) for purchasing.
    If I set up my kids (age 10) under family sharing as kids, and would rather still use my account for purchases, is that possible? I assume that I could still enter my credentials into the purchasing section of their iPods, even though they have a kids iCloud account, correct? Or does it somehow lock out the ability to do that if you have the account set up for a child?
    I probably will just use the family sharing setup, with their accounts set up for purchasing, but with me approving, but I want to be sure I can still put my account in instead as well, just in case I want more "control" over what they get.
    Does anyone know?

    Has anyone tried this?
    If you have a child Apple ID set up under family share, can you put in your (adult) Apple ID into their "iTunes & App Store" section on their iPod, to effectively bypass the adult consent, but require me to put in MY password for their purchases on their device?
    I want to give them their own Apple ID so they are not sharing mine for data. I am not wanting to fake their ages and set up their own adult account, but not sure I want to fully embrace the apparently cludgy Family Sharing setup by Apple.
    If someone has their child set up under family sharing, can you try going to their "iTunes & App Store" section, and see if it would even allow you to enter in your iCloud credentials, or if it is locked out by family share? You shouldn't have to actually submit it to see.

  • Using Mail to monitor my work e-mail account

    My employer has its own e-mail server and it uses XP/Outlook. I want all of my work e-mail to show up in my Mac Mail account. (I have my MacBook Pro connected to the internet at all times.)
    I went through the File/Add Account thing. I then got the followoing message:
    "The server error encountered was: The connection to the server "mail.[my employer's name].com" on port 995 timed out."
    Here are my questions:
    1. Regarding the message, is that a problem with my employer's server or something I did?
    2. When I compose a message in Mail, how can I choose whether it is sent from my personal Mail account or my employer's account?
    3. When I reply to a message, is it automatically sent from the same account it came into?

    > 1. Regarding the message, is that a problem with my employer's
    server or something I did?
    Most likely, you haven’t set up the account correctly. Are you sure it provides POP access and uses SSL, which is how you appear to have configured it?
    2. When I compose a message in Mail, how can I choose whether it
    is sent from my personal Mail account or my employer's account?
    This is explained in Mail Help’s “Setting the account your email is sent from” article.
    3. When I reply to a message, is it automatically sent from the
    same account it came into?
    This is explained in Mail Help’s “How is the "From" address determined in a new message or a reply?” article.

  • HT4436 Every time I try to access my icloud account it tells me Verifying, then it says, Unable to Verify account.  What did I do wrong?

    I bought my iPad several months ago and I thought I set up my iCloud account correctly but I may not have, as I was fairly new to this venture.
    Every time I try to access it, it tells me, Verifying and after a little while it tells me Unable to Verify Account, so I guess I don't have something right.
    This is Problem (1)
    Problem (2) is,  I can't add Contacts to my Contacts APP.  Now I asked a Person at the ATT store where I purchased my iPad, she showed me what
    to do, I said that was easy enough, and when I got home I went to my tablet and My APP did not have a (+) Sign at the bottom of the page like hers
    did, and hers looked so easy.  Is my CONTACT APP not downloaded correctly, or is it an old version? Because it came on my Tablet already?  So How do I
    ADD my Contacts?
    Thanks for all the Help.
    Like I said, I am new to this stuff and any help you can give me will be greatly appreciated!
    Sincerely;
    Barbra Bryant
    P.S.
    My Apple ID is  ([email protected]), But my Email address is ([email protected]) could this be the problem?  If so, now what do I do?
    I also have a Google account.  It is ([email protected]) but all my email comes to the Yahoo account.  HELP!!!  Please!
    I hope all this makes sense.

    Contact iTunes Support.
    iTunes - Support - Contact Us
    B-rock

  • Account Hacked - Skype Support Useless - NO REFUND...

    So my skype account was hacked last week, just found out right now. Luckly my credit card on file had expired so they only ate $8. To make it worse, the Skype login and password change system on the website isn't working properly (even though their heart beat page says its fixed), and Skype support kept trying shift the login problems on me. Oh... and no refunds? Hmmm... well... no more money for you Skype. Not one cent ever again. Its computer to computer chats from now on, and I'll find a better VOIP provider.
    So here's the transcript of my "support" chat... useless or very useless? you be the judge...
    Connected with John Felix H.
    Thank you for contacting Skype Customer Support!
    17:51:02 pereljon says,
    hi
    17:51:03 System says,
    Please hold for the next available Live Support Agent.
    17:51:33 John Felix H. says,
    Hello! Welcome to Skype Live Support! My name is John Felix H. May I have your Skype name and the registered email address on the account, please?
    17:52:10 pereljon says,
    [email protected]
    17:52:14 pereljon says,
    pereljon
    17:52:53 John Felix H. says,
    So I can address you appropriately, may I also have your first name, please.
    17:52:58 pereljon says,
    xxx
    17:53:43 John Felix H. says,
    Okay. Thank you for providing me some information here, xxx.
    17:53:53 John Felix H. says,
    How can I make you smile today?
    17:54:08 pereljon says,
    I'm locked out of my account
    17:54:17 pereljon says,
    suspended.
    17:54:28 pereljon says,
    need to know whats up and get it activated asap
    17:55:03 John Felix H. says,
    Oh. I am sorry to hear that your account was suspended. I will be more than willing to check this for you here what went wrong.
    17:55:58 John Felix H. says,
    Let me just ask you. Where are you located right now?
    17:56:47 pereljon says,
    xxx
    17:57:13 John Felix H. says,
    In xxxx?
    17:57:31 pereljon says,
    yes
    17:59:08 John Felix H. says,
    Okay. When was your last call made?
    17:59:51 pereljon says,
    not sure... it was probably to mexico.
    18:00:07 pereljon says,
    I'd have to log in to check
    18:00:53 John Felix H. says,
    Okay. Please do so.
    18:01:19 John Felix H. says,
    You can view your call history by signing in to your account:
    https://secure.skype.com/account/call-history
    18:03:49 pereljon says,
    something is up with logging in... very slow... is there a problem with skype?
    18:05:39 John Felix H. says,
    Oh. Really? I see that our system is working fine here. Connection is good.
    18:05:54 John Felix H. says,
    Why exactly is the problem you have now/
    18:06:03 pereljon says,
    Signing in failed. For your security, your account has been suspended. Click here for more information
    18:06:13 pereljon says,
    Can't log in.
    18:08:29 pereljon says,
    Hello?
    18:08:44 John Felix H. says,
    Oh. I am sorry to hear that. My mistake here.
    18:09:24 John Felix H. says,
    Okay. What month the last was made?
    18:09:58 pereljon says,
    I think i tried to make a call this month, but I can only check on the account.
    18:10:29 John Felix H. says,
    Okay. What number was that?
    18:10:47 pereljon says,
    Its on my skype... its in mexico.
    18:10:59 John Felix H. says,
    Okay.
    18:12:34 John Felix H. says,
    There was a call made to Hongkong this month. Is this authorized call?
    18:12:40 pereljon says,
    No
    18:12:59 John Felix H. says,
    Oh. Okay. Hold on.
    18:14:44 John Felix H. says,
    In order for us to reinstate your account, we need to verify some information here.
    18:15:22 pereljon says,
    yes
    18:15:34 John Felix H. says,
    Okay.
    18:15:59 John Felix H. says,
    We need the following information for verification:
    18:16:19 John Felix H. says,
    1. The first six and last four digits of the credit card used to make your Skype purchase (please do not send the full credit card number)
    18:17:03 pereljon says,
    xxx
    18:17:09 pereljon says,
    xxxx
    18:17:24 John Felix H. says,
    The name of the cardholder as indicated on the card
    18:17:31 pereljon says,
    xxx
    18:17:49 John Felix H. says,
    The issuing country of the card
    18:18:02 pereljon says,
    USA
    18:18:09 John Felix H. says,
    The billing address on the account.
    18:18:30 pereljon says,
    xxx
    18:19:04 John Felix H. says,
    Okay. Thank you.
    18:19:29 John Felix H. says,
    Please continue to hold. I'll be back.
    18:20:14 John Felix H. says,
    Thanks for waiting!
    18:20:19 John Felix H. says,
    To ensure that only you have access to your Skype account, we suggest that you change your password through this link:
    https://secure.skype.com/account/password-reset-request
    18:20:34 John Felix H. says,
    When done resetting password, please confirm here.
    18:20:39 John Felix H. says,
    I will wait for you.
    18:21:55 pereljon says,
    that page isn't loading
    18:22:29 John Felix H. says,
    I am sorry to hear that.
    18:22:44 John Felix H. says,
    What browser are you using?
    18:23:11 pereljon says,
    firefox, chrome, safari. tried them all... its not the browser...
    18:23:31 pereljon says,
    just loaded on firefox
    18:23:49 John Felix H. says,
    Did you clear your browsing history?
    18:25:58 pereljon says,
    Looks like on August 6, 2012 12:51:24 AM PDT I received an email from Skype in Chinese or something.
    18:26:41 John Felix H. says,
    Okay. What was the content of the email?
    18:26:55 pereljon says,
    The password reset isn't working... the skype login system is still messed up.
    18:27:26 pereljon says,
    Web Login Problem
    By My status Leonas Sendrauskas on August 14, 2012.
    We are investigating a problem in our web login process. For the majority of our users that attempt to access Skype through login.skype.com the page will not load. We are working on fixing this and will report once it has been resolved. We are sincerely sorry for the inconvenience this causes to our users.
    18:27:41 pereljon says,
    I don't know what the content is... I don't know chinese.
    18:28:47 pereljon says,
    Here it is translated by google.
    18:28:48 pereljon says,
    This e-mail automatically sent, do not reply.
    Hello, Xxxxx
    Your Skype account from unauthorized activities
    Your account has been suspended.
    Skype attaches great importance to the security of your account. We recently discovered that your account has unauthorized activity, for your protection, we have suspended your account.
    Learn more about how to re-activate their account information.
    Learn more about account protection.
    In connection
    Skype of all my colleagues
    Forgot Password · Account Settings · Help · Terms of Use Privacy
    Get Skype Help
    You can not reply to this email directly, but you can contact us through our Help plates.
    You can also visit our forum.
    Protect your password
    Skype employees will never ask you for your password via email. Only log on to Skype or our website shopping or check your account, you only need to enter the password. You will always be connected through a secure log in, and we ask that you pay attention to the address of the browser's address bar must begin to https://secure.skype.com, should show a padlock icon, said it is using a secure connection.
    Wary of requests for account information or e-mail of emergency action. Carefully address non-routine web site and the site of the unofficial Skype download. Www.skype.com or use the Skype application upgrade feature to get the security updates and product upgrades.
    © 2003-2012 Skype Limited.
    Skype Inc., 3210 Porter Drive, Palo Alto, California, 94304, USA.
    Skype, related trademarks and logos and the "S" marks ar
    18:29:24 pereljon says,
    The password change page isn't working...
    18:30:19 John Felix H. says,
    Oh. I am sorry that you are having problem resetting password here.
    18:30:39 John Felix H. says,
    Let me try to resend you this.
    18:33:19 John Felix H. says,
    Hold on please.
    18:37:14 John Felix H. says,
    Please try to reset your password here: http://www.skype.com/go/forgotpassword
    18:38:35 pereljon says,
    nothing
    18:39:59 John Felix H. says,
    I am sorry for the temporary issue here.
    18:40:39 John Felix H. says,
    We advice you to restart your computer and relaunch browser.
    18:40:49 pereljon says,
    I've tried it on two computers.
    18:40:59 John Felix H. says,
    You can also try to clear cache again.
    18:41:36 pereljon says,
    Its not on my side...
    18:43:29 John Felix H. says,
    We do apologize for the problem here.
    18:44:29 pereljon says,
    I was able to log in on the skype app on my phone. my skype credit is all gone except for 5 cents
    18:45:24 John Felix H. says,
    We advice you to reset your password at a later time as we are experiencing technical problem here.
    18:45:56 pereljon says,
    what about my skype credit
    18:46:29 pereljon says,
    and how did my account get compromised?
    18:48:10 pereljon says,
    last call I see on my skype app is 45 seconds on july 31 to "xxx", then before that july 25 for 6 minutes 7 seconds to "xxx", then before that a failed call to mexico.
    18:48:19 John Felix H. says,
    You do not have to worry about your account as this temporarily suspended and no one can access it
    18:48:46 pereljon says,
    I just signed in on my iphone and on the skype app on my mac
    18:49:02 pereljon says,
    but I can't log in on the web
    18:51:24 John Felix H. says,
    Please log-in to your account on one device and log-out from other device.
    18:52:17 pereljon says,
    did it.
    18:52:24 John Felix H. says,
    But let me remind you, you cannot yet call to landline and mobile phone and cannot purchase Skype products as your account is still restricted.
    18:53:03 pereljon says,
    Aug 05 16:15 +886913860051 $8.580 <- that call was not mine
    18:53:49 John Felix H. says,
    We do apologize for the incident here.
    18:54:22 John Felix H. says,
    Unfortunately we are not able to refund any money that may have been lost due to this incident.
    Skype users should maintain their own security systems on private computers. In order to avoid such incidents, Skype strongly advises you to regularly update your PC's security software - such as firewalls and anti-virus programs - and to pay attention to safeguarding your Skype account.
    For more information on staying secure, please visit:
    http://www.skype.com/go/security/
    18:54:25 pereljon says,
    was able to change my password from within the Mac Skype app
    18:55:44 John Felix H. says,
    Oh. Really. Just now?
    18:56:19 pereljon says,
    through the "Show Account" -> "Change your password" on the Skype application
    18:56:54 John Felix H. says,
    Okay. Thanks. Please hold on a minute.
    18:57:44 John Felix H. says,
    Okay. We have successfully reinstated your account. You can now purchase Skype products and make calls to landline and mobile.
    18:57:48 pereljon says,
    Jul 30 03:06 +xxxx $0.080 this call was me.
    18:57:55 pereljon says,
    Aug 05 16:15 +886913860051 $8.580 <- that call was not mine
    18:58:07 pereljon says,
    I need a refund of $8.580
    18:58:24 John Felix H. says,
    By the way, are you a member of Skype Manager account?
    18:59:10 pereljon says,
    Yes. But it hasn't been used in a while.
    18:59:49 John Felix H. says,
    Okay. So you are connected to this business account, correct?
    19:00:20 pereljon says,
    SHould be. But I can't log into the web site.
    19:01:44 John Felix H. says,
    I am sorry. You cannot log-in yet to your account?
    19:01:55 pereljon says,
    not on the website.
    19:01:59 pereljon says,
    the apps work.
    19:02:34 John Felix H. says,
    I am sorry to here that.
    19:02:43 pereljon says,
    I'm skype manager for venables bell & partners.
    19:03:04 pereljon says,
    I still need my refund.
    19:03:09 John Felix H. says,
    Which device or computer are you using to log-in?
    19:03:20 pereljon says,
    mac os
    19:03:23 pereljon says,
    skype app
    19:03:49 John Felix H. says,
    Are you also log-in to other device?
    19:04:15 pereljon says,
    was in on my iphone.
    19:04:19 pereljon says,
    I'm logged out now
    19:05:04 John Felix H. says,
    Okay. Try to exit Skype app from your Mac and relaunch.
    19:05:57 pereljon says,
    done... and?
    19:06:39 John Felix H. says,
    Then try to sign-in to your account with the new password.
    19:06:57 pereljon says,
    on the website?
    19:07:41 pereljon says,
    website login isn't working
    19:09:14 John Felix H. says,
    No. You said you cannot log-in using your application, correct?
    19:10:18 pereljon says,
    application works. website no. iphone works
    19:11:54 John Felix H. says,
    I am sorry. Which device are you using to log-in the website.
    19:12:12 pereljon says,
    Web browser on mac.
    19:13:59 John Felix H. says,
    Please try to clear your browsing history again on that device.
    19:14:33 pereljon says,
    just got in
    19:16:00 pereljon says,
    so what now?
    19:17:09 John Felix H. says,
    Okay. Great!
    19:17:24 John Felix H. says,
    So you can now use your account.
    19:17:34 pereljon says,
    I need a REFUND
    19:17:40 pereljon says,
    8.580
    19:18:01 pereljon says,
    I did not call Taiwan on Aug 5
    19:18:09 John Felix H. says,
    So you need a refund of $8.580 worth of call?
    19:18:18 pereljon says,
    YES
    19:18:33 pereljon says,
    And I need to know HOW my account was hacked
    19:19:29 John Felix H. says,
    Okay. Let me see what we can do here.
    19:20:04 John Felix H. says,
    Unfortunately we are not able to refund any money that may have been lost due to this incident.
    Skype users should maintain their own security systems on private computers. In order to avoid such incidents, Skype strongly advises you to regularly update your PC's security software - such as firewalls and anti-virus programs - and to pay attention to safeguarding your Skype account.
    For more information on staying secure, please visit:
    http://www.skype.com/go/security/
    19:20:42 pereljon says,
    Then I'll be canceling my account. You obviously have security issues.
    19:21:29 John Felix H. says,
    I am sorry for the incident here. We do not exactly know the reason why your account has been access without your permission.
    19:21:39 John Felix H. says,
    So you want to cancel your account?
    pereljon says,
    Useless

    Oh... and the shmuck went ahead and cancelled my account even though I didn't give him the go ahead... I still needed to get my phone numbers out of the account.... WHAT A MONKEY!!! Thanks so much "John Felix H." your customer support is underwhelming to the extreme.

  • Price difference account

    Dear All,
    I have one query regarding purchase offsetting account EKG.
    I created PO with frieght value and the material master is maintained with standard price.When I do GR it will hit the following accounts.
    Post key         Account          Short desc                             amount in local currency
    89                  11430000       Inventory(BSX)                                30117
    95                  12105000       GR/IR clearing(WRX)                       32400
    85                  14804000       Price difference(PRD)                        2898
    40                  14800040       Purchase good for resale (EIN)         30117
    50                  14800041       Purchase good resale clearing(EKG) 30733
    50                  12133000       Prov inbound frieght(FR1)                    615
    40                  14800040       Purchase goods for resale(FRE)          615
    Now my issue is I dont want to post frieght value to purcahse good resale clearing account(EKG) it shopuld be 30117 insted of 30733 and the same amount should get redused in WRX it should be 31785 instaed of 32400.
    Please tell me how I can rectify this error.
    Thanks in Advance,
    Babu

    Hi
    If you deactivate the purchase account management then the accounts trigerred are
    89 11430000 Inventory(BSX) 30117
    95 12105000 GR/IR clearing(WRX) 32400
    85 14804000 Price difference(PRD) 2898
    50 12133000 Prov inbound frieght(FR1) 615
    Is this Right.
    As you have activated the Purcahse account managment they are trigerring in this ways
    89 11430000 Inventory(BSX) 30117
    95 12105000 GR/IR clearing(WRX) 32400
    85 14804000 Price difference(PRD) 2898
    50 12133000 Prov inbound frieght(FR1) 615
    40 14800040 Purchase good for resale (EIN) 30117
    50 14800041 Purchase good resale clearing(EKG) 30733
    40 14800040 Purchase goods for resale(FRE) 615
    I have just rearranged the lines, to show you that the sytem is triggering the accounts correctly and this is the way it should be rather than your calculations. I dont know how you have to come to that calculations. But WRX will alwayts trigger the amount what you have on the PO.
    Thanks & regards
    Kishore

Maybe you are looking for

  • Problem with starting the Web Dynpro Application

    Hello, I have a problem with my web dynpro application, which is in our SAP Portal. We have three different systems (development, test, production). In production always the follewing error message occurs: The URL https://zsil2401.servers.wacker.corp

  • Open iTunes when iPhone/Pad connected not working

    iTunes recently quit auto opening when I connect my iPhone or iPad. I'm not sure exactly when it started happening, but I'm guessing it was after a recent iTunes or other software update. The Prevent ipad etc from syncing box under iTunes -> Preferen

  • ALV-User defined Toolbars

    Hi Friends, How to add a user defined toolbar for ALV programs. Please help me. I need very urgent. Regards Praveen

  • How to resolve a many to many relationship in Universe

    I have 2 tables RBU table that contains Area Region Country Sample Values Area                       Region     Country OMD Perimeter     M6     Netherlands OMD Perimeter     G10     Netherlands OMD Perimeter     M5     Netherlands Media Spend Table

  • Sprint : Tour vs. Curve 8330, Japanese

    Hey guys, I just recieved my Tour last night and have been tinkering with it on and off for the last day. It's pretty nice that Japanese fonts are supported out of the box (reading emails/texts/websites/etc), but I see that there is no support for in