HR_INFOTYPE_OPERATION is not working in user exit ZXPADU02

Hi frndz,
  i want to delimit/modify record in infotype 0014 after checking some condition when user clicks on SAVE in infotype 0008.
For this i'm using the code like below.
In Include ZXPADU02.
when '0008'.
IF sy-ucomm = 'UPD'.
chek <condition>
if sysubrc = 0.
Lock employee.
Delimti(LIS9) record in IT0014 using HR_READ_INFOTYPE_OPERATION.
Unlock employee.
endif.
Here every thing working fine but record is not getting delimitted.
Could anybody please help me any other possibilities to solve it.
Thanks and Regards,
Venkat

Hi,
I tried to use the FM HR_INFOTYPE_OPERATION in ZXPADU02 but I found that it will
not update data in the real DB table(PAXXXX).I found that in FM 'HR_MAINTAIN_MASTERDATA' from FM 'HR_INFOTYPE_OPERATION' will set the field 'PSPAR-PBPFL' as 'X'.
In standard program, it looks like if this field is set it will not do the logic to update the DB table. So I put the code in other report and then call in the ZXPADU02. I think it's about LUW.
Code as follows to understand.
data:
      lw_p0008      LIKE p0008,
      lw_pskey      LIKE pskey,
      lv_option,
          EXPORT lw_p0008 lw_pskey lv_option
            to memory id 'ZXPADU02_0008'.
          submit ZHRR_PA_ZXPADU02_0008
                 and return.
Inside program ZHRR_PA_ZXPADU02_0008
IMPORT w_p0008 lw_pskey lv_option
    FROM MEMORY ID 'ZXPADU02_0008'.
  CALL FUNCTION 'ENQUEUE_EPPRELE'
        EXPORTING
          pernr          = lw_p0008-pernr
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
  CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
      infty                  = '0008'
      number                 = lw_p0008-pernr
      subtype                = lw_pskey-subty
      objectid               = lw_pskey-objps
      lockindicator          = lw_pskey-sprps
      validityend            = lw_pskey-endda
      validitybegin          = lw_pskey-begda
      recordnumber           = lw_pskey-seqnr
      record                 = lw_p0008
      operation              = lv_opera
*      TCLAS                  = 'A'
*      DIALOG_MODE            = '1'
*      nocommit               = 'X'
*     VIEW_IDENTIFIER        =
*     SECONDARY_RECORD       =
    IMPORTING
      return                 = lw_return
*      KEY                    =
  IF NOT lw_return IS INITIAL AND
     lw_return-type EQ 'E'.
    MESSAGE e000(38) WITH lw_return-message.
  ENDIF.
  CALL FUNCTION 'DEQUEUE_EPPRELE'
    EXPORTING
      pernr = lw_p0008-pernr.
If this not works, then go for dynamic action from V_T588Z as suggested by Suresh.
Regards
Eswar

Similar Messages

  • Deletion indicator not working after user exit error

    Hi Gurus,
    I had one requirement in Purchase Requisition. If the number of items increase by 36 , there should be an error saying that maximum items reached but once that item is deleted that error should disappear.
    I have written the coding in an Exit: EXIT_SAPLMEREQ_010.
    And the coding is :
    IF gs_eban-bsart = gcz902.
    LOOP AT gt_eban INTO gs_eban
    where loekz is initial.
    LOOP AT gt_ebkn INTO gwa_ebkn WHERE banfn = gs_eban-banfn
    and bnfpo IN r_bnfpo.
    recherche division- ordre interne
    LOOP AT ot_div into gwa_div WHERE ot = gwa_ebkn-aufnr AND div = gwa_ebkn-bnfpo.
    ENDLOOP.
    IF sy-subrc NE 0.
    gwa_div-ot = gwa_ebkn-aufnr.
    gwa_div-div = gwa_ebkn-bnfpo.
    APPEND gwa_div TO ot_div.
    ENDIF.
    ENDLOOP.
    ENDLOOP.
    DESCRIBE TABLE ot_div LINES n.
    IF n >= 37.
    case sy-ucomm.
    WHEN 'MESAVE'.
    MESSAGE e111(zpfr) with n.
    exit.
    ENDCASE.
    ENDIF.
    ENDIF.
    So now the exit is working fine......but when i go to delete that extra item it is not getting deleted , so while saving the information message comes that no data changed.
    So ho wto delete that extra item.
    Do anyone have reply....
    thanks in advance.

    Hello.
    If you insert 37 lines you get your error message. But if you delete 1 row, you get error message again, right?
    I think that's because you are not refreshing internal table ot_div. Shouldn't you refresh it before LOOP AT gt_eban INTO gs_eban?
    Regards.
    Valter Oliveira.

  • User exit ZXPADU02 - evaluating SY-UCOMM

    Hello everyone,
    I am trying to display an error message whenever someone tries to create a new work schedule rule (P0007-SCHKZ) in infotype 7. However, the error message should just come up when the user is trying to save his data.
    I am using user exit ZXPADU02 for this purpose. My problem is that SY-UCOMM does not seem to hold reliable data in this user exit, and SSCRFIELDS does not seem to be supported at all.
    My code looks like this (only the relevant code snippet in ZXPADU02):
    CASE INNNN-INFTY.
            WHEN '0007'.
          CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PRELP_TO_PNNNN
            EXPORTING PRELP = INNNN
            IMPORTING PNNNN = P0007.
          CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PRELP_TO_PNNNN
            EXPORTING PRELP = PSAVE
            IMPORTING PNNNN = P0007_ALT.
          IF P0007_ALT-SCHKZ <> P0007-SCHKZ
          AND IPSYST-MASSN IS INITIAL " do not warn within an info group of a personnel action
          AND SY-UCOMM = 'UPD'. " only warn when saving the data -> problem here <-
            MESSAGE 'Do not change IT7 directly or else.' TYPE 'I' DISPLAY LIKE 'E'.
            SHOW_DATA_AGAIN = 'X'.
          ENDIF.
    At first glance, the above works nicely.  But this is what happens when I test more thoroughly:
    I create a new period in IT 7, enter a P0007-SCHKZ other than the one that was previously valid, press F11. Some warnings appear (for different reasons), which I dismiss using the Enter key. Afterwards, the above code fires, the error message is being displayed, and I am thrown back into the data screen. So far, so good.
    Now I simply alter the value in the field "Weekly hours" (P0007-WOSTD) and press Enter (!). Again a series of warnings appear, including one that a dataset is going to be deleted (seeing that an IT 7-period with just the same date range already exists). I confirm that with Enter, and the data is being saved. The above code does not fire because I have only pressed Enter - but the data is being saved anyway!
    Looks like a pretty erroneous behavior on the side of the SAP system. The question is whether I have a chance to do something about it in the code.

    Mihir Nagar wrote:
    Dear Petersen,
    Your IF condition seems ok. I doubt on the message statement. Can you replace your message statement with type E.
    MESSAGE 'Do not change IT7 directly or else.' TYPE 'E'.
          ENDIF.
    Hope this works.
    Regards,
    Mihir.
    I did not expect this to work, because normally you use type 'E'-messages only in certain PAI-environments, but it does the job, thank you!
    make use of  field IOPER of the structure  PSYST to check on the infotype actions INS, MOD, COP, DEL...
    In this particular case I did not care, so I did not check that. IT 7 should only be maintained through personnel actions in our case.
    Next you can check with sy-ucomm field the different between "enter" and "save". With "save" sy-ucomm will be 'UPD'.
    That is what I did, but as I described, there was a situation when SY-UCOMM is SPACE, but the system saved anyway due to a prior save attempt.

  • Default Dashboard not working after user login

    Hi All,
    We have one issue in 11.1.1.7.1 where PORTALPATH is not working for users. As a result, user lands on home page/recent page instead of the default dashboard after login.
    I followed Doc ID 1576576.1 and Bug 17071629 - PORTALPATH SESSION VARIABLE IS INEFFECTIVE is reported. I applied patch 17071629 on top of 7.1. I have tried and verified that
    ·     The URL we are using to login is “http://machinename:9704/analytics/saw.dll?bieehome&startPage=1”
    ·         There is no Start Page set  in user’s My Account other than Default.
    ·         In Answers, the PORTALPATH session variable fetches correct dashboard path.
    ·         I removed space in the dashboard name and tried with following path “/shared/Dashboard/_portal/PortalPathTest”. Also, assigned same default value to the session variable. I also tried “/Shared Folders/Dashboard/Dashboards/PortalPathTest” and “%2fshared%2fDashboard%2f_portal%2fPortalPathTest” but nothing works.
    ·         lsinventory shows the patch got applied successfully.
    One thing to notice -
    1.       Login url is: "http://machinename:9704/analytics/saw.dll?bieehome&startPage=1"
    2.       After login, browser URL gets changed to "http://http://scoreboard-sit.wellsfargo.com:9704/analytics/saw.dll?bieehomemachinename:9704/analytics/saw.dll?bieehome" and shows Home Page instead of default dashboard.
    3.       Now at this stage, if I append "&startPage=1" to the above step 2 URL in browser, it automatically navigates to correct default dashboard.
    Also, This patch has fixed default dashboard in Act As. That means, If I act as a User, I land on correct default dashboard. But if same user actually logs in, s/he lands on home page.
    I suspect if URL redirection after login is the actual issue. Please suggest if anyone has an idea.
    Thanks,
    Akshat

    I think this was the issue -
    There was a java script error related to an undefined object, "accessMode" in logon.js.  This is related to Accessibility or Section 508 (checked by Developer Tools of IE).  We may have removed this code from the logon page which was causing the error. We had customized the page quite a bit previously. When I ignore the error and step through, I go to the correct portal path page. So we are going to replace the logon.js file with backup and hopefully it will fix the issue.
    Cheers!
    Akshat

  • Print Screen not working for user but working for Administrator

    Satellite A100 Laptop Print Screen Not working for USER but is working for Administrator[ New ]
    09-14-2009 11:25 AM
    Hi I am new to this forum and am asking for your  help.  We are sharing a computer, the PrtSc key is working for the Administrator but not when we switch users.  We have tried everything that we can think of: From opening a the page(S) we want to paste to not opening the pages. My most common usage is to PrtSc and paste it into an email , but barring that we have tried opening a page in notes, documents, word etc . Nothing seems to work.  I do not get an error message , it just won't paste. Since we are not computer literate we are hoping you can help us with a solution .  Thanks in Advance .

    Jerry, that post you just answered was from nearly 4 1/2 years ago!  And that's the last time the OP was here.
    C.B.
    Toshiba Sat. C75D-B7260 Win 8.1 64 Bit--Toshiba Sat. L775D-S7132 Win 7 HP SP1 64 Bit and Win 10 PRO Technical Preview--Toshiba Sat. L305-S5921 Win Vista SP2 32 Bit

  • Xmms not work as user

    My xmms does not work as user, but works as root. I give permissions for users in devfsd.conf, but when I klick to play file it does not pick up the file. The file name does not appear in the window. With Mplayer is does the same.  What is the problem?

    her is my devfsd.conf:
    # Richard Gooch  <[email protected]>        17-FEB-2002
    # Enable full compatibility mode for old device names. You may comment these
    # out if you don't use the old device names. Make sure you know what you're
    # doing!
    REGISTER    .*        MKOLDCOMPAT
    UNREGISTER    .*        RMOLDCOMPAT
    # You may comment out the above and uncomment the following if you've
    # configured your system to use the original "new" devfs names or the really
    # new names
    #REGISTER    ^vc/        MKOLDCOMPAT
    #UNREGISTER    ^vc/        RMOLDCOMPAT
    #REGISTER    ^pty/        MKOLDCOMPAT
    #UNREGISTER    ^pty/        RMOLDCOMPAT
    #REGISTER    ^misc/        MKOLDCOMPAT
    #UNREGISTER    ^misc/        RMOLDCOMPAT
    # You may comment these out if you don't use the original "new" names
    REGISTER    .*        MKNEWCOMPAT
    UNREGISTER    .*        RMNEWCOMPAT
    # Enable module autoloading. You may comment this out if you don't use
    # autoloading
    LOOKUP        .*        MODLOAD
    # Uncomment the following if you want to set the group to "tty" for the
    # pseudo-tty devices. This is necessary so that mesg(1) can later be used to
    # enable/disable talk requests and wall(1) messages.
    #REGISTER    ^pty/s.*    PERMISSIONS    -1.tty    0600
    #REGISTER    ^pts/.*        PERMISSIONS    -1.tty    0600
    # Uncomment this if you want permissions to be saved and restored
    # Do not do this for pseudo-terminal devices
    #REGISTER    ^pt[sy]        IGNORE
    #CREATE        ^pt[sy]        IGNORE
    #CHANGE        ^pt[sy]        IGNORE
    #DELETE        ^pt[sy]        IGNORE
    #REGISTER    .*        COPY    /dev-state/$devname $devpath
    #CREATE        .*        COPY    $devpath /dev-state/$devname
    #CHANGE        .*        COPY    $devpath /dev-state/$devname
    #DELETE        .*        CFUNCTION GLOBAL unlink /dev-state/$devname
    #RESTORE        /dev-state
    # Uncomment this if you want the old /dev/cdrom symlink
    #REGISTER    ^cdroms/cdrom0$    CFUNCTION GLOBAL mksymlink $devname cdrom
    #UNREGISTER    ^cdroms/cdrom0$    CFUNCTION GLOBAL unlink cdrom
    REGISTER        ^sound/.* PERMISSIONS root.sound 660
    REGISTER         ^snd/.* PERMISSIONS root.sound 660
    # Uncomment this to let PAM manage devfs
    #REGISTER    .*        CFUNCTION /lib/security/pam_console_apply_devfsd.so pam_console_apply_single $devpath
    # Uncomment this to manage USB mouse
    REGISTER    ^input/mouse0$    CFUNCTION GLOBAL mksymlink $devname usbmouse
    UNREGISTER    ^input/mouse0$    CFUNCTION GLOBAL unlink usbmouse
    REGISTER    ^input/mice$    CFUNCTION GLOBAL mksymlink $devname usbmouse
    UNREGISTER    ^input/mice$    CFUNCTION GLOBAL unlink usbmouse
    # If you have removable media and want to force media revalidation when looking
    # up new or old compatibility names, uncomment the following lines
    # SCSI NEWCOMPAT  /dev/sd/* names
    #LOOKUP        ^(sd/c[0-9]+b[0-9]+t[0-9]+u[0-9]+)p[0-9]+$    EXECUTE /bin/dd if=$mntpnt/1 of=/dev/null count=1
    # SCSI OLDCOMPAT  /dev/sd?? names
    #LOOKUP        ^(sd[a-z]+)[0-9]+$    EXECUTE /bin/dd if=$mntpnt/1 of=/dev/null count=1
    # IDE NEWCOMPAT   /dev/ide/hd/* names
    #LOOKUP        ^(ide/hd/c[0-9]+b[0-9]+t[0-9]+u[0-9]+)p[0-9]+$    EXECUTE /bin/dd if=$mntpnt/1 of=/dev/null count=1
    # IDE OLDCOMPAT   /dev/hd?? names
    #LOOKUP        ^(hd[a-z])[0-9]+$    EXECUTE /bin/dd if=$mntpnt/1 of=/dev/null count=1

  • Update infotype 0032 in user exit ZXPADU02

    Hi All,
    I have the following requirement.
    Telephone extension number is stored in IT0105 and IT0032. When the extension number is updated through ESS, this is stored in IT0105 but it does not update IT0032 which is displayed in MSS.
    I need to update infotype 0032 based on the data in 0105.
    I thought I could update infotype 0032 in userexit ZXPADU02 whenever infotype 0105 was saved using the function module HR_INFOTYPE_OPERATION but it is not working for me.
    Any help would be appreciated.
    Elaine

    You have to make the function call a separate unit of work.One other option is to put the function call in a report & SUBMIT it from the User exit.
    ~Suresh

  • Dimension security is not working if user have two roles in SSAS while connecting from Excel

    Hello Genius,
    I am facing the issue when user trying to connect the cube from excel if user have more than one role in ssas db.
    Role 1: Countryuser, I have implemented the dimension security with country
    dimension and  countrycode attribute.
    Role 2: CityUser,   I have implemented the dimension security with
    city dimension and  citycode attribute.
    If user is mapped to any one of above role dimension security is working perfectly according to the logic but mapped to both role, cube is exposing all the data in this case dimension security is not working.
    Please give me the solution to fix this issue or incase I am wrong kindly advice.
    Thanks
    Ganesh

    This is the expected behaviour as allowed sets in roles are unioned together.
    This is not a problem when your roles are restricting across a single attribute.
    eg.
    US_role = {[Geography].[Country].[USA]
    France_role = {[Geography].[Country].[France] }
    as someone in both roles ends up seeing {[Geography].[Country].[USA], [Geography].[Country].[France] }
    But when you have different attributes:
    NY_role = {[Geography].[City].[New York] }
    France_role = {[Geography].[Country].[France] }
    The first role is unrestricted on countries and the second is unrestriced on cities which is effectively:
    NY_role = {[Geography].[Country].AllMembers , [Geography].[City].[New York]  }
    France_role = {[Geography].[Country].[France], [Geography].[City].AllMembers }
    And when you union those two sets together you end up with:
    {[Geography].[Country].AllMembers , [Geography].[City].AllMembers }
    Which means that someone in both roles can see everything.
    So if you want to restrict someone to City = New York and Country = France you have to create a
    single role where both attributes are restricted. So if you have a lot of these combinations you will either have to create a lot of "combination" roles or look at dynamic security.
    The other thing that might work is make sure that you only give some users access to certain cities and others access to certain countries. It's the mixing of the two for a single person that causes the issues.
    http://darren.gosbell.com - please mark correct answers

  • Mod_rewrite not working in user folders?

    Hi everybody,
    I experience a odd problem and maybe somebody can help. I use a 10.5.8 OS X Server running Apache with PHP 5.3.0.3 entropy update and all works fine.
    Today I tried to create .htaccess file to redirect some http requests, also known as url rewriting using mod_rewrite.so. I tried to create a file in /Library/WebServer/Documents with this content:
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.+) index.php?site=$1 [L]
    and a index.php file with this content:
    <pre>
    <?
    print_r($_REQUEST);
    ?>
    </pre>
    This prints, whatever was given as parameter to my page… as expected.
    Little later i wanted to use the very same files in my User Folder, which is based in /Volumes/Users/Userdata/username/Sites/ and it does not work, the url rewriting does not work and I always get 404 message. Looks like the Rewrite Rules never get loaded…
    Is there any way to enable url rewriting for Users? Where is the config file that forces an "AllowOverride None" for my users? Any ideas?
    I had a similar problem with php earlier on, which was parsed php files in the main document directory but not within user folders… odd enough, the default configuration(no php.ini loaded) does not cause this kind of problem, but if i load a php.ini eg. php.ini-recommended no filles will be parsed in my users sites directory.
    this is not unique to my user account and affects all users on the server
    any ideas?

    This just sounds like a classic Apache configuration question.
    By default (at least in Apple's default configuration - I have no idea what Entropy do to the configs), .htaccess files are disabled (for both security and performance reasons).
    In this case, since the .htaccess rewrites work in your root directory it sounds like someone has enabled .htaccess there but haven't done for the user's home directories.
    In order for rewrites to work in a .htaccess file the directory needs the FileInfo override set. This is typically done in a <Directory> declaration in your config file, like:
    <Directory "/Volumes/Users/Userdata/username/Sites">
      AllowOverride FileInfo
    </Directory>
    This tells Apache to permit FileInfo-based commands in a .htaccess file in the specified directory.
    Just make sure you trust your users, though - putting too much power in the hands of your users could compromise your server security.

  • What are all the key words are not recommented in User Exit or Enhancement

    Dear Experts,
    Can any of one tell me, what are all the key words not recommended to use any of the User exit or Enhancement spots?
    Regards,
    Mohana
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Feb 22, 2011 4:10 PM

    No Icon:Visitor
    Student
    Honor Student
    Top Student
    Tutor
    Intern
    Teacher
    Grad Student
    Master’s Graduate
    PhD Student
    Associate Professor
    Professor
    Distinguished Professor
    Regents Professor
    Associate Dean
    Dean
    Provost
    FONDA X. COX, PhD

  • Work schedule - user exit or configuration?????

    Hi all,
    We want that in our work schedule, second and fourth saturdays of a month should be offs and first and third would be working .If a month has 5 saturdays, then first, third and fourth saturday would be working and second and fifth should be off.
    What configuratino we can do about it? Is there any user exit for it? Please let know how to proceed for this in SAP?
    Thanks
    Ribhu

    Hi Ribhu,
    Here is the steps to define the WS rule:
    Img -> TM - > WS
    1. Define your required Break Schedule
    2. Rule for your Variants
    3. Create the required various Daily WS like Mng, Gen, Off. ( DWS consist of Planned hrs, Timings, Rule for Variant, Break Schedule, DWS class to differentiate from other, usually will assign 0 for Off and 1 - 9 for working day)
    4. Period Work Schedule -> Assign Mng or Gen from mon to Saturday for First week and Mon to Fri for second week and off for Saturday also... like that assign as per your need for One month.
    5. Create the Day type rule.
    6. Create the WSR for your Period WS. It is nothing but the assigning the Reference date and day for your WS Rule.
    7. Generate your WSR for your EE subgroup, Calendar and WSR for particular period. (Tcode: PT01)
    Good Luck
    Om
    Reward it, if u feel helpful.

  • Flash 10.1 not working in User account

    I am running Vista Ultimate 32bit, fully patched.
    I have Internet Explorer 8.0.6001.18928
    I have installed Flash Player 10 ActiveX 10.1.53.64
    Flash all works if I login in as administrator, or if I Run As Administrator IE.
    In a user account SOME(?) flash content does not display.
    Eg. the SWF at http://kb2.adobe.com/cps/155/tn_15507.html and the FLVs at http://www.acpmh.unimelb.edu.au/resources/resources-education.html
    If I create a new user account the behaviour is the same, so the problem is not a corrupt user profile.
    This problem started EITHER when I installed Flash Player 10.1 OR when I installed Microsoft's last set of Patch Tuesday updates.
    I have used the standalone uninstaller and installer to reinstall without sucess.

    First the good news:
    The secret to installing Flash 10.0 is to reboot after running the uninstaller.
    I could then install Flash 10.0 in my Admin account.
    Now the bad news:
    It hasn't solved my problem!
    Flash content works in the Admin account, but it doesn't work in the User account, even starting IE with Run as Administrator!!!
    I have checked thta the SWF Add-On is enabled.
    This is worse that where I was at the start of this thread.
    I'm puzzled now.
    By using System Restore to go back to 10 June (Flash 10.0 and pre Patch Tuesday) and then installing Flash 10.1 I though that I had proved that I have a Flash problem, not a Windows problem.
    I could go back to 10 June and install all the patches, Itunes 9.2, Acrobat Reader 9.3 etc. but leave Flash at 10.0.
    I'm just not feeling confident that I would end up with something that works and is stable.

  • ISight not working on user account

    Okay so I did all the troubleshooting techniques and narrowed it down to my iSight not working on my main account.
    It works perfectly fine on another account though.
    Does anyone know how to fix it on my main account?
    I really don't want to have to log into my guest account every time I want to use Photobooth.
    I have a Macbook Pro running OS X version 10.5.8

    Well done!  You have used the troubleshooting tips to prove that your normal (old) user account is damaged.
     Cassie D wrote: ... Does anyone know how to fix it on my main account? ... 10.5.8
    Because there are many thousands of files in any OS X system, I have never successfully "repaired" a user account. It is faster, easier, and more reliable to merely change to a new account that works properly.  Here is how I do it.
    First, if you do not already have one, make a current backup of your important files.  If you need help, see: http://support.apple.com/kb/HT1553
    Next, decide whether you want to use one of the existing test user accounts that you already know works.  Renaming account names can cause serious problems, so if you want a different name for your new everyday user account, it is best to create account with the name you like.  Test the new account, too, to be sure it is working properly before proceeding.
    Now, copy needed data from your backup into your new user account that works.  Begin using this new account as your every-day "main" login account. Do not move or delete anything from the old (damaged) account at this time.
    If you must add any third-party items to your new account, add only one at a time. Test thoroughly before adding another third-party item. This technique will help you quickly identify any particular item that might have been the cause of a conflict in your old account.
    Use your new account long enough so you can be certain that everything you do with your Mac is working properly in the new account. Depending on how you use your Mac, this can take weeks or even months.
    When you are certain that all is well with the new account that is now your normal account, you can throw away your damaged (old) original user account folder to reclaim its disk space.
    Message was edited by: EZ Jim

  • Work Order User Exit

    Hello All,
    I need an user exit to get the order number when the order is saved via IW31. I am looking at the exit 'IWO10009', but I don't get the order no yet in this exit. The order no in structure <b>CAUFVD_IMP-AUFNR</b> has temp value like '%00000000001'. I need to get THE order no ( looking for an user exit which triggers <b>after 'SAVE' and before 'COMMIT'</b>.)
    Anybody can help me?
    Any kind of help is highly appreciated.
    Thanks,
    Chandra

    user exit : IWO10012
    Function exit : EXIT_SAPLCOIH_012

  • Has anyone worked on user exits in MILL_CUT_LBA transaction code?

    hi ,
    Does any one know about the exit EXIT_SAPL_MILL_MM_OB_001 .
    where is it used?
    is there any User exit which can be used while Positng the document?
    I have done a full search ussing all methods for finding user exit and badis.
    kindly let me know.

    answered

Maybe you are looking for

  • How can I find out the apn number of the battery without having it?

    I dont have the battery of my iphone 5 anymore but how can i find out the apn number of the battery? I would like to change it but i need to know the apn number to choose the right battery.

  • How can i tell if my iphone4 has a virus?

    How can I find out if my iphone 4s has a virus?

  • Oracle 11g Performance Issue

    We have Oracle 11g (11.1.0.6) on HP-UX environment with CC&B application. It was working fine and after we upgrade the database to 11.1.0.7 last week, since then the database performance is really slow. After we upgrade the database we notice that xd

  • A question from my textbook.

    I read up on a question from my textbook that has wording which confuses me... Here it is from Java Concepts by Cay Horstmann: "Implement a combination lock class. A combination lock has a dial with 26 positions labeled A....Z. The dial needs to be s

  • IPhone freezes/crashes all the time??

    This seems to happen to all time with me, i first brought an iPhone and the screen started going all fuzzy, i cant explain it but it would just crash while im on an app and then go to the apple logo which was on one side of the screen while half the