Problem During maintaining Infotype 8 in tcode PA30

hi all,
i have different PS group for employees like OFFICER and EXECUTIVE and when i m creating the IT 8 then i select group as OFFICER and then it pics the wage type '1001', '1004', '1013' and '1016' automaticaly but problem is that when i select group as EXECUTIVE then it pics nothing automatically.
can anyone please tell me what is the prob and how can i remove it?
Regards.

in PSG  and PSL
thre is mismatch of Groupings Check with Archanas response once
Check the Groupings of ur PSG  PSL and ur allowance Grouping

Similar Messages

  • A problem in hr tcode pa30

    hello experts,
    I am facing the problem with tcode that is pa30,when the user are entering the data in tcode pa30 screen and saving the data ,it is thrwing the error messsaga
    "ENTRY OUTBOUND TABLE NOT FOUND " please give me the solution for this error message
    and it is very urgent please give it as early as possible.
    ragards
    RAHUL+

    Hi Rahul,
    Although I have never experienced this sort of an error, a solution always lies in tracing the error message into the ABAP code using a where used. For the error message popping up, ask an ABAPer to read the message ID and number and from SE91 search for the point where the error message is raised. Most messages in HCM module though cannot be traced through where used since they are called dynamically. Hence ask the ABAPer to put a watchpoint on the message ID and/or message number (SY-MSGNO) and then check the table entry which is being validated and subsequently failing. IF this also fails, look up service.sap.com with the message number and ID for help notes.
    Also, please check and ensure no IDocs are being triggered in user exit processing from the infotype update(s), the error message seems to be somewhat related to partner profiles not having been maintained for an IDoc processing.
    Hope this helps somewhat.
    Regards,
    Aditya
    Message was edited by:
            Aditya Laud

  • Reg:where will the comments in tcode pa30 maintained

    Hi All,
    I have a requirement where I need to get the comments maintained for the info type 0019 in the tcode pa30.
    I have placed the cursor on the field and pressed F1 help to see the table in which these comments are stored.But these comments are maintained in the structure RP50M and the field  name associated is TEXT1.
    Could you please let me know in which table will these comments be stored.
    Regards,
    Kishore

    Hi Krishna,
    I agree with the Mark Ande's answer.
    Here is the code to get the text.
    tables: pcl1, pcl2.
    include rpppxd00.
    include rpppxd10.
    include rpppxm00.
    DATA: BEGIN OF ptext OCCURS 200.
    DATA:  line(78).
    DATA: END OF ptext.
    DATA: tx-key LIKE pskey.
    DATA: BEGIN OF text-version,
            nummer TYPE x VALUE '02',
          END OF text-version.
    start-of-selection.
    CLEAR: text-version,
                 ptext,
                 tx-key.
          REFRESH ptext.
          tx-key-pernr = p0019-pernr.
          tx-key-infty = '0019'.
          tx-key-subty = p0019-subty.
          tx-key-objps = p0019-objps.
          tx-key-sprps = p0019-sprps.
          tx-key-endda = p0019-endda.
          tx-key-begda = p0019-begda.
          tx-key-seqnr = p0019-seqnr.
          IMPORT text-version
                 ptext
                 FROM DATABASE pcl1(tx)
                 ID tx-key.
         loop at ptext.
          write:/ ptext-line.
         endloop.

  • Getting Error While inserting a record in table PDSNR through Tcode PA30

    Hi Experts,
    Im doing a transaction in  TCode PA30 by entering a pernr and infty as 14 and wage type.
    My need is when im entering a particular wage type in PA30 with infotype 14 , for that particular wage type and infotype i need to assign a different cost centre. This requirement was doing now manually by changing the cost centre form EDIT - > Maintain Cost Assignment.
    But my Client Needs to do it automatically. by comparing the wage type and infotype the cost centre needs to get automatically updated.
    So i use the Enhancement EXIT_SAPFP50M_002 * INCLUDE ZXPADU02.* and wrote coding like below
    CASE innnn-infty.
    To check whether the record belong to pa0014
    If so,check the wage type for the updation
    If so update the values of cost center assignments in the table assob and asshe
    when '0014'.
    if innnn-subty eq '2211'.
    Select the last updated sequence number in the table pdsnr
    if sy-ucomm eq 'UPD' or sy-ucomm eq 'INS'.
    select single * from pa0001 into wa_0001 where pernr eq INNNN-pernr and
                                                   endda eq '99991231'.
      if sy-subrc = 0.
    call function 'ENQUEUE_EPPRELE'
    EXPORTING
       MODE_PREL            = 'E'
       MANDT                = SY-MANDT
       PERNR                = INNNN-pernr
       INFTY                = INNNN-INFTY
       SUBTY                = INNNN-SUBTY
    EXCEPTIONS
       FOREIGN_LOCK         = 1
       SYSTEM_FAILURE       = 2
       OTHERS               = 3
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    CLEAR : lv_pdsnr.
    select MAX( pdsnr ) from pdsnr into lv_pdsnr.
    lv_pdsnr = lv_pdsnr + 1.
        ls_assob-pdsnr = lv_pdsnr.
        ls_assob-pernr = INNNN-pernr.
        ls_assob-bukrs = wa_0001-bukrs. "'1001'.
        ls_assob-gsber = wa_0001-gsber. "'0001'.
        ls_assob-kokrs = wa_0001-kokrs. "'1000'.
        ls_assob-kostl = '1-1361'.
        ls_asshr-pdsnr = lv_pdsnr.
        ls_asshr-pernr = INNNN-pernr.
        ls_asshr-infty = innnn-infty.
        ls_asshr-subty = innnn-subty.
        ls_asshr-begda = sy-datum.
        ls_asshr-endda = '99991231'.
        ls_PDSNR-pdsnr = lv_pdsnr.
        ls_PDSNR-PDGRP = '5B'.
    insert into pdsnr values ls_pdsnr.
    insert into asshr values ls_asshr.
    insert into assob VALUES ls_assob.
    call function 'DEQUEUE_EPPRELE'
    EXPORTING
       MODE_PREL       = 'E'
       MANDT           = SY-MANDT
       PERNR           = INNNN-pernr
       INFTY           = INNNN-INFTY
       SUBTY           = INNNN-SUBTY.
        ENDIF.
    ENDIF.
    ENDIF.
    COMMIT WORK.
    ENDCASE.
    This is to update the three tables PDSNR, ASSOB,ASSHR.
    Its getting Updated correctly, But when i goto EDIT - > Maintain Cost Assignment to do some changes and while saving the data i get the following Error Message :
    You Cannot insert data in table : PDSNR.
    Message no. P2715
    Can Anyone please suggest me how to solve this issue.
    Thanks,
    Vijayan.R

    Hi. Were you able to fix the error?

  • Short dump while changing the end date of infotype 0167 through PA30

    Hi all,
    I am getting short dump while changing the end date of infotype 0167(Health Plans) through Tcode PA30.
    dump descript is as below
    An exception occurred that was not caught.
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                CX_HRPA_VIOLATED_POSTCOND
    Date and Time          11.03.2010 07:06:26
    What happened?
        The exception 'CX_HRPA_VIOLATED_POSTCONDITION' was raised, but it was not
         caught anywhere along
        the call hierarchy.
        Since exceptions represent error situations and this error was not
        adequately responded to, the running ABAP program
         'CL_HRPA_SAPUP50R_ADAPTER======CP' has to be
        terminated.
    thanks
    shahid

    Search OSS Notes for that.

  • RFC connection problem during SRM - R/3 integration

    Hi,
    Our environment is SRM 5.5 server with 2 R/3 backend systems. One of the R/3 systems is in another country. We happen to have RFC problems during the communication between the SRM and R/3 server.
    Below you can find the SM21 log related to an operation on SRM server. What might be the reason for this problem? Does anyone know the solution?
    Many thanks
    Details Page 2 Line 26 System Log: Local Analysis of sapsrmt                  1
    Time
    Type
    Nr
    Clt
    User
    TCode
    Grp
    N
    Text
    10:24:58
    DIA
    000
    013
    EMREK
    R4
    9
    Communication error, CPIC return code 020, SAP return code 223
    Communication error, CPIC return code 020, SAP return code 223
    Details
    Recording at local and central time........................ 07.12.2006 10:24:58
    Task......
    Process
    User......
    Terminal
    Session
    TCode
    Program
    Cl
    Problem cl
    Package
    91342
    Dialog work process No. 000
    EMREK
    XXXXXXXX
    2
    K
    SAP Web AS Problem
    STSK
    Further details for this message type
    Module nam
    Line
    Error text
    Caller....
    Reason/cal
    thxxhead
    7192
    020223
    ThRecei
    CPIC-Er
    Documentation for system log message R4 9 :
    A CPIC function has failed.  The conversation ID and CPIC function are
    specified in the system log entries.  Use the conversion ID to find more
    detailed information about the error in the system log for the SAP
    gateway.
    Meaning of the SAP return codes:
    1) Gateway errors:
    221,,Error in CPIC-SS
    222,,Storage bottleneck
    223,,Network read error
    224,,Network write error
    225,,Invalid request
    226,,No connection yet
    227,,Gateway process terminated
    228,,Shared-Memory problem(read)
    229,,Shared Memory problem(write)
    230,,No free LU
    231,,No free gateway process
    232,,Error when starting gateway proc.
    233,,Incorrect communication type
    234,,Connection setup failed
    235,,Error in comm. table
    236,,No connection to gateway
    237,,Connection to gateway closed
    238,,Error in GW command (write)
    239,,Error in GW comm.   (read)
    240,,Invalid length
    241,,Invalid environment
    242,,Timeout
    243,,Error setting up SAP connection
    244,,Partner has closed connection
    245,,Storage overflow
    246,,Incorrect APPC header version
    247,,APPC server not started
    248,,Error accessing TXCOM
    249,,Comm. table is full
    630,,Invalid mode no. received
    631,,Max.no. of gateways reached
    632,,No LU specified
    633,,Max.no. of clients reached
    634,,Invalid TP name
    635,,fork failed
    636,,Invalid NI handle
    637,,rexec failed
    638,,TP start failed
    639,,NiDgSend failed
    640,,Internal error
    664,,Gateway host is unknown
    665,,Gateway service unknown
    666,,NI error
    667,,exec failed
    668,,R/2 restarted
    669,,Symb. destination too long
    670,,No more side-info entries
    672 ,,Logon to NetWeaver failed
    673 ,,IMS Error Purging
    674 ,,Timeout for registered programs
    676 ,,TP not registered
    677 ,,Timeout for registered programs
    678 ,,TP is registered
    679 ,,TP is not registered
    720 ,,Security breach of registered programs
    721 ,,SNC deactivated
    722 ,,SNC required
    723 ,,SNC name not defined
    724 ,,Default SNC name not permitted
    725 ,,Protocol does not support SNC
    726 ,,No local SAP System
    727 ,,SNC required
    728 ,,Conversation ID not found
    729 ,,SNS must do the communication
    730 ,,Start of external programs deactivated
    731 ,,Gateway shut down
    732 ,,No external programs
    733 ,,Conversation ID does not match
    734 ,,Net conversation error
    735 ,,Monitor is not active
    736 ,,Conv-ID is not unique
    Errors in the CPIC Interface:
    450 ,,No storage
    451,,No side-info entry
    452,,TP-START failed
    453,,No initialization
    454,,"getlu" failed
    455,,"signal" failed
    456,,Timeout during conn. setup
    457,,CMALLC failed
    458,,CMSEND failed
    459,,Prepare-To-Receive failed
    460,,"mc_flush" failed
    461,,CMRCV failed
    462,,Argument missing
    463,,"get_allocate" failed
    464,,CMDEAL failed
    465,,TP-END failed
    466,,Max.no.of conv. reached
    467,,"snaopen" failed
    468,,"snactl" failed
    469,,No flush in IBM environment
    470,,"snaclse" failed
    471,,Status error
    472,,No side-info entry
    473,,No conversation
    474,,Connection closed manually
    475,,Connection closed automatically
    476,,No partner found
    477,,Confirm failed
    478,,Confirmed failed
    479,,GWHOST not in side-info entry
    480,,GWSERV not in side-info e.
    481,,PROTOCOL not in side-info entry
    482,,LU not in side-info e.
    483,,TP not in side-info entry
    484,,No conn.to gateway
    485,,gethostname failed
    486,,SAP_CMACCP not executed
    487,,Program not in argument list
    488,,Host not in argument list
    489,,Service not in argument list
    490,,Conv-ID not in argument list
    491,,Invalid parameter
    492,,LU62CVCT failed
    493,,LU62ATTCH failed
    494,,No CONV table
    495,,Incorrect conv.table
    496,,Invalid conv modification
    497,,NiHostToAddr failed
    498,,NiAddrToHost failed
    499,,Read operation tab.THOST failed
    500 ,,No side info file exists
    501 ,,CMRCV failed
    Technical details
    File
    Offset
    RecFm
    System log type
    Grp
    N
    variable message data
    6
    245700
    m
    Error (Function,Module,Row)
    R4
    9
    020223                                ThReceiCPIC-Erthxxhead7192

    Hi,
    It will be very difficult to solve without being on the customer site and having all information.
    Right now, the error code is network error...
    Kind regards,
    Yann

  • Maintaining Infotypes in PP01 for Central Person while already maintained n

    Dear Team,
    When we are using PP01 Transaction code by taking Object type Central Person system is showing is showing IT0001, IT0002, IT0006 and IT0009 etc. Please let us know the purpose of using all these infotypes as we have already maintained the same in PA30 u2013 Maintain master data
    Could you please suggest us whether to update these infotypes here or not and what are implication of the same if we maintain them again here?
    Kind Regards
    Nagesh

    Hi,
    When you enter central person and click to see data it takes you to PA30 infotypes and this shows that there is CP-P relation and tells you that link exists from OM to PA for same.
    It is sufficient to maintain infotypes in PA30 only as this just shows you linkage nothing more.
    Thanks,
    Ameet

  • Create a windows script to automate shutdown databases during maintainance

    Can any one please me the script to automate shutdown databses during maintainance.
    The script would be scheduled from the Windows server and will be shutting down databases hosted in AIX server .
    Windows server will interact with Aix servers using SQLPLUS COMMANDS (TNSNAMES).
    Please let me know because I am working on this issue and it needs to be resolved.

    There are thousands of scripts available, just google it. In creation/execution of your script, if you face any problem or see any errors than you can come here and post it.

  • History of the Infotypes deleted through PA30.

    Hi FOlks,
    Is it possible to see the history of the Infotypes deleted through PA30.
    Eg: In IT2001 sick leave applied on 20.01.2009 being deleted though PA30. After this deletion, would we be able to see who has deleted and what record has been deleted???
    If u2018yesu2019 wht is the tcode to see that???
    Rgds,
    Sekar.

    Hi,
    As mentioned by Archana,
    SE38 > RPUAUD00 > execute > Give PERNR in personnel number field > give IT2001in infotype field > select long term documents > Excecute > Double click on particualr recors > the you can see old value and new value. There is column named action. From that column you can see whether particular record is created or updated or deleted....

  • "Program files" directory problem during Microsoft Office Customization Installer in non-English versions of Windows

    We have a document-level customization solution for Word and are experiencing problems during deployment in an environment running on terminal services. The OS (Windows 2012) is English and Word (2013) is non-English (German). 
    Installation is done into the "Program Files" folder correctly. But when trying to start a word document linked to the specific template. The "Microsoft Office Customization Installer" pops up with the error.
    "There was an error during installation"
    From: file:///C:/Programme/[CompanyName]/[Productname]/[Productname].vsto
    Downloading file:///c:/Programme/[CompanyName]/[Productname]/[Productname].vsto did not succeed.
    Exception: ....
    System.Deployment.Application.DeploymentDonwloadException: Download file:///C:/Programme/[Companyname]/Productname]/[Productname].vsto did not suceed. ---> System.Net.WebException: Could not find a part of the path 'C:\Programme\[Companyname]\[Productname]\[Productname].vsto'.
    ---> System.Net.WebException: ...... ---> System.IO.DirectoyNotFoundException......
    The problem seems to be that the installer is looking for C:\PROGRAMME instead of C:\PROGRAM FILES. C:\PROGAMME is the German localized name of PROGRAM FILES (http://en.wikipedia.org/wiki/Program_Files).
    The installer installs the solution correctly deployed into c:\program files, but when the later a user tries to start it and the Microsoft Office Customization Installer is called, it tries to access the non-existing "c:\programme" folder. This
    doesn't exist, because Windows is English.
    Is there any thing related to deploying solutions on a platform which has different languages (mixing/matching of OS language and Office language?)
    Thank you for your help

    Hello,
    1. First, I would confirm with you whether you dealt with the localization for your document-level add-in?
    2. Did you use this way to define the Create a class that defines the post-deployment action part of Put the document of a solution
    onto the end user's computer (document-level customizations only) and did you get the path with Environment.SpecialFolder enum?
    To handle this, I would recommend you consider using Environment.SpecialFolder to set that property.
    Regards,
    Carl
    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.

  • Problem During Installation of ECC 6 on Windows 2003

    <b><b>Here I am facing problem during Import ABAP Phase.
    It is throwing Error like that::
    CJS-30022 Program 'Migration Moitor' exists with return code 103.
    After completeing 9 stages, it's getting problem in Import packages and installation get stucked.
    My Server is like that:
    OS: Windows Server 2003
    Hardware: HP Itanium IA64
    Database: Oracle 10.2g
    SAP Release : 2004s ECC 6
    I have configured Java with j2sdk 1.4.2_12:
    JRE 1.5 is not available for IA64 .
    I reconfigured the parameter "shared_pool_size" (to 400MB)in init<sid>.ora at \oracle\<sid>\database.
    Also adjusted another parameter which is "shared_pool_reserved_size" i.e. 10% of the shared_pool_size.
    What to do now.
    Please send me feed backs.
    Regards,
    Sumanta Chatterjee
    </b></b> <b></b>

    run 'ls -lrta' in /tmp/sapinst_instdir/.... (whatever the lowest path is there, where all the log files are).  You should see something like sap<something>.tsk and sap<something>.log.  Look at the most recently updated sap<something>.log file for the specific error.  One problem I've seen is that if you configure the advanced oracle config to turn off AUTOEXTEND on the tablespaces, the abap load will bomb because it runs out of space.  Also, make sure your SYSTEM tablespace has at least 500M.
    Posting the relevant contents of the log with the detailed error description would help us provide a better answer as well.
    Rich

  • How do I get facetime on a MacBook Pro to work?  I keep getting a " server encountered problem during registration.." message.  I have FaceTime ver. 1.1.1

    How do I get facetime on a MacBook Pro to work?  I keep getting a " server encountered problem during registration.." message.  I have FaceTime ver. 1.1.1
    Thanks

    Icapper wrote:
    I will end up getting something other than Logitech speakers, since I'm just weird like that.
    Your not weird, your a audiophile.
    https://en.wikipedia.org/wiki/Audiophile
    Good sound costs money. And with a 5.1 system your usually doing surround sound decoding for BlueRay movies etc. for home theater purposes.
    The PC 5.1 surround sound systems require a audio card in a PC tower and mainly used for playing 3D games so that won't work for any Mac at all. So don't buy a PC 5.1 surround sound system for your Mac.
    Harmon Kardon has the GoPlay, it's a portable stereo with awesome sound (not as good as their theater systems) and you can hook up a analog male/male stereo mini cable to it from the Mac.
    $200 and it has a iPod dock and also takes like 8 batteries so it's portable.
    http://www.amazon.com/dp/B002GHBTNC
    There is also the Bose Wave clock/radio, you will need a stereo mini to RCA break out cable for that.
    http://www.bose.com/controller?url=/shop_online/wave_systems/index.jsp
    The GoPlay has much better sound than the Bose, I think the Bose are overpriced.

  • Maintain Derivation Rules - TCode : GGB1

    Hi friends
    What is the importance of Maintain Derivation Rules (TCode : GGB1) with respect to Profit center accounting. Is it a compulsory step in configuration or not?
    At our client we are implementing the ECC 6.0 with new GL activation. In this case what is the importance of this "Derivation Rules".
    Thanks in advance.
    Regards
    Kiran

    Hi,
    GGB1 is used for substitution maintenance. It's certainly not manadatory. Only if you have some functional requirement for subsitution, you should use this transaction.
    Regards,
    Eli

  • Problem during creation of shipment document and shipment cost document

    Hi
    My client  facing problem during creation of shipment document and shipment cost document at the time of Batch Job
    Delivery no 897654: goods issue on 30.11 at 13:22. Shipment on 30.11 (VT01N).
    Shipment costs on 1.12 (VI01).
    the problem is the shipment document get created on 30.11.2010 but the shipment cost document get created on 1.12.2010
    pleas advice.

    Hi,
    Please check the batch job processing log.
    As per my understanding, business requires to generate the Shipment & Shipment cost documents immediatley.
    However there is some time between the documents creation time. I dont see any issue in the data or problem in the delivery docs Because system will not generate the shipment docs after 1 or 2 days if there is an issue with the data . There must be problem in the Batch Job.
    Analyse the batch jobs and timing of the job process.
    Let us know your feedback...
    Best Regards,
    MKumar

  • Problem during installation of Solution Manager

    Hi All,
    I am facing problem during the installation of solution manager. it shows following error during installation
    ERROR 2010-05-21 14:39:24
    FJS-00003  TypeError: this._name has no properties (in script NW_Doublestack_SCS|ind|ind|ind|ind, line 5140: ???)
    ERROR 2010-05-21 14:39:25
    FCO-00011  The step collect with step key |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|collect was executed with status ERROR .
    Please also let me konw how much space do we require for installating the Solution manager as a central system on one drive?

    Hi Chandan,
    Well may be below SDN thread will help you... out ! try out with Curd Abstoss Response !!
    Inst. SAP NW 2004s Java SP9 - Error FJS-00003 this._name has no properties
    Hope it will work for you..as well !

Maybe you are looking for

  • Error while submitting ATG order - ATG 10.0.3

    Hi All, I am getting the below exception while submitting the order. runProcess called with chain ID = moveToConfirmation PipelineError: key=NoPaymentGroupsInOrder; error=There are no payment methods specified in the order. adding form exception: NoP

  • Installing iTunes after registry user permission error

    I'm just going to keep this simple. I ran CCleaner and cleaned the registry, then i ran Glary Utilities to clean up whatever CCleaner couldnt. THEN I downloaded iTunes from the apple website. I used winrar and extracted the install into a folder. I r

  • Test Extractor in SXMS_LMS_CONF

    Hi I'm trying to use the payload text search capabilities of PI (7.11). Our Basis guys have set it up and i have followed these instructions to setup up filters and extractors - Link: [http://help.sap.com/saphelp_nwpi711/helpdata/en/48/c85598f63335bf

  • Backup Application Data

    how to backup the application data like Myfund, xpenslt...sync to itune will take the backup of application data? Thanks

  • HT1338 Downloading Mountain Lion Issues

    Since I've donwladed Mountian Lion on my Mac Pro from 2011.  Everything has slowed down to a snail's pace.  I have OSX 10.8.2 and my processor is 2.3 GHz DDR3.  Is my processor the issue?  Do I need to upgrade it to make things operate faster with Mo