Error: Ref.pers.nos. must have the same legal person

Hi All,
I keep getting this error message when setting up a Multiple Employment for an employee.
When I get to infotype 0121 (create RefPerNo) I get the above message.
I only get it for a couple of employees I have tried to create a second position for and others work fine.
I don't understand the message as the action copies all the personnel data from the primary record, so it is the same person!?! Details are identical on 0002.
Please Help
Sam<b></b>

Hi SAM,
There might be some mismatch in data or might be because of authorization.
Let us assume, that you are using Reference Personnel number to assign different assignment for the employee, if so, you no need to maintain it in Reference number, do your Personnel Action as usual and assign different Position for the employee, so that, system recognize it as, different assignment for the same employee.
Let us know the exact error message, you are getting while executing.
Good Luck
Om
Reward it, if u feel helpful.

Similar Messages

  • Error: A file found in a source-path must have the same package structure

    I use Adobe Flex Compiler (mxmlc) Version 4.1.0 build 16032,I have a file,named CustomGraphContainerController.as,it's directory is c:\controllers,and the GCController.as file is under the same directory,CustomGraphContainerController.as file like follows
    package controllers{
    import ui.GraphControlContainer;
    public class CustomGraphContainerController extends GCController {
      public function CustomGraphContainerController(a_graphControlContainer:GraphControlContainer) {
       super(a_graphControlContainer);
    Then I want to use mxmlc command to compile it,like follows:
    C:\>mxmlc c:\controllers\CustomGraphContainerController.as
    But it raise compile errors,like follows:
    Loading configuration file C:\sdk\frameworks\flex-config.xml
    C:\controllers\GCController.as: Error: A file found in a source-path must have the same package structure '', as the definition's package, 'controllers'.
    I don't know how to compile the as file with package controllers? Where is wrong? How to use mxmlc to compile it?
    Thanks

    HI,
         You should have one main application class to compile this as code to swf.. So that main application path should be in your proper package structure.. then you can compile you app and as files also...
    Thanks
    Ram..

  • Must have the same type and the same length

    hi experts,
    DELIVERY_PLANT  data type STRING    //from proxy class, can't be changed
          BEGIN OF ty_citem,
              article type matnr,
              werks   type werks,
           END OF ty_citem,
    LOOP AT it_items INTO lv_item.
        lv_citem-article = lv_item-article.
        lv_citem-werks = lv_item-DELIVERY_PLANT.
        APPEND lv_citem TO GT_citem.
        clear lv_citem.
      ENDLOOP.
    SELECT matnr werks
           from marc
           into table GT_marc
           for all entries in GT_citem
           where matnr = GT_citem-article  and werks = GT_citem-werks.
    error message here:When you use the addition "FOR ALL ENTRIES IN itab", the fields "WERKS"
    and "GIT_CITEM-WERKS" must have the same type and the same length.

    Hi,
    You know for statement FOR ALL ENTRIES in where clause data type and length should be match.
    As per my understanding ,here GT_citem-werks is a string. But you know data type of WERKS_D is char with lencth 4.
    Use the below select statement.
    SELECT matnr werks
           from marc
           into table GT_marc
           for all entries in GT_citem
           where matnr = GT_citem-article  and werks = GT_citem-werks+0(4).
    Thanks.
    Subhankar

  • ABAP program issues..Unicode program "ITAB" must have the same structure?

    Dear Expert,
    I coded below code in se38, but system give below error message, could please kindly advie issue reason? Thanks!!
         Error message: A line of "ITAB" and "LINE" are not mutually convertible. In a Unicode program "ITAB" must have the same structure layout as "LINE" independent of the length of a . Unicode character. Unicode character.          
    REPORT  ZTEST_HIHIHI.
    Data: begin of line,
    num type i,
    sqr type i,
    end of line,
    itab type standard table of line with key table_line.
    Do 5 times.
    line-num = sy-index.
    line-sqr = sy-index ** 2.
    append line to itab.
    enddo.
    loop at itab into line.
    write: / line-num, line-sqr.
    endloop.
    clear itab.

    Hello Hoo Laa,
    This is because the way you have defined LINE, it is a structure & not a data type. Hence you are facing the issue
    You have to change the data declaration to:
    itab LIKE STANDARD TABLE OF line WITH KEY table_line.
    BR,
    Suhas

  • Greetings: I have multiple iPads and iPhones. I want all to be able to be able to stream to our Apple TV. All of the docs I see say you must have the same Apple ID for all the devices, but we each have our own Apple ID. Is this just a doc short coming?

    Greetings: I have multiple iPads and iPhones. I want all to be able to be able to stream to our Apple TV. All of the docs I see say you must have the same Apple ID for all the devices, but we each have our own Apple ID. Is this just a doc short coming?

    You can each have your own ID for your own iTunes accounts, but in order for a device to stream via AirPlay to the same Apple TV, everything must use the same homesharing ID. This is not the same as your iTunes account ID (although it can be for one of the devices)

  • TS2972 What is the point of Home Share if all devices must have the same Apple ID?  Three family members in this home would like to use the facility but all have different Apple IDs.

    Three family members use ITunes and would like to use Home Share but the HOme Share set-up guidance states that all devices must use the same Apple  ID.
    Is there a workaround for this impasse?

    Three family members use ITunes and would like to use Home Share but the HOme Share set-up guidance states that all devices must use the same Apple  ID.
    Is there a workaround for this impasse?

  • DataProvider syntax error -why cant 2 components have the same dataProvider

    Hi,
    I am getting the following error:
    Multiple Initializers for property 'dataProvider' (note:
    'dataProvider' is the default property of
    mx.controls.TitleList').
    setup
    i have two components one that is a lineChart the other is a
    titleList. for each I have identified the dataProvider property as
    the same arrayCollection (dataPoints) so my code looks like:
    <mx:LineChart
    id="linechart"
    dataProvider="{ dataPoints }" .... other properties>
    for both components. I had this same error when i tried to
    add a legend component yesterday so it is not limited to just these
    two components. I tried instantiating a variable as a type
    dataProvider, so that it was not being instantiated twice, but no
    such primitive type was available via the auto-complete code
    function. I am not sure what else to try. Thanks,
    Jed

    Greg,
    Thanks again, I figured out the problem. In the mxml I was
    using the category axis tag without having a parent horizontal axis
    tag. So for others here is how a chart needs to be structured.
    correct syntax:
    <LineChart id="linechart1" dataProvider=" {
    myArrayCollection } ">
    <mx:horizontalAxis>
    <!--use the category axis tag to tell the chart what value
    in your array collection you want to use for the x axis-->
    <mx:CategoryAxis categoryField="x"/>
    </mx:horizontalAxis>
    <mx:series>
    <!--Use the line series within a series tag to tell the
    LineChart which y field it should use to draw the line-->
    <mx:LineSeries id="yourFirstYvalues" yField="y"/>
    </mx:series>
    </mx:LineChart>
    <mx:Legend dataProvider = "linechart1" />
    Jed

  • I get this error, A file found in the source-path must have the same package structure" (As CG)

    I took a pic
    It's really holding my project im working back. I don't know how to fix this, Someone please help me. I can do screen shareing or anything I have Teamviewer installed. Thank you soo much whoever takes the time out to help me out ! P.S I had to switch from Windows to IOS Computer, So I switched from flashDevelop to FlashBuilder. I only got this error when i converted my project to flashbuilder basically copying and pasteing the source.

    Can anybody help?

  • AIR+JS Application in multiple clients, but all must have the same data

    Grettings.
    After googling, reading docs, and everything i cant find a solution to my problem.
    The thing is that i must create a adobe air app that must work in 4 clients. All the data from all the clients must be available to all the of them. If Number One makes a change, Number 3 must see that change.
    Of course, this could be done with a client-server model, but, the problem is, that if client 3 loose connection with the server, i must be possible for him to keep working locally and then when the connection with the server is restored, send all the data for replication with others clients.
    I don't know which aproach will be better for this problem, so any ideas or help will be appreciated.
    Thanks in advance.

    You'll need to use something like BlazeDS to do the polling and pushing
    of data and make use of SQLite to persist data on the client's user 
    computer when someone goes off line and then synchronize the data when 
    the user goes on line again.
    Sincerely,
    Michael
    El 20/05/2009, a las 9:17, alexbariv <[email protected]> escribió:
    >
    Grettings.
    >
    After googling, reading docs, and everything i cant find a solution 
    to my problem.
    >
    The thing is that i must create a adobe air app that must work in 4 
    clients. All the data from all the clients must be available to all 
    the of them. If Number One makes a change, Number 3 must see that 
    change.
    >
    Of course, this could be done with a client-server model, but, the 
    problem is, that if client 3 loose connection with the server, i 
    must be possible for him to keep working locally and then when the 
    connection with the server is restored, send all the data for 
    replication with others clients.
    >
    I don't know which aproach will be better for this problem, so any 
    ideas or help will be appreciated.
    >
    Thanks in advance.
    >

  • Can OracleGridControl monitor databases have the same service_name?

    I installed a oracle Grid control on a linux server ,and it can run correctly.and I installed the agents on all database nodes,they work correctly too!
    Now my problem is all the nodes are monitored by the server must have the same oracle serviece_name.
    So in the browser , my grid control can find all the nodes,but only find one database.
    [b]I wonder if it's because the all database have the same service_names?
    Is there any method to solve the problems?Can I change the name in gridControl!

    Yes - you may find that they went to the "duplicates" area (see the setup->management and repository tab). What you need to do is go into the agent page, rediscover the service, then configure it and change the service name - perhaps by adding the host name on to it. Similar thing happens when all of your listeners are called LISTENER. If you go the the various hosts and in the targets.xml file you will see the DISPLAY_NAME - this is what you need to change to make them different.

  • I updated iTunes to 10.4 version and now it doesn't start and sen a messages "iTunes has detected an error and must be closed". Someone have the same problem and how can we repair our installation insted of change the windows XP installation? Best regard

    I updated iTunes to 10.4 version and now it doesn't start and send a messages "iTunes has detected an error and must be closed". Someone have the same problem and how can we repair our installation insted of change the windows XP installation? Best regards

    Only way to get iMac starting again was to re-install 10.4.4 from DVD, and then update it into 10.4.6. For a while it worked perfectly, just as before.
    Then I tried to print to CD with my EPSON Stylus Photo 950 from Adobe Photoshop Elements (2.0). It didn't print anything, but printer started flashing all lights. The print job was not performed, so I did remove it from the Printer Utility. After that the iMac started "ticking" again, same noise than before, after 10.4.7 installation. I did re-boot iMac. It never started, it does stuck on gray screen (gray block running clockwise). HW test from DVD didn't find any problems (extended search looping 3 times). But Disk Utility found hard drive to have inaccurate node structure, it could not fix it.
    Apple support recommended to use DiskWarrior. However, it does not support (yet) Intel Macs. I haven't got TechTool Pro 4.5.1 anywhere. iMac does start on to FireWire mode (T at boot), but I cannot see the disk from 10.2.8 iMac.
    So, obvisously the problem is not 10.4.7. I believe it to be ESPON printer driver compatibility on Mac OSX. This does not suprise me, EPSON printers *****, I shall never purchase one again. However, disk catalog structure should not get messed by one faulty printer driver!

  • We have 150 iPads at our school. What effective ways have you found to update and download new apps to such a large number of iPads? Can I download different apps to different sub sets of our large group - or must they all have the same apps?

    At our elementary school, our 150 iPads are separated into 5 subsets.  Can I download different apps to each subset, or must they all have the same apps since they all share the same Apple ID.  Some iPads are for grades k-2, and some are for 3-5.  I'd like to have the best apps for the different grade levels on the iPads.  Currently we have "iPad Carts" to house our  iPads in, and could use them to upload and update apps all at once, but don't utilize this function as we have a custom set up for the iPads that is erased each time we update through the carts.

    You can configure different set of apps for different groups of ipads.
    You need an mdm to do this.
    "This document offers guidance on some important considerations for getting the most out of your iOS deployment." Covers: Prepare your infrastructure.  Set up devices.  Configure and manage devices.  Deploy apps and content.  Plan for support. 
    https://www.apple.com/ipad/business/docs/iOS_Enterprise_Deployment_Overview_EN_F eb14.pdf
    Quick overview of zero-touch MDM enrollment, DEP
    http://www.apple.com/education/it/dep/
    Consider DEP, Device Enrollment Program. Use VPP, Volume Purchase Program.  Select an MDM, Mobile Device Management.  Read the Google doc below and nsdjoey write up.
    IT Resources -- ios & OS X -- This is a fantastic web page.  I like the education site over the business site.
    View documentation, video tutorials, and web pages to help IT professionals develop and deploy education solutions.
        Education
          http://www.apple.com/education/ipad/resources/
          scroll down after all the pretty picture.  Click on the words "For It".
        business site is:
           http://www.apple.com/lae/ipad/business/#browse-it-resources
          If necessary, scroll down until you see the Browse IT Resources button.  Click on button.
        MDM --  Mobile Device Management  
          For a comparison see this page:
          http://www.enterpriseios.com/wiki/Comparison_MDM_Providers
        VPP -- Volume Purchase Program
          http://www.apple.com/education/it/vpp/
    Joe Rowe's Excellent guides
    IT managers who are new to configurator and managing a cart of ios devices:
          https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?pli=1
             [ original announcement  -- https://discussions.apple.com/thread/4256735?tstart=0 ]
    Quick help presentation for students:
         https://docs.google.com/presentation/d/18937JdleX2gymtSb8zfbDczV-76BdR2DIfCV9eJi yOE/edit#slide=id.g1b776944_0_224
    MDM  -- Mobile Device Management  
    MDMs
    Airwatch, Meraki, MobileIron, Profile Manager on OS X Server, or Zenprise
    For a comparison see this page:
    http://www.enterpriseios.com/wiki/Comparison_MDM_Providers
    Airwatch
       http://www.air-watch.com/
    Meraki -- A free MDM   [ expect lots of email and phone calls about upgrades ]
       Read the product overview.  Click on "get started now" to sign up.
         https://meraki.cisco.com/products/systems-manager/?ref=YZRzCR
       Video's on how to setup and use Meraki.
         https://meraki.cisco.com/blog/2012/08/how-to-get-the-most-from-meraki-systems-ma nager/
    MobileIron
       http://www.mobileiron.com/
    Apple Configurator and Apple Profile Manager
    "Apple Configurator makes it easy for anyone to mass configure and deploy iPhone, iPad, and iPod touch in a school, business, or institution."  Limited to Macs.  Connects via USB cable.
    http://itunes.apple.com/us/app/apple-configurator/id434433123?mt=12
      "Profile Manager lets you configure OS X and iOS devices so they’re set up to use your company or school resources and have the settings, apps, and books your organization requires. Profile Manager creates settings and preference bundles for devices and deploys them to devices via the Mobile Device Management (MDM) service."  Requires OS X server.
    http://www.apple.com/uk/support/osxserver/profilemanager/
    Zenprise
       http://www.zenprise.com/

  • I'm a school tech coordinator. Many computers and many iPads. How many Apple IDs can I have per device, and how many devices can have the same Apple ID? To make my life easier, I'd like 200 devices to all use the same Apple ID.

    I'm a school tech coordinator. I have many computers and many iPads. I apologize if there is a some place that has all the rules governing the use of Apple IDs. I looked, and I even tried to get the answers from multiple Apple rep's. I couldn't find the answers.
    How many Apple IDs can I have per device?
    I want to use the same computer to sync and backup many iOS devices. The iOS devices would be associated with different Apple IDs.
    I may load apps under a school Apple ID and have users load their own apps under thier own ID.
    How many devices can have the same Apple ID?
    Can I use the same Apple ID on all the computers in a lab?
    Can I use the same Apple ID on all iPads for a particular grade level?
    Are the rules different for iOS devices and computers?
    I know that there are limits on "authorize" and "de-authorize" and how frequently those things can be done.
    Recently I heard that for the life of an iOS device, it can only be associated with five Apple IDs. That is not good for a school giving iPads to students in a 1:1
    To make my life easier, I'd like 200 devices to all use the same Apple ID.

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html
    It would be best to address your questions there, especially since this is a public forum, and over there you could post more private issues with this set-up. Not to mention, getting more official answers.

  • HT1926 Have the same problem as many other users: tried to update iTunes on Windows 7 today; first message "unable to locate component- MSVCR80.dll was not found" then "iTunes was not installed correctly. Please reinstall iTunes - Error 7 (Windows error 1

    I have the same problem as many other users: updated iTunes on Windows 7 on Jan 26, 2014 and iTunes does not open.  First message "unable to locate component- MSVCR80.dll was not found" then "iTunes was not installed correctly. Please reinstall iTunes - Error 7 (Windows error 126)". When will Apple fix this? Don’t feel like uninstalling all Apple software and then re-installing it as suggested, as I am on a terribly slow internet connection while travelling in the DR Congo.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall press on)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Error "Members, tuples or sets must use the same hierarchies in the function" in MDX

    the following MDX returns error: "Members, tuples or sets must use the same hierarchies in the function"
    WITH
    MEMBER [Measures].[Prev Year] AS
    [Measures].[returns],
    PARALLELPERIOD
    [Exec Date].[Year].Levels('Year'),
    1,
    [Exec Date].[Year].CURRENTMEMBER
    MEMBER [Measures].[Prev Month] AS
    [Measures].[returns],
    PARALLELPERIOD
    [Exec Date].[Month Num].Levels('Month Num'),
    1,
    [Exec Date].[Month Num].CURRENTMEMBER
    MEMBER [Measures].[Prev Day] AS
    [Measures].[returns],
    PARALLELPERIOD
    [Exec Date].[Day].Levels('Day'),
    1,
    [Exec Date].[Day].CURRENTMEMBER
    SELECT NON EMPTY { StrToMember("@ExecDateLevel"), [Measures].[returns] } ON COLUMNS, NON EMPTY { ([Employees].[Company].[Company].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM (
    SELECT (
    STRTOSET(@ExecDateHierarchy, CONSTRAINED)
    ) ON COLUMNS FROM [cbSales]) WHERE ( IIF( STRTOSET(@ExecDateHierarchy, CONSTRAINED).Count = 1, STRTOSET(@ExecDateHierarchy, CONSTRAINED), [Exec Date].[Hierarchy].currentmember ) ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
    and when I replace "StrToMember(@ExecDateLevel)" with
    StrToMember("[Measures].[Prev Month]") the MDX is compiled correctly.
    what is the problem?
    How can I solve that?

    Hi Breceive,
    In your scenario, the issue is caused by that you select dimension members and measures on the same axis without a crossjoin.
    SELECT NON EMPTY {  StrToMember("@ExecDateLevel"), [Measures].[returns] } ON COLUMNS
    To avoid this issue, you can use the query below.
    WITH
    MEMBER [Measures].[Prev Year] AS
    [Measures].[returns],
    PARALLELPERIOD
    [Exec Date].[Year].Levels('Year'),
    1,
    [Exec Date].[Year].CURRENTMEMBER
    MEMBER [Measures].[Prev Month] AS
    [Measures].[returns],
    PARALLELPERIOD
    [Exec Date].[Month Num].Levels('Month Num'),
    1,
    [Exec Date].[Month Num].CURRENTMEMBER
    MEMBER [Measures].[Prev Day] AS
    [Measures].[returns],
    PARALLELPERIOD
    [Exec Date].[Day].Levels('Day'),
    1,
    [Exec Date].[Day].CURRENTMEMBER
    SELECT NON EMPTY { StrToMember("@ExecDateLevel")*[Measures].[returns] } ON COLUMNS, NON EMPTY { ([Employees].[Company].[Company].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM (
    SELECT (
    STRTOSET(@ExecDateHierarchy, CONSTRAINED)
    ) ON COLUMNS FROM [cbSales]) WHERE ( IIF( STRTOSET(@ExecDateHierarchy, CONSTRAINED).Count = 1, STRTOSET(@ExecDateHierarchy, CONSTRAINED), [Exec Date].[Hierarchy].currentmember ) ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
    Here is a similar thread for you reference.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/3c21d9a8-640d-4dde-bc76-08d1fcbb3a31/multiple-dimension-query?forum=sqlanalysisservices
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • How can I do GR/IR clearing more effectively

    Hi I was required to do GR/IR clearing for 2 quarters in 2013. Those accounts are very old, and I found lots of GRs are still open because no IR posted against. I was instructed to confirm with every PO creater to see if all the payments have been ma

  • Bluetooth head set

    Hi, I have been using Nokia Bluetooth head set BH-101 along with Nokia phone. Recently I have switched to BB 8900. I wanted knw if the same  Nokia Bluetooth head set BH-101 work with BB 8900. Cheers. Ram

  • How can I enforce a time limit across 2 iMacs?

    I have 2 iMacs in my house, 1 is my lil sister's iMac and one is mine, hers has gotten old and slow. On it she has parental controls allowing her to be on for certain times of the day for a certain amount of time. I'd like to make her account on my c

  • Why does my facebook say restricted under data usage?

    For some reason my phone is using a lot of data when I only use the internet when I'm at home and its connected to our internet.  I checked on my phone under data usage to see where it is all going and everything is using very little data except unde

  • BB Link, USB Sync to Outlook????

    When will I be able to sync to my desktop Outlook  via USB to my  new Z10 using BB Link?  ... I see posts from early February saying BB would release an update for Link to fix this glaring ommision.   Anyone know?