Management Assets in HR module

Hi Experts!
Now I don't Know in HR module the System management The assets that are used by employee.
Help me to find the place where I can management the assets that are used by employee.
Regards, Huy!

Hi
You can use the infotype 40 (Objects on loan) for maintaining the same
if you want more things to add go to the table V_T591A using SM30
with regards
partha
keep sharing and learning

Similar Messages

  • The application has accessed a fund managements or cash mgt module with par

    When I am trying to post a entry Mesage appears F1030
    The application has accessed a fund managements or cash mgt module with parameters missinfg or defective
    Please solve

    Hi,
    This error occurs when you post data which is not related to that specific company code.
    post the correct data and check.If the problem still exits.Please clearly explain the problem.
    Thanks
    micheal

  • Can log into adobe experience manager assets

    I cant log into adobe experience manager assets - Keeps telling me "unable to connect to the server.Try again or contact your administrator"
    I am already logged in with a user name and password into creative cloud but I also keep getting this message "we are having trouble verifying your membership" 02 day remaining

    Hi Sylvia,
    Kindly try the below mentioned links.
    https://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Thanks,
    Atul Saini

  • [svn:fx-trunk] 10050: Per-Module Style Management: Create a style manager for each application/module.

    Revision: 10050
    Author:   [email protected]
    Date:     2009-09-08 07:43:16 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Per-Module Style Management: Create a style manager for each application/module.
    The singleton StyleManager is still the only style manager that is currently used.
    QE notes: None.
    Doc notes: None.
    Bugs:
    Reviewer: Alex
    Tests run: checkintests, Managers/StyleManager
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IFlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/Request.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/ISystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/IModuleInfo.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/IStyleManager2.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleManagerImpl.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Teststand Manager Controls in Code Modules

      I am trying to understand how UI controls work in code modules called by TestStand steps.  I can pass a reference to an Application Manager (perhaps the application manager?) to my code module using RunState.engine.GetInternalOption(InternalOption_ApplicationManager).  Does the sequence editor have an application manager?  Or the engine?  Is this the same as the Application Manager control I put on the front panel of the code module?  What about SequenceViewManagers and ExecutionViewManagers?  Can I create those in my code modules to display sequences or executions?  Or can I somehow get those from the sequence editor/engine, or from the Application Manager?
    I know that I just asked a lot of questions, but I guess what I am looking for is some general guidelines for using the manager controls in code modules.  This all came about by an attempt to display an Execution View Manager control in my code module.  Feel free to ignore the following description of my various attempts to get this to work.  This exercise helped me understand the managers a little bit more, but I'm still a little confused.
    Suppose I want to create a custom step type for debugging to display the variables for the current sequence context on the front panel of a code module VI.  (LabVIEW 8.6, TestStand 4.1.)  In my code module, I call ExecutionViewMgr.ConnectVariables to connect to a VariableView control.  Where do I get my ExecutionView Mangager from?  I tried two methods:
    1) create an ExecutionViewManager control; set the manager's current execution using ExecutionViewMgr.Execution (pass RunState.Execution from TestStand to the code module).
    It seems like this should work, but when I run my sequence from the sequence editor, the ExecutionViewMgr.Execution property node returns error -17500.
    When I run from a LabVIEW Operator Interface (using the LabVIEW environment, not the exe), I don't get an error.  But I must connect a list control using ExecutionViewMgr.ConnectExecutionList, and select the execution from the list when the code module is running.  Then I can see the variables when I select the execution in the list.  However, the execution display on the OI goes blank.  I can see either the variables on my code module or the execution on my OI, but not both simultaneously.  It appears that an execution cannot be attached to more than one manager at once (I guess that's reasonable).
    2) pass the result of RunState.engine.GetInternalOption(InternalOption_ApplicationManager) to the code module; set the manager's current execution using ApplicationMgr.GetExecutionViewMgr() (pass RunState.Execution from TestStand to the code module, then as a parameter to GetExecutionViewMgr() ).
    In this case, I would expect that there is no ExecutionView Manager associated with the execution when running from the sequence editor.  But the ApplicationMgr.GetExecutionViewMgr() function returns a non-Null reference.  ExecutionViewMgr.ConnectVariables() causes an error dialog to be displayed (from the function itself, not from TestStand), although it doesn't actually output an error (and the VariableView control remains blank).  The error is "Unable to connect Variables View control."  (See attachment.)
    When I run from my LabVIEW OI, it works perfectly--I see the variables on my code module's UI, and the execution appears on the OI simultaneously.  I guess this makes sense since the TestStand engine is returning the Execution manager that was already created by the OI.
    Attachments:
    Error Dialog.PNG ‏20 KB

    TestStand only allows a single ApplicationMgr per process, creating a second one will error. So the engine will always return the one in either the UI or the Sequence Editor. Events should be seen by both handlers. You have to be careful to ensure that your extra handler does not mess up the UI's handler if yours is called first, like preacknowledging a message. As far as setting up a handler in a code module, you should be able to. However, we have not fully tested this capability, so we cannot say that we fully support this because you might run into issues. In addition, using LabVIEW might present additional issues that might not be seen in other development environments like CVI and Visual Studio. Performing some functionality that can process messages in a COM callback can cause potential hang conditions, to the less you do in a callback the better when using LabVIEW. Keep in mind that you have to ensure that you unregister your handler if the code module returns to the calling execution and you no longer want the handler to be called.
    Attempting to use a new TestStand UI control in a different thread than the UI thread is not recommended because we have done almost no testing on this use case because it is not done in typical UIs.
    Now, for customers that want to create a nice GUI that includes serial number prompting, but still want to be able to work with the Sequence Editor, I suggest that you implement a behavior that works with a supporting GUI, but support an alternative when a non-supporing GUI is present.
    For example, you could do the following:
    1. The process model can send a custom UI message synchronously to the GUI to ask for a serial number. The custom message would contain a reference to a property that contains (a) a boolean to indicate that the UI will "respond" to the message, (b) a string for specifying the serial number, and (c) a notification object from the TestStand Synchronization Server.
    2. When receiving the UI message, a supporting UI will set the boolean to True, duplicate the reference passed locally, and acknowledge the UI message.
    3. When the UI message returns, the exectution will determine if the UI supports the message. If yes, the exectution will (a) wait on the notifcation (b) When the user enters a serial number, the GUI will set the string property and then pulse the notification, and release the reference to the properties passed via the UI message. (c) The execution will return from the notification wait, read the serial number, and continue execution.
    If no, the execution will need to use the default process model prompting or custom prompting that you devise when using the Sequence Editor.
    The process model could use a UI message to determine if the GUI is supportive of this mechanism once instead of with each serial number prompt, but you get the idea.
    Scott Richardson
    National Instruments

  • Managing assets in Creative Cloud - deleting archived files

    I have used up nearly all of my 20GB of Creative Cloud storage. However, when looking in Finder, I notice that I really only have about 6GB in the folder. Turns out, CC archives files, which is great in the event that I lose a file on a hard drive or a file get corrupted. I'd be able to restore from the archive. However, all those archive files take up a lot of space. I found out how to delete the archive files using the web based Manage Assets. However, it won't let me SHIFT select. I have to actually click each one, one at a time. I have over 3500 archive files. That will take me 20-30 minutes to do this.
    Is there a better way to delete the archive files, other than DELETE ALL ARCHIVES?
    Trevor Ward
    www.trevorwardphotography.com

    May be, I want delete file psd in Creative Cloud storage in Brackets but i don't know. Can you help me?

  • SGD, inventory management & asset tracking functions

    Is anyone using an app that allows scheduling of the servers within the database & displaying in with the main body @ single sign-on using the current UI?
    If so, please point me in the direction - I've pieced together a few apps that do what I need & can be displayed on the webtop, but this isn't seemless. The inventory & asset management should come from the existing db - that part shouldn't be too hard.

    Thanks for responding - I've finally had some time to finish digging through all the docs
    For my business need I'm using sgd as a central portal to manage resources inside a development lab & provide statistical accounting on activity per user/project.
    *ens already provides the user > app relationship based on rights displayed on left panel display - default setup
    **Asset tracking, monitoring, resource management, reporting & basic datacenter management all rolled into the default page.
    *central management - done currently with root or Admin profile - this right grants all access
    ** "sub-admin role " this role can be limited to only modify rights for current group membership - nothing under parent "ROOT"
    My current workaround involves:
    OCS-NG - inventory & automated package deployment
    OSSIM - monitoring
    GLPI - frontend for ocs data - helpdesk UI -
    These apps that launch within webtop - to make it easy
    *** guess I just need to build the correct JSP & integrate into default login for user
    user A logins > SGD (single sign-on integration with all three apps & custom webtop displayed)
    *** Director structure is setup in SGD already - so most of the RMS type activities just need to be setup in the database tree & displayed ** think I found this through custom app via NetBeans, SunStudio , Glassfish/sailfish
    I'll stop for now I can go on & about all the ways this product can be used.
    Thanks for reading > currently playing with NBIDE6 to see if I can whip something up over the weekend to test.

  • How to use price list in inventory management documents (without SO module)

    Hi all
    I want to setup sales prices for items and I am using inventory management module of jd edwards enterpriseone.
    Is there any possibility in which I can use the sales price items functionality.
    So after I enter the sales price for each items in specific conditions, is there any possibility for these prices to be automatically shown anytime I enter a inventory issue or any other document which has to do with the issuing of the items.
    Please suggest
    thank you and best regards
    Ernest

    Hello,
    You can setup Item Sale price through the P4106 application in inventory management. But since your requirement is quite customised, Inventory Issue dont have such functionality to populate Item Sale Price when you are issuing items eventhough you create/change doctype. It will only be populate Item Cost and Extended cost.
    Deepak P

  • Fund management in plant maintenance module

    Hi.
    can anyone explain how fund management works in plant maintenance module. Actually to say we have implemented FM. We make FM entries in orders in GOTO -> assignment -> Fund Management.
    The question is, when we make entries in PM orders, it creates auto reservation No. for the materials (components) which are added in component tab of order. though in PM order we have made FM entries it is not carried by the system in auto generated reservation no. Plz advice.
    Harish

    Hi,
    Plz find below te error occured in program.
    Program RFFMRP_MAT_RESERVATION does not exist
        Message no. DS017
    Diagnosis
        The program you specified does not exist.
    Procedure
        If are creating a new program, acknowledge the message and continue.
        If you are trying to access an existing program, check the spelling. For
        a list of existing programs, select Utilties -> Find program.
    Can You suggest the alternate answer for the problem.
    Regards,
    Harish.

  • Project Management Asset Library

    For years - as a small graphics department within a bigger corporation, I been looking for some kind of job tracking and digital asset management system that is not to expensive.
    If there is anyone who has Advertizing Agency experience or currently working for Ad Agency, can you share how you track project - job requests - updates - track changes - and archive finished project.
    Thanks all..

    I should look into that.... my personal experience with Bridge was that it was slow... we have a server based environment it take long time to access.
    Here are some things That we look into.
    1) Project tracking
    2) Changes and approval
    3) a thumbnail or PDF access by non-graphics staff to view artwork..
    etc. etc..
    Is there anyone who is in Ad Agency environment who can share their everyday work flow...
    Job Request - QouteProject assesment - Drafts- keep comments and update request - so that accountability of proposed change are logged.. and final production - log which vendor (print, publication, client) it was sent and when...
    et..

  • Fixing the color management in the print module.

    Some printers are supported some not. Some profiles
    will show on the manage color list, most not. Photoshop
    has a sRGB printer profile, could one be made available
    for Lightroom? I have read a lot of post concerning
    poor print colors from Lightroom, at the very least Lightroom
    should allow any printer to manage the color.
    Thank You
    Tom

    I have read a lot of post concerning poor print colors from Lightroom, at the very least Lightroom should allow any printer to manage the color.
    I agree, but it doesn't let the Canon S9000 or HP D7460, it will not let these printers manage the color,the colors come out muddy looking when I manage by printer. I assume these two printers do not have paper profiles because nothing shows in the profile list. I'm not an expert on printing but I can get decent prints out of any other software I use except from Lightroom. As for the sRGB it would be better then nothing and that is what I have now. I have tried using other profiles with limited success.
    I have given up trying to print from Lightroom, to bad because all the other modules work fine.

  • Implementing Credit Management without the SD module

    Hi SAP Gurus,
    Greetings to all. I would just like to confirm if we can actually implement the Credit Management module within FI without the SD module? We are only intending to use Credit Management to control the credit limits assigned to customers. We might be also utilizing some of the basic credit control reports available.
    Hoping for some advice / comments from you guys.
    Thanks a lot

    Hi,
    Yes, you can implement the credit management without SD module.
    So you cna check the credit limit againest the open exposure consisting of open AR due.
    Regards,
    Gaurav

  • Cross Site Publishing and Variations: how to manage assets?

    We have a Cross-Site Publishing scenario:
    - an Authoring site collection with variations enabled, in order to manage content in English and Italian
    - two Publishing site collections
    - an Intranet Site Collection
    Intranet and Web site are feeded from Authoring site collections.
    We have some assets (Video and Photos) with their own metadata (title, description, ...) that we need to localize in each Language.
    We followed TechNet best practices: we saved these assets in a separate site collection with Anonymous access enabled.
    Where do we have to compile metadata?
    In a list in the Authoring site collection where we build an entry for each digital asset we want to describe (of course, a list in each variation site)? Or is it better to associate metadata in the Asset Library (in this case how we manage translations)?

    Did you find a solution for this issue? I have the same problem. Thank you very much
    We have a Cross-Site Publishing scenario:
    - an Authoring site collection with variations enabled, in order to manage content in English and Italian
    - two Publishing site collections
    - an Intranet Site Collection
    Intranet and Web site are feeded from Authoring site collections.
    We have some assets (Video and Photos) with their own metadata (title, description, ...) that we need to localize in each Language.
    We followed TechNet best practices: we saved these assets in a separate site collection with Anonymous access enabled.
    Where do we have to compile metadata?
    In a list in the Authoring site collection where we build an entry for each digital asset we want to describe (of course, a list in each variation site)? Or is it better to associate metadata in the Asset Library (in this case how we manage translations)?

  • Document management system for loan Module

    Is DMS (Document management system ) available for loans management?
    We are entering loans in General loan. We want the documents related to
    loans like agreement, Interest advices, etc to be uploaded in the SAP
    and should be accessed in that particular loan itself. Is there any
    system available to attach the documents uploaded (through cv01n) in
    SAP to loan? Is standard object for loans is available for this purpose? Object is to
    be maintained in Document types in DMS in configuration.
    Please help.
    Regards
    Gaurav Gupta

    I got the configuration

  • Project Management/Asset Management

    I am looking for ways to manage projects that will help in the whole production process from managing school work size project to a feature film production.

    Drop into any library and start looking at the documentary and independent filmmakers books.
    Organizing a production is a big job, keeping the media organized is just one little part of a project. But I gotta tell you that organizing a video production can't be done out of a book or with software. It takes practice, a mind for the process details and more flexibility than you imagine.
    bogiesan

Maybe you are looking for