No table entries found for specified key

Hi All,
I have developed a program to upload data from flat file with the help of GUI UPLOAD. It is succesfully updating data in my Z-table.
Whenever I tried to view the content of table for specific field, message shows No table entries found for specified key. However if I add * as a suffix, it shows the data & when I directly Execute table it also displays the data.
I have also cross checked the spaces before or after the specific content, no space found.
Only two fields are creating this issue Individually (one of them is key field)
Regards
Mukul Maheshwari

Hi Dear ,
Here i had implemented program go through it you can understand easily.
While creating table give one field as primary as you know that.
tables zdata1.
data it_tab type TABLE OF zdata1 WITH HEADER LINE.
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    FILENAME                      = 'C:\Documents and Settings\E50039\Desktop\data.txt'     ***************File path
   HAS_FIELD_SEPARATOR           = 'X'
  TABLES
    DATA_TAB                      = it_tab
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
LOOP AT it_tab.
zdata1-no1 = it_tab-no1.
zdata1-name = it_tab-name.
zdata1-empid = it_tab-empid.
insert zdata1.
ENDLOOP.
Flat file
1 name1 empid1
2 name2 empid2
note: Give the tabspace between values in flat file.
Edited by: Aditya.G on Oct 12, 2011 10:22 AM

Similar Messages

  • Idoc is getting posted successfully but no table entries found in but000

    Hi Abapers
                IM working on CRM Business partner data Migration using LSMW idoc method with Message Type  CRMXIF_PARTNER_SAVE_M Basic Type  CRMXIF_PARTNER_SAVE_M02
    i can see the status as 53 i.e crmxif_partner_save function module got posted successfully i have done debugging also.  but when i check in se11 but000 table its says for the specified business partner number no table entries found can any one help what exactly is happening quikly reply would help me to solve the issue.

    Hi Madhu,
        I have checked the staus of longtext for that idoc where in i could see this message Function module CRMXIF_PARTNER_SAVE has been called successfully
    Message no. BXX086
    but when i debug once again the lsmw i could see in subroutine From Transfer_idocs the sy-subrc is getting 4 and one read statement is not fetching values what would be going wrong.
    FORM transfer_idocs.
    971
    972       DATA:
    973         l_text(132),
    974         l_lines TYPE i,
    975         l_idoc_nr_from TYPE i,
    976         l_idoc_nr_to TYPE i,
    977         l_idoc_nr_from_char(10),
    978         l_idoc_nr_to_char(10),
    979         l_edkp1 LIKE edkp1,                                     "YOG280800
    980         l_edk21 LIKE edk21.                                     "YOG280800
    981
    982       READ TABLE gt_pack_edi_dc40 INDEX 1.
    983       CHECK sy-subrc = 0.                                        (here sy-subrc =4 condtion is failing to proceed further)
    984
    985     * Senderdaten korrekt? YOG280800
    986       l_edkp1-mandt = sy-mandt.                                 "YOG280800
    987       l_edkp1-parnum = gt_pack_edi_dc40-sndprn.                 "YOG280800
    988       l_edkp1-partyp = gt_pack_edi_dc40-sndprt.                 "YOG280800
    989       CALL FUNCTION 'EDI_AGREE_PARTNER_READ'                    "YOG280800
    990            EXPORTING                                            "YOG280800
    991                 rec_edkp1       = l_edkp1.                      "YOG280800
    992       IF sy-subrc <> 0.                                         "YOG280800
    993         MESSAGE i810(/sapdmc/lsmw) WITH gt_pack_edi_dc40-sndprn "YOG280800
    994                                         gt_pack_edi_dc40-sndprt."YOG280800
    995         EXIT.                                                   "YOG280800
    996       ENDIF.                                                    "YOG280800
    997
    998       l_edk21-mandt = sy-mandt.                                 "YOG280800
    999       l_edk21-sndprn = gt_pack_edi_dc40-sndprn.                 "YOG280800
      l_edk21-sndprt = gt_pack_edi_dc40-sndprt.                 "YOG280800
      l_edk21-mestyp = gt_pack_edi_dc40-mestyp.                 "YOG280800
      l_edk21-mescod = gt_pack_edi_dc40-mescod.                 "YOG280800
      CALL FUNCTION 'EDI_AGREE_IN_MESSTYPE_READ'                "YOG280800
           EXPORTING                                            "YOG280800
                rec_edk21       = l_edk21.                      "YOG280800
      IF sy-subrc <> 0.                                         "YOG280800
        MESSAGE i811(/sapdmc/lsmw) WITH gt_pack_edi_dc40-mestyp."YOG280800
        EXIT.                                                   "YOG280800
      ENDIF.                                                    "YOG280800
    Actionlog-Eintrag am Anfang
      IF g_flg_first_time = yes.
        CALL FUNCTION '/SAPDMC/LSM_ACTIONLOG_INSERT'
          EXPORTING
            project         = g_project
            subproj         = g_subproj
            object          = g_object
            stepnr          = '901'
          EXCEPTIONS
            parameter_error = 1
            insert_error    = 2
            OTHERS          = 3.
        g_flg_first_time = no.
      ENDIF.
      DESCRIBE TABLE gt_pack_edi_dc40 LINES l_lines.
      ADD l_lines TO g_cnt_records_transferred.
      DESCRIBE TABLE gt_pack_edi_dd40 LINES l_lines.
      ADD l_lines TO g_cnt_records_transferred.
      l_idoc_nr_from = g_cnt_transactions_transferred -
                       g_cnt_idocs_package + 1.
      l_idoc_nr_from_char = l_idoc_nr_from.
      l_idoc_nr_to = g_cnt_transactions_transferred.
      l_idoc_nr_to_char = l_idoc_nr_to.
      l_text = 'IDocs werden übertragen (& bis &) ...'(006).
      REPLACE '&' WITH l_idoc_nr_from_char INTO l_text.
      REPLACE '&' WITH l_idoc_nr_to_char INTO l_text.
      CONDENSE l_text.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          text = l_text.
      CALL FUNCTION 'IDOC_INBOUND_ASYNCHRONOUS'
        TABLES
          idoc_control_rec_40 = gt_pack_edi_dc40
          idoc_data_rec_40    = gt_pack_edi_dd40.
      CLEAR:
        g_cnt_idocs_package,
        gt_pack_edi_dc40[],
        gt_pack_edi_dd40[].
    ENDFORM.                    "TRANSFER_IDOCS

  • ESS Benifits and payments - form16 - No entry found for application id XSS_

    Hi ,
    we have deployed ESS 1.0 sp13 and i am getting an error in benifits and payments .
      No entry found for application id XSS_HR_IN_F16 at table T7XSS_SER_RFW  this was the error prevesoly getting after maintaining the values in ESS (SPRO) GRT assign application id to ABAP calss.
    values of  XSS_HR_IN_F16 - CL_HRXSS_IN_F16 then i am getting an error as mentioned bleow
    com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException:      Fill in all required com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException:      Fill in all required entry fields                                   , error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.hr.rep.fcrfw.FcRepFramework.callRfcExecAction(FcRepFramework.java:373)
         at com.sap.xss.hr.rep.fcrfw.FcRepFramework.initModel(FcRepFramework.java:292)
         at com.sap.xss.hr.rep.fcrfw.wdp.InternalFcRepFramework.initModel(InternalFcRepFramework.java:256)
         at com.sap.xss.hr.rep.fcrfw.FcRepFrameworkInterface.initModel(FcRepFrameworkInterface.java:136)
         at com.sap.xss.hr.rep.fcrfw.wdp.InternalFcRepFrameworkInterface.initModel(InternalFcRepFrameworkInterface.java:198)
         at com.sap.xss.hr.rep.fcrfw.wdp.InternalFcRepFrameworkInterface$External.initModel(InternalFcRepFrameworkInterface.java:258)
         at com.sap.xss.hr.in.f16.vc.vcf16selection.VcF16Selection.onInit(VcF16Selection.java:237)
         at com.sap.xss.hr.in.f16.vc.vcf16selection.wdp.InternalVcF16Selection.onInit(InternalVcF16Selection.java:235)
         at com.sap.xss.hr.in.f16.vc.vcf16selection.VcF16SelectionInterface.onInit(VcF16SelectionInterface.java:161)
         at com.sap.xss.hr.in.f16.vc.vcf16selection.wdp.InternalVcF16SelectionInterface.onInit(InternalVcF16SelectionInterface.java:144)
         at com.sap.xss.hr.in.f16.vc.vcf16selection.wdp.InternalVcF16SelectionInterface$External.onInit(InternalVcF16SelectionInterface.java:220)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:564)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1288)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548)
         at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:192)
         at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sap.aii.proxy.framework.core.BaseProxyException:      Fill in all required entry fields                                   , error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.sap.xss.hr.rep.model.rfwmodel.RfwModel.hrxss_Ser_Rfw_Rfc_Exec_Action(RfwModel.java:184)
         at com.sap.xss.hr.rep.model.rfwmodel.Hrxss_Ser_Rfw_Rfc_Exec_Action_Input.doExecute(Hrxss_Ser_Rfw_Rfc_Exec_Action_Input.java:137)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
         ... 63 more
    Apart from from the above mentioned entry whether we need to maintain any other entries .
    Thanks & Regards
    Praveen.K.T
    Edited by: PRAVEEN K.T on Aug 13, 2008 8:05 AM

    Hi Praveen,
    Im getting the same error Can you please let me know how did you resolved it.
    Thanks,
    Santosh

  • MDMGX Transaction Error "No Table entries found"

    Hi All,
    I wanted to extract the reference data of ECC using the MDMGX Transaction but was getting the following error
    "No Table entries found"
    i searched in MDM thread and followed the below link but still i am facing the same error
    link: [MDMGX Configurations;
    Please help
    Regards,
    Sharma

    Hello Abhishek,
    Thanks for the reply.
    Well i do not have a file to upload in Upload ports and check tables i expected it to be loaded along with the business content.
    I have checked the below SAP note but i do not have a login ID for sap service marketplace.
    Vendor (SAP Note 1318478)
    Where else can i get the files specific to business objects? or can i prepare my own text file for the same?
    If i can prepare my own file can i get the format of the file which will help me in preparing the text file.
    Thanks in Advance.
    Sharma.

  • Jdev 11g: No credential mapper entry found for password indirection user

    Hi,
    Ive been trying to deploy an application as described in http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/bcextservices.htm#ADFFD542
    When the application is installed into weblogic, I get the following error:
    An error occurred during activation of changes, please see the log for details.
    weblogic.application.ModuleException:
    java.security.PrivilegedActionException: weblogic.common.ResourceException: java.security.PrivilegedActionException: weblogic.common.ResourceException: No credential mapper entry found for password indirection user=psa_dev for data source psa_dev

    Check out What does this message mean? thread

  • Table fields used for basic key figures in report writer/report painter

    Does anyone know how I can find which <u>table field</u> is actually being used for SAP defined <b>basic key figures</b> in report writer report? For example, <b>HSL</b> is a basic key figure for income statement, library 0F1, report 0F-GUVV. It only shows data is coming from table GLFUNCT. How does the report writer program knows which fields to select? What is the logic behind the basic key figures?
    Any advice is appreciated!!
    Minami

    I have now resolved this issue.
    I had to manually update TablesT804B and T804F. 
    I've added entries to T804A in the past without the need to update T804B or T804F manually so it appears that the way these tables work together has changed following an upgrade or application of support packs.
    Regards
    Mel

  • Loop the table entry and for every entry perform some action.

    Hello Experts,
    I have a requirement where there are let say n no. of entries in my ITAB and now for every entry i have to check certain field value and based on that i have to send respective mail.
    Now this has to run in background mode and the job will run on daily basis so the entries of table that are already processed should not be reprocessed.The scenario is every day the new entries will be added to ITAB and the newly added entries should be processed only.
    Please provide some sample code if possible.
    Thanks,
    Naveen

    Hi,
    I can not add a new field to the existing ztable. Crating a copy of ztable with addtional field status and setting it as processed against the record whenever i populate ITAB from ztable could be a solution but seems very lenthy method.
    There is one filed zdate  so write the code as below:-
    loop at itab where zdate = sy-datum
    email code------
    endloop.
    OR can i make use of
    loop at itab into wa
      ON change  of <filed1>
    email code-----
       ENDON
    endloop.
    Thanks,
    Naveen

  • Had a Search Criteria and the result as table in header.Wanted to bind the result table to bean for the key value access

      Had Search Criteria and the result is displayed in the table in a panel header .  I want to get the selected  row value and parse the value to next Vo in next page for a bind variable . So i need to handle the  tbale value by biniding to the bean , but there was no option to bind the table for a bean.So how can i get the value selected .
    Regards,
    K M Krishna.

    First of all tell us your jdev version, please.
    to get to the selected row you don't need to bind the table to a managed bean. You can e.g. drag the needed attributes from the VO onto the page and drop them as inputText components. the Framework then generated the attribute bindings and sets the values of the current row to them. As you don't really need the inputText components switch to source mode (!this is essential!) and remove them. This will remove the visual component but the attribute bindings are kept.
    Know you can access the values via their EL or like you get the value from an attribute via it's binding.
    Timo

  • Transporting table entry with primary key 120 char

    Hi all,
    I have 2 separate questions which I feel are closely related.
    In the url:
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb6e446011d189700000e8322d00/content.htm
    It says:....
    <i>If the key length is greater than 120, there are restrictions when transporting table entries. The key can only be specified up to a maximum of 120 places in a transport. If the key is larger than 120, table entries must be transported generically.</i>
    <b>How do I transport the table entries "generically" for such a table?</b>
    To further illustrate my actual problem:
    My problem in the real world lies with the MIMETYPES table, maintained in trx SMW0.
    I select the mime types row by row and do a <u>Table Entry > Transport Entries,</u> but get an error that says
    <i>"Key entry for table MIMETYPES may only be generic"</i>.
    As a result it fails to attach to my transport.
    (Note: the primary key of MIMETYPES is 128 chars long)
    The Diagnosis long text says "<i>The key is longer than allowed by the Change and Transport System (120 characters</i>)."
    The Procedure says:
    <i>1.  Make sure that you only specify the character fields before the    
        first non-character key field. You must enter the key with a generic
        ending. Enter the generic symbol directly after the specified part 
        of the key.                                                                               
    2.  You must enter the generic symbol at the latest in the 120th       
        character of the key.                                              </i>
    <b>What is this generic symbol that i need to insert at the 120th position??</b>
    Message was edited by:
            Kevin Wong
    Message was edited by:
            Kevin Wong
    Message was edited by:
            Kevin Wong

    Thanks Nick!
    So the mysterious "generic character" is actually the asterisk (*). It works.
    Strange tho as the error long text says to insert the "generic character" at the 120th character position of the key, but I found that altho I can save it, the transport still fails with the same error.
    I tried placing the * right after the key value e.g.
    KEY123*
    and it worked.
    Thanks again!

  • How to transport a Deleted Table entry

    is there a way of transporting deletions of table entries.
    For example. I'm dealing with a table say such as T529U. So we already have value there for active, inactive, retiree, withdrawn. Say I wanted to delete retiree from the selection list.
    I go to our DEV and make the deletion. I manually create a transport of the entire table and transport it to our QA system. When I do so, the table still remains the same. The only way the record would be changed would be if it was new or had the same key (thus overwriting). How do you remove and transport (so you don't have to do it in all instances).
    any help would be much appreciated.
    Thanks

    Hello
    A delete should be a change just like any other change and should be recorded on a change request.  After releasing the change request you should be able to transport that delete to your QA and PRD systems as needed.
    As a general rule I would not transport the complete table.  There is too much risk that unintended changes get transported. 
    Are other changes to your table being recorded on a transport request?
    If you have another environment(sandbox or project?)  try the delete in that environment to convince yourself that it does(or does not )work.
    Regards
    Greg Kern

  • I have one query about table entries.

    i have one query about table entries.
    suppose  for particular table we maintained   5 entries in dev server. actaully in the dev we have only these 5 entries.
    In production we have 200 entries actually.
    If we move the cts from  dev  to production ,we will get 205 entries right
    please help me in this.

    If i understood correctly, It is a Z table and you have done some changes in DEV system. If you move this to Production, it wont effect the production entries.
    There are 2 different ways you can trnasport a Table. 1. with Table entries 2. Without table entries.
    If you transport with Table entries then the DEV entries in this case 5 will be moved to PRODUCTION totaling 205.
    If you transport without table entries, then in Production you will find only 200 entries.

  • No entry found in table SMOFQFIND for BDoc type SI_CONTRACT

    Hi Gurus,
    I try to do a request dowload for SI_CONTRACT object.
    When  execute and monitor my request objects the status is OK.
    Then, I check the BDocs Message Trace and I see the following  error
    "No entry found in table SMOFQFIND for BDoc type SI_CONTRACT - Queue name used: CRI_SI_CONTRACT (see note 677800 for further info"
    Does anyone know how to resolve this issue?
    Thanks,
    M@le

    Hi Brian,
    There was leading 0 for the contract # in the request detail, however this message is still in the BDoc message trace. The BDoc was posted successfully. I checked the table SMOFQFIND and could not find the entry for BDoc type SI_CONTRACT.
    There are records for SI_CONNOBJ and SI_POD which are all delivered by SAP. I think we just need to maintain SI_CONTRACT in this table to get rid of this message. Just I do not know what exact to maintain for SI_CONTRACT.
    Could you help to check standard SAP environment to see what is the detail for SI_CONTRACT in table SMOFQFIND?
    Thanks,
    ZJKong

  • No entry in table T510 for the key 4004033MANAGER 1 on 01.04.2008

    Hi,
    When trying to save entry in 0008 infotype i am getting the error "No entry in table T510 for the key 4004033MANAGER 1 on 01.04.2008"
    I had removed the integration PLOGi ORGA for some testing purpose. is it because of this. now i have set the integration switch back. still i am not able to resolve this.
    Can anybody help me in this.
    thanks

    Hi,
    Maintian the table V_t510, go to V_t510, enter the values like
    40- Country Grouping
    04- PS type
    03- PS ARea
    3- CAP(collective agreement Provision) which you have assigned to your employee subgroups in table V_T503Z.
    MANAGER - Ps group
    1 - Ps level
    on 01.04.2008- start date.
    in this table enter the wage type, which you have created under basic pay.
    like
    3 manager 1 1000 01012008 31129999
    3 manager 1 1010 01012008 31129999
    Regards
    Devi

  • Indval wagetype 2500:no entry table in t510  for key 10eeng3manager1

    Indval wagetype 2500:no entry table in t510  for key 10eeng3manager1  on 01.01.2010
    Dear experts i am new to payroll, actually i am getting above error. i did all the necessary configuration for USA PAYROLL but still i m getting above error in pa30. 2500 is basic pay wage type, EE is oayscale type,NG is payscale area,3 is ESG grouping,manager is position, 1 is LEVEL. can anybody help me in this..........thanks in advance

    Hi,
    First check the entry is there in view V_T510. Check Date Properly.
    Check Wagetype Characterestics in V_T511 with indirect Valuation TARIF and Variant 'B'
    Pradeep.

  • APO Bapi - ERROR - No entry found in transportation indicator table for fol

    Hi
    Experts .. need help on a APO bapi
    Iam being doing BAPI for transportation lane to add new material through the bapi BAPI_TRLSRVAPS_SAVEMULTI
    iam passing  the following to BAPI
        Logical system
        model
    and in tables .
        TRANSPORT_LANE
        TRANSPORT_LANEX
        PROD_PROCUREMENT
        PROD_PROCUREMENTX
        LOCATION_FROM    = '1010'.
        LOCTYPE_LOC_FROM = '1001'.   
        LOCATION_TO =   '1101'.
        LOCTYPE_LOC_TO =  '1001'.
    the above data is common for passing all the four bapi tables and in
    addition iam passing
    prod-valfr =  Converted value by passing to FM - IB_CONVERT_INTO_TIMESTAMP.
    prod-valto =  Converted value by passing to FM - IB_CONVERT_INTO_TIMESTAMP.
    prod-product = material number.
    AFter excuteing bapi iam getting an error
    No entry found in transportation indicator table for following objects
    the above error occured when passed the given data to bapi table -  PROD_PROCUREMENT  
    if we pass the data to   PROD_PROCUREMENT and   PROD_PROCUREMENTX
    then there is no error in  table return of bapi but the data is not uploaded in transportation lane.
    I will really appreciate if some guide me where iam wrong or some other solution for this .
    Regards .
    Thanks .

    Hi,
    I am writing bdc code for uploading changing inspection plan data using qp02 . I saw your post in sdn .I think you have solution .can you tell the solution .
    Regards
    Nandan.

Maybe you are looking for

  • "Class can't be instantiated " error message. Help !

    Dear Java People, In trying to do a program that outputs a sound with every button click I have no compilation errors but a runtime error that says: "class can't be instantiated" below is the program and below that the error message thank you in adva

  • MacBook pro stopped connecting to wifi

    It worked fine until cable company reset modem... All other laptops, iPads, etc. still work on wifi (home network)... What happened?

  • Satellite Pro L100 important documents must be saved.

    Basically, i have an old Sattelite Pro L100 that i used for college, i have been using it for many years and until recently i noticed it running slow. I downloaded some items that had a few virus'. I downloaded a scanning program called Malware remov

  • MacBook Pro not recognising EAC burnt audio cds

    Hi, I have been searching all day over forums and google trying to solve this problem but had no luck. Using the EAC burning guide from the Wiki articles I burnt several audio CDs on my windows vista laptop. Everything seemed to go fine in the burnin

  • Reader Ext. error ALC-RES-001-002

    I'm getting this error frequently when running on the clutsered instances and have to restart the LC server to make it woring again (even with super admin role granted). any idea? also, what's the minimum rights required for Reader Ext. web apps to r