Problem's in data transfer  to target components in SAP PS - CATS

Hi all
I am trying to transfer data from CATS to PS and CO for month end closing .
I have checked the budget in planned/actual/assigned report, and the
WBS has sufficient budget.
T-code used is CATA, and we are using a varient, and while transfering the data
we are mentioning the cost center instead of employee number.
The following message is displayed which is show in the attachement.
Can  any body please let me know solution for this.
What is difference between "Budget exceeded" and "Budget almost exhausted" ?
How to check the error in the document ?

"What is difference between "Budget exceeded" and "Budget almost exhausted" ?"
The tolerance limits have been configured in such a way that when the budget reaches a certain percentage system will pop errors as you are seeing. For e.g. In your case the system might be issuing the message "Budget Exceeded" when 100% of the defined budget is reached. Similarly, system is issuing  the message "Budget almost exhausted" when 90% of the defined budget is reached. Budget almost exhausted message will still allow you to go ahead with the transfer provided you first correct the error in the document.
"How to check the error in the document ?"
Try to double click on the error message. That should take you to the details of the error.
Why are you using the cost center instead of the Personnel number in order to transfer the hours? General practice is to use the personnel number.
Check tcodes CN30,  COFC and see if you can get to the details of the error.

Similar Messages

  • CATS - Data Transfer to Target Components via CATA - Error "No Data for Trf

    Hello
    I am recording hours via CAT2 on Network Activity. These hours are then approved.
    However, when I run CATA to transfer the hours to CO and PS, I get popup information "No Data for Transfer".
    When i proceed further , i get another popup saying all records were read and saved successfully, and no. of confirmations generated.
    However, when i run CJI3, I do not see any Actual cost line items.
    Please help
    JG

    Hello Joy,
    (1) Perhaps you have on your profile on CAC1, the "Immediate Transfer to HR" flag set.
    This way you have the "Release on Saving" flag set, all the time you save data, it gets transferred directly.
    (2) But, I see that you are having the issue with the CO and PS, so I highly suggest you to check on if the data is on the interface tables.
      a. First you should make sure that the data exists on CATSDB with Status 30.
      b. Then, you should check the data on CATSPS (Interface table for PS) and CATSCO( interface table for CO).
      c. If you don't have the data on these tables there should be no record after all to transfer.
    Regards,
    Bentow.

  • Problems when creating data transfer process for  0EC_CPLAN (Compensation )

    Hi experts,
    I have the infoobject 0EC_CPLAN (Compensation Plan) Active in my BW sistem.
    I tri to create data transfer process for text and atributtes for it, but when i do this i get a "Target 0EC_CPLAN (Type IOBJA) is not active" error message.
    When i double-click on the texts or attributes i recive an  "Administration function is not possible for this InfoObject" information message and i can not active or edit it.
    What could this be? I am breaking my brain.
    Thank you all!

    Debugging i have seen this:
    15         CALL FUNCTION 'RSD_IOBJ_GET'
    16           EXPORTING
    17             i_iobjnm         = l_iobjnm
    18             i_objvers        = rs_c_objvers-active
    19             i_bypass_buffer  = rs_c_false
    20           IMPORTING
    21             e_s_vcha         = l_s_vcha
    22           EXCEPTIONS
    23             iobj_not_found   = 1
    24             illegal_input    = 2
    25             bct_comp_invalid = 3
    26             OTHERS           = 4.
    27         IF sy-subrc <> 0 OR l_s_vcha-infoarea IS INITIAL.
    28           MESSAGE i025(rsawbn).
    l_s_vcha-infoarea is Initial.
    Dues this mean that the object has no-infoarea??? In infoprovider i is under "enterprise compensation management" Does it give you a clue?
    Thanks!

  • Error during data transfer from Lotus Notes to SAP via JCO - Urgent Help Required

    Dear SAP Expert:
    I need your help! Recently getting error during data transfer to SAP. I need your suggestion!
    I am transferring Lotus Notes data to SAP via JCO, recently getting the below error msg, could you pls tell me what could be the reason?
    Please suggest me how to fix that kind of issue.
    "com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Error in ABAP/4 statement when processing an internal table. table.
    at com.sap.mw.jco.rfc.MiddlewareRFC$Client.nativeExecute(Native Method)
    at com.sap.mw.jco.rfc.MiddlewareRFC$Client.execute(MiddlewareRFC.java:1244)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3842)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3287)
    at SAPAdapter.execute(Unknown Source)
    at JavaAgent.fillBapiAndWriteBackToNotes(Unknown Source)
    at JavaAgent.NotesMain(Unknown Source)
    at lotus.domino.AgentBase.runNotes(Unknown Source)
    at lotus.domino.NotesThread.run(NotesThread.java:249)
    Thanks in advance! Your help would be highly appreciated! Thanks again!

    error is clear, check your abap code.

  • Problem in Fetching data using RFC FM from NON SAP system

    Hi All,
    Need help from experts on data transfer using RFC from a non SAP system/database. I have creasted the destination in sm59.
    I have created a function module too which has an import parameter as a query and export parameter as an internal table.
    No when i test run this function module it returns some entries. But when I call this FM in a program it throws a dump 'rfc_external_abort' .  Here is what the call to FM looks like in my program. Please guide me on this.
    Thanks in advance,
    Saket.
    DATA : lv_query TYPE string,
           it_gddbdata TYPE ZC9_TAB_SOLMAN_XI_RFC.
    lv_query = 'SELECT *  FROM GDDB.VW_GDDB_PERSONS WHERE LASTNAME = ''''A'''''.
    CALL FUNCTION 'Z_C9_SOLMAN_XI_GDDBCON'
    DESTINATION  'D39'
      EXPORTING
        in_sql_query       = lv_query
    IMPORTING
       ET_GDDB_DATA       = it_gddbdata

    Hi,
    your question..
    DATA : lv_query TYPE string,
    it_gddbdata TYPE ZC9_TAB_SOLMAN_XI_RFC.
    lv_query = 'SELECT * FROM GDDB.VW_GDDB_PERSONS WHERE LASTNAME = ''''A'''''.
    CALL FUNCTION 'Z_C9_SOLMAN_XI_GDDBCON'
    DESTINATION 'D39'
    EXPORTING
    in_sql_query = lv_query
    IMPORTING
    ET_GDDB_DATA = it_gddbdata
    you are telling that you are fetching the data  from non sap system  using RFC function module.. how it is possible..you canot fetch the data from non SAP system using RFC FM alone.. you have to use the concept BAPI.. it will work..
    I hope this will help  you..
    Regards,
    Kiran

  • File Sharing Problem and slow data transfer

    Hi,
    i just receive my MBP a few weeks ago and i wanted to transfer some data with a friend who has a MacBook. I tried to share a folder and it cold not be seen by the MB as guest login. i checked the permission when i add the folder to the file sharing as read only. Second problem i had is more intriguing...finally a i decide to log in as Me with the MB, and then i saw my folder shared. he copy the stuff he need it with an acceptable speed. He shared a folder to me the same way i tried and it works!! but the more frustrating was to see how slow was the transfer from the MB to my MBP. Can find any explication...any suggestion???? please !!

    slowness of wireless transfer speeds could have something to do with your access point/wireless router.... if you have bad bars on your airport card then try moving closer to the signal.
    also what is that total size of the files you are trying to move to each laptop?
    i remember when i transferred a fair amount of MP3's it did take a little bit of time....

  • Linked Server Problem while SQL Data Transfer using Non-sys Admin Account

    Hi Team,
    I've an issue while transferring the data from ServerA to ServerB. I've made the ServerB as "Linked Server" to Server A. Pre requisite like:
    1) SQL Account is been created on ServerB.
    2) Timeout settings for remote connections is set to "No Timeout".
    When I execute the below script using Query Window, It executes successfully:
    Insert into ServerB.DBName.dbo.TableName1
    Select * from dbo.TableName1
    But when I execute the same step by creating a SQL Job, it fails with the below error message:
    Message
    Executed as user: DomainName\UserName. Named Pipes Provider: Could not open a connection to SQL Server [1450]. [SQLSTATE 42000] (Error 1450)  OLE DB provider "SQLNCLI" for linked server "ServerB" returned message "Login
    timeout expired". [SQLSTATE 01000] (Error 7412)  OLE DB provider "SQLNCLI" for linked server "ServerB" returned message "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005,
    this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.". [SQLSTATE 01000] (Error 7412).  The step failed.
    Could you please help me in fixing the above error message and I can transfer the SQL Data between 2 Servers.
    Thank You
    Sridhar D Naik

    Sridhar,
    Is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Problems with DDE data transfer in a table

    I am having a problem on my client machine that is not occurring on my server machine. I have a table which is 22 x ~110 and on my server machine all signals for all 22 rows come through fine. On the other hand, on my client machine the same table loses all signals after row 17, i.e., rows 18-22 do not display any data. These two tables are dde linked. I changed rows 18-22 to rows 1-5 and moved every other row forward thinking the problem was within the original last 5 rows, but the result was the same - no data in rows
    18-22. I'm really stumped on this one - any suggestions would be appreciated. I am running Lookout 3.8, build 16 with Windows 98.
    Jason Phillips

    Try adding a delay for dde tables in your lookout.ini file.

  • Got Problem in Applet data transfer

    Hello, I got a problem when building my java applet by using swing.
    I need to copy to some text from the JTextArea in my GUI, but it was rejected,
    and when i try to use some method of TextComponent, like TextArea.copy(),
    which is available in Java Application, it will show the exception in DOS(shown in the end).This project is urgent to me, can U tell me whether it has or what is the solution for it? thank you very much.
    Exception occurred during event dispatching:
    java.security.AccessControlException: access denied (java.awt.AWTPermission acce
    ssClipboard)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:272)
    at java.security.AccessController.checkPermission(AccessController.java:
    399)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
    at java.lang.SecurityManager.checkSystemClipboardAccess(SecurityManager.
    java:1375)
    at sun.awt.windows.WToolkit.getSystemClipboard(WToolkit.java:573)
    at javax.swing.text.JTextComponent.cut(JTextComponent.java:1249)
    at UI24AT.actionPerformed(UI24AT.java:3374)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:14
    50)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1504)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:378)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:216)
    at java.awt.Component.processMouseEvent(Component.java:3717)
    at java.awt.Component.processEvent(Component.java:3546)
    at java.awt.Container.processEvent(Container.java:1167)
    at java.awt.Component.dispatchEventImpl(Component.java:2595)
    at java.awt.Container.dispatchEventImpl(Container.java:1216)
    at java.awt.Component.dispatchEvent(Component.java:2499)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2458
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2223)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2132)
    at java.awt.Container.dispatchEventImpl(Container.java:1203)
    at java.awt.Window.dispatchEventImpl(Window.java:918)
    at java.awt.Component.dispatchEvent(Component.java:2499)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:336)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:134)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:96)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:88)

    When you are running in an applet, access to the windows clipboard is restricted (otherwise an applet could take the contents of the clipboard and send them back to it's server over the internet, potentially leaking important business information from your pc).
    Why do you need to copy the text? If you want to just place the text into some other area of your GUI then I suggest you use TextArea.GetText()

  • CATA: time sheet: transfer to target components

    Could you please please give me an overview of what CATA (t-code) does?
    I have done some config in sandbox:
    I booked time in cat2 with a sender cost ctr + activity type and receiver cost center in ECC 6.0. With out running cata (t-code), I was able to see the actuals in cost center actual line item report and PS.
    I did not understand what was the purpose of CATA ?
    Thank you
    Ravi

    You need to run cata if you want to pass the Entries to all the components which you implemented,
    Else you can use CAT6 for HR exclusive ,
    Let me know the requirement
    Thansk
    Shetty

  • Problem while creating data transfer process

    Hi friends
    I am using BI 7.0 version.
    I m getting a problem while creating dtp
    After activating DTP and selecting the execute button, I am getting the following error message:
    Request cannot be processed in its current state
    Messg no : RSBK209
    can anyone help me on this problem
    Thank

    Hi Deepthi,
    Also check the error message(long text) and paste it here...
    check if you are either creating a "second" Delta DTP ( if an existing Delta DTP exists, then system will not allow you create a second DTP) and will throw an "overlapping" error
    Hope this helps
    Thanks
    Kalyan

  • FTP problem. causing incorrect data transfer ?

    I am trying to upload a php page the sends data to a hosted payment page. The payment centre who in this case is Barclaycard are saying when they test the page in there environment (that i emailed them) is sends all the correct data to their hosted payment page. When i try to upload the page to their servers using dreamweaver cs 5.5 it doesnt work and part of the data is incorrect and therefor shows errors and not the correct information on the payment page.
    is there any truth in this and should i be trying another FTP method or scripting?
    thanks

    the payment centre found out i couldnt use a £ sign...their issue

  • Data transfer using EDI from one SAP system to other SAP system

    Dear all,
    I understand that i should use normal ale-idoc features to transfer data from one sap to other sap system.
    but can i transfer those idocs using EDI from one SAP to other SAP system

    Hello,
    surely you can do so.
    EDI means that you transfer data in standardized EDI-formats. To get the data at the source  into that formats you normally use an EDI-Converter, which maps the IDOC-format into the EDI-format. Then you send the data in EDI-format to an EDI-converter at the target. There's the reverse mapping. You map the EDI-Format into IDOC-format and book these IDOCs into SAP.
    I think this makes only sense if you cross organizational borders within the business process, e.g., if you define an exchange with many customers, but not all of them have an SAP-system. 
    Regards Wolfgang
    Edited by: Wolfgang Valtin on May 19, 2009 6:13 PM

  • Data transfer from E-Reruitment to SAP in the intigrated system

    Dear all,
    iam working on E-Recruitment project with intigrated  system ( e-rec & SAP same instance)
    in  E-Rec i performed Applicant Acctivity ( Data tranfer for new employee)
    but there is no entry in t752f  table.
    and please tell me exactly  what data will transfer to sap automatically.
    if i want to transfer all the data do i need any developments.
    Pls suggest me as early as posible.
    Regards
    ushamohan11

    Hi,
    In Applicant Acctivity ( Data tranfer for new employee) will help you to get ready for the transfer.
    Goto pa40 and click on Hire Applicant (ACTION) and click on Transfer Icon on your left side of the screen.
    plz update me the status of it ..
    All the Best
    KRC

  • Data transfer from application server to sap system in binary mode

    hi friends,
    can any one help me out in
    how to read,open the dataset (syntax) while transfering the file from application server in binary mode ?
    how to move the file to differrent location in the same server?
    regards,
    mohan
    Message was edited by:
            mohan kumard

    HI,
    Syntax for reading the file
    OPEN DATASET file FOR INPUT IN BINARY MODE
    if sy-subrc = 0.
    DO.
          READ DATASET file INTO wa_record.
    ENDDO.
    CLOSE DATASET file.
    endif.
    syntax for writing file.
    OPEN DATASET  file FOR OUTPUT  IN  BINARY MODE .
    if sy-subrc = 0.
    transfer wa_record to file.
    CLOSE DATASET file.
    endif.
    You can also transfer file from application server to presentation server using transaction CG3Y by specifying source path(app ser),destination path(presentation ser) and tranfer format (BIN).
    To copy the file from one location to other location in application server
    use the FM 'ARCHIVFILE_SERVER_TO_SERVER'
    reward points if needful..

Maybe you are looking for