PCA - GLPCA/GLPCT - Transaction curr = 0, all other currency equal $$$$$

Hello all, i have a issue i need help on.  I have a document that was created in 2004.  Within the tables, i see the document has a zero value for Transactional currency - TSL, but i have over million dollars in both Comp code (HSL) and Profit Center currency (KSL).  The Business Transaction is PRC5 - Profit Center document entry.  When i look on the system, it doesn't have a reference document number like all my other postings.  Now i was thinking it was entered thru 9KE0 transaction, however i can not get past entering in a Transactional currency and the system populates the other currencies.  We just upgraded to ECC6, and at the time of this entry, we were on 4.6, so not sure if that transaction was different and allowed posting only in a cretain currency type.
Has anyone every had this issue before, and how did they fix it.  I don't believe it is a currencty translation, as that PC is only been posted to in USD.
Thanks,
Sean

Check out these table
EC-PCA (KE1)         Profit Center Accounting
CEPC                Profit Center Master Data Table
CEPCT                Texts for Profit Center Master DATA
CEPC_BUKRS           Assignment of Profit Center
GLPCA                EC-PCA: Actual Line Items      
GLPCC                EC-PCA: Transaction Attributes
GLPCO                EC-PCA: Object Table for Account 
GLPCP                EC-PCA: Plan Line Items          
EC-PCA BS (KE1C)     PCA Basic Settings: Customizing for Profit Center    
                                Accounting
A141                 Dependent on Material and Receive
A142                 Dependent on Material           
A143                 Dependent on Material Group 
check wether u r getting curect curency or not

Similar Messages

  • Balance sheet accounts not updating in GLPCA / GLPCT

    Hello,
    I am working on MySAP 6.0 version and posting FI document giving profit center as an account assignment.
    When I check the table entries in GLPCA and GLPCT I could see only P&L accounts updated in these tables but not the balance sheet accounts viz Bank Account.
    To be more elaborate if my entry is as under
    Dr Expense Account (PCA1) GLPCA / GLPCT  (It is updated)
    Cr Bank Account (PCA2) GLPCA / GLPCT (ignoring this line item)
    However if I post a similar entry directly into PCA module these tables do get updated with balance sheet accounts.
    Would anybody have any reasoning for this?

    HI
    Originally till 4.7 SAP had only month end transaction to push many of balance sheet items to PCA only from the new versions it is having this online transfer usinf assignment of PCA to Gl accounts and then deriving PCA through splitting rules. Thats is why P7L items automatically flow however for balance sheet items especially creditors and debtors, bank and others it requires proper derivation.
    Even in Balance sheet Asset will flow automatically
    Anand

  • Difference between GLPCA & GLPCT

    Hello,
    We have a difference between GLPCA & GLPCT. The GLPCT has an amount greate than 91301.69 than GLPCA.
    Please explain how is this possible as GLPCA is line items of Profit Center documents Table & GLPCT is Profit Center Totals Table.
    When we went into the details of table GLPCT we found out an exact line where this amount is appearing in fields HSLVT & KSLVT which have headers "In co. code currency" and "In pctr local curr.".
    Please let me know how to trace this difference to a particular line in FI & how to resolve it.
    Thanks & Regards
    Shreenath

    Hello Daniela,
    Thanks a lot for your reply. This is very useful. I ran the report & found that there is no difference between GLPCA & GLPCT for the particular account where the difference lies.
    It would be very hhelpful if you could guide as to what is the meaning of HSVLT & KSVLT fields as mentioned earlier.
    The main issue lies in a report which we are executing. In it when we take total of the account by Totals where it is picking up all fields till the period which we are mentioning in report selection.
    However in Actuals this figure is missing which is falling in HSLVT. So as the report RGUSLSEP which proves that there is no difference between the 2 table still why would the output not match.
    Thanks & Regards
    Shreenath

  • Add crash on one client and cause all other SAP clients to freeze

    Hi All
    I have a big problem that I hope someone might help solve...
    We have a customer adding 2000 invoices in 100-300 batches using a Add-on we have created.
    Our add-on does what it is suppose to do, but at random intervals (more when many users are working), the add-on freeze (it does not crash with an error despite we have try/catch all over... Instead the addon goes down to use zero in CPU and nothing is added to the database)... This is a big problem since the add-on use transactions and if the "crash" happens within a transaction all other clients freeze (not able to do anything).... if the add-on process is killed all client "wakes up"...
    The customer is running SBO2007A PL42 and have a 27GB database with around 15 simultanious users
    Anyone:
    - Who have experience somthing similar?
    - Know any solutions / partial solution?
    Kind Regards
    Rasmus Wulff Jensen

    I just upgraded to 2007A PL42 and SQL2005 last week. Since then I've had the same issue, continuous locks on the tables. I use the DIAPI extensivly. If one person is using the system then I have no problems. Once additional users login the application freezes and nothing works.
    I see that locks are created on the entire tables; you'll notice extensive "lock escallation" ocurring in profiler. Once the table is locked and another related table becomes locked by another process then you have infinite wait periods to release locks.
    Even though you are updating Invoices, SBO still updates the OITM tables with the IsCommited, Inventory, etc values. The OCRD and many other tables are also affected.
    The same application that I'm using ran perfectly in 2005A SQL 2000. I don't know whether this is a SQL2005 or SAP (or both) issue at this point.
    My only work around has been to restart the SQL service and tell everyone to use our application one at a time. I hope that we can find some answers soon.
    It may have something to do with the DI API COM Add/Modify calls throwing errors and leaving open locks.

  • Is there a transaction to compile all programs after upgrade?

    Hi all,
    Does anyone know of a transaction to compile all programs after an upgrade? One thing our users hate is that little clock in the lower left corner that says 'Compiling...' and after an upgrade this happens for every single program and transaction they start... is there a way to avoid this?
    thanks in advance,
    Ioana

    Hi Ioana,
    if you would to generate custom code as well I can offer you this report.
    The output list shows only objects with generation errors.
    This might interesting in case of a release change because ABAP is getting always more strict ...
    <pre>
    Report  YYQB0095
    Author: F. Meyer
    Generate program code
    REPORT  YYQB0095
                line-size 255
                NO STANDARD PAGE HEADING.
    TABLES: TADIR, TRDIR.
    DATA: BEGIN OF T_TRDIR OCCURS 0.
            INCLUDE STRUCTURE TRDIR.
    DATA: END OF T_TRDIR.
    DATA: LINE_COUNT TYPE I,
          ERROR_COUNT TYPE I.
    DATA: SYN_INCLUDE LIKE SY-REPID,
          SYN_LINE    LIKE SY-TABIX,
          SYN_WORD(10),
          SYN_OFFS    LIKE SY-TABIX,
          SYN_MESS(240),
          SYN_SUBRC   LIKE SY-SUBRC.
    data: g_field(16).
    data: ctr0 type i, ctr1 type i.
    SELECT-OPTIONS: S_NAME FOR TRDIR-NAME obligatory,
                    S_SUBC FOR TRDIR-SUBC,
                    S_APPL FOR TRDIR-APPL,
                    S_CNAM FOR TRDIR-CNAM.
    START-OF-SELECTION.
      SELECT * FROM  TRDIR INTO TABLE T_TRDIR
             WHERE  NAME        IN S_NAME
             AND    SUBC        IN S_SUBC
             AND    APPL        IN S_APPL
             AND    CNAM        IN S_CNAM.
      LOOP AT T_TRDIR.
        PERFORM GENERATE_REPORT.
      ENDLOOP.
      write: / '**** End-of-Generate ****', ctr0, ctr1, at sy-linsz space.
    FORM GENERATE_REPORT                                          *
    FORM GENERATE_REPORT.
      IF T_TRDIR-SUBC = 'I' OR             "Include-Programm
        T_TRDIR-SUBC = 'P'.                "Prolog-Programm
        EXIT.
      ENDIF.
      add 1 to ctr0.
      GENERATE REPORT T_TRDIR-NAME
                      MESSAGE SYN_MESS
                      LINE    SYN_LINE
                      WORD    SYN_WORD
                      INCLUDE SYN_INCLUDE.
      IF SY-SUBRC = 0.                     "Generation OK.
    do nothing
      ELSEIF SY-SUBRC = 04 OR              "Cancel because of syntax error
             SY-SUBRC = 08
             or sy-subrc = 12
             or sy-subrc = 16.
             add 1 to ctr1.
        SELECT SINGLE * FROM  TADIR
               WHERE  PGMID       = 'R3TR'
               AND    OBJECT      = 'PROG'
               AND    OBJ_NAME    = T_TRDIR-NAME.
        WRITE: /(9) T_TRDIR-NAME, SPACE,
                    T_TRDIR-SUBC, SPACE,
                    T_TRDIR-APPL, SPACE,
                (5) TADIR-DEVCLASS, SPACE,
               (10) T_TRDIR-CNAM,
                    T_TRDIR-CDAT, SPACE,
               (10) T_TRDIR-UNAM,
                    T_TRDIR-UDAT,
                    space.
        WRITE: (9) SYN_INCLUDE, (140) SYN_MESS.
        hide t_trdir-name.
       SKIP 1.
      ENDIF.
    ENDFORM.
    TOP OF PAGE
    TOP-OF-PAGE.
    CALL FUNCTION 'Y_ZQX_LIST_HEADER'.
                    <b>write you own header line here ..</b>
    AT LINE SELECTION
    at line-selection.
      get cursor field g_field.
      if g_field = 'T_TRDIR-NAME'.
        SET PARAMETER ID 'RID' FIELD T_TRDIR-NAME.
        CALL TRANSACTION 'SE38'.
      endif.
    </pre>
    Regards
    Ferdi

  • Reflect the details of data in same transaction but in some other tab

    Hi Experts,
    I am trying to update some data in the transaction IW32 (tab "Enhancemnt") and wants to reflect the details of that data in the same transaction but in some other tab "Objects", before saving the changes i.e. as soon as I click on "Objects" tab, it should get reflected.
    for this I hav used a Bapi at the screen exit, but the problem is that if I try to commit it, then the data after fullfillment of my requirment doesn't get saved even if I try to save it.
    and if i dont use commit then it won't be possible to save and reflect the changes as reqd.
    Waiting for your skillfull sugesstions at the earliest.

    Hi ,
    data mismatch is kind of short dump error .. check for  short dumps in st22 . are you getting all the short dumps from same source system.. then check the system performance of that system st04,
    and rather then checking from psa .. you can check the job overview of the load ..and check wether its progressing or not .. you can make the simply red and repeat it ..but if the loads are through psa then its betther you push it from psa rather then restarting the laod again it will take more time ..
    Regards,
    shikha

  • What is the transaction to trace all the function module and its returned m

    HI ,
    What is the transaction to trace ALL the function module and its returned messages in a program/transaction execution?
    Thank you.

    You can use this function module for that purpose.
    RS_CROSSREFERENCE

  • What is the transaction to view all the customer,i want customer list

    Hi All,
          Is there any transaction to view all the customer pertaining to a single comany code.
    Thx
    venu

    Dear Venu,
    Try using T-Code - S-ALR_87012179.
    This would give you list of Customer for a customers.
    Or else,
    Go to SE16 & enter tabke KNA1.
    Here you can gget list of all Customer codes, names & other details.
    Hope this helps,
    Reward if useful...
    Thanks,
    Jignesh mehta

  • My BDOCs(transaction smw01) are all waiting with yellow status

    I don't know why my BDOCs(transaction smw01) are all waiting with yellow status. Shouldn't they be automatically transfering data to my data source. If i manually process the BDOC then data goes to the datasource which can be seen via transaction RSA3. Help?

    Hi Kaushal,
    I am also facing the similar problem as Prakash, I don't know why my Bdocs are all waiting with yellow status in smw01.I followed your steps but in SMOHQUEUE the status of the queue demon is Hold because of this the status of Bdocs are yellow.If yes would you pls tell me the steps to turn it to green.If i manually do(Reprocess or register that queue in smqr) everything is working fine but is there any way we can turn Bdocs from yellow to green automatically.I appreciate it in advance. If you find any doc. pls fwd it to [email protected]
    Thanks a lot
    With Regards
    Nagamani.

  • Trying to delete file from trash but get this: The operation can't be completed because the item "File name" is in use. All other files delete except this one. Please help

    Trying to delete file from trash but get this: The operation can’t be completed because the item “File name” is in use. All other files delete except this one. Please help

    Maybe some help here:
    http://osxdaily.com/2012/07/19/force-empty-trash-in-mac-os-x-when-file-is-locked -or-in-use//

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • I have a macbook pro version 10.7.5 and my mailbox will not open at all and comes up with a quit message even though it is not open. how can i get into my account. it works on my iPhone an i have internet and all other functions working on my computer

    I have a macbook pro version 10.7.5 and my mailbox will not open at all and comes up with a quit message even though it is not open. how can i get into my account. it works on my iPhone and i have internet and all other functions working on my computer

    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. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents—the text, not a screenshot. I know the report is long. Please post all of it anyway.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • The window 8 store and all other app open and then close immediately .

    The window 8 store and all other app open and then close immediately .I
    have tried many methods like sfc /scannow,, powershell
    -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\WinStore\AppxManifest.xml without the quotes but , changed registery entries but found no effect . kindly help me !

    Hi ObaidMaki,
    This forum is to discuss problems of Windows Forms. Your question is not related to the topic of this forum.
    I would suggest you posting it in the dedicated Windows Forum
    http://answers.microsoft.com/en-us/windows for more efficient responses, where you can contact Windows experts.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.

    I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.
    I have been reasearching how to do this on the internet, but I haven't found an easy explanation yet.  My family is going crazy over each others imessages being sent to others in the family and not being able to use FaceTime because of conflicting email addresses.  I have read that if each person gets their own iCloud account, this would work.  However, I need to know what to do after I set everyone up with their own iCloud account.  Do I make that the default email address to be contacted or can they still use their hotmail email addresses.  Any help- with easy explanation- would be much appreciated!!

    We do this in my family now.  We have one account for purchases, so it is used to share music and apps (I think that is in Settings/iTunes & App Stores).  Each iDevice has this configured.
    Then, each of us has our own iCloud account that is configured under Settings/iCloud.  That then allows us to have our own Mail/Contacts/Calendars/Reminders/Safari Bookmarks/Notes/Passbook/Photo Stream/Documents & Data/Find My iPhone/and Backup.  That Backup piece is pretty sweet and comes in handly if you replace your iDevice.  You can just restore from it.
    So we all share the Apple Store account but we all have our own iCloud accounts to keep the rest seperate or things like you mentioned are a nightmare.
    In answer to what iCloud does for you: http://www.apple.com/icloud/features/
    Think of it as an internet based ("cloud") area for all of those items listed in my response.  What you need to remember is photo stream only maintans the last 1000 pictures so don't count it as a complete backup solution for your pictures.  Even though I rarely sync with a computer these days, I do still try to sync my phone with iPhoto (I have an iMac) so that I have copies of all of my pictures.  1000 may not stretch as far as it sounds.
    Message was edited by: Michael Pardee

  • HT1695 My daughter's ipod no longer connects to our Wifi, all other devices are fine, it is just this one...

    My daughers ipod can not connect to wifi. ALl other devices in our house do, so I am not sure if this one ahs been dropped too mnay times. All settings are fine, as I manage all the other devices, so I know it is an issue with this ipod.

    Does the iPod connect to other networks?
    Does the iPod see the network?
    Any error messages?
    Do other devices now connect?
    Did the iPod connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

Maybe you are looking for