Company Properties - Objects on Loan

Company Properties iView - This iView lets you display the properties and assets that the company has made available to its employees for the employees assigned to your area of responsibility.You can call up this iView from the iView Team Viewer.
Which infotype does this come form Objects On Loan IT0040?

Hi,
Yes.. IT 0040 Object on loan is used to maintain the list of company owned objects, in which company lend to their employees.
Good luck
Om

Similar Messages

  • Need object on loans report

    hi experts,
                 i am an abaper working with HR module .i need to prepare a report for object of loans for all employees.all other reports like education birthday dates are avilable i coul'nt find any standard report for loans .Is there any report available or we need to go for devloping reports thru programs?

    Hi
    You can use this report HINCLON1 in se38
    cheers
    durai

  • Custom component  - how to store java Properties object in ucm environment

    Hi Experts,
    I am developing a custom component.
    my custom component code is reading a properties file and load in Properties object. Everytime this custom Service is called, properties file is read from file system and new Properties Object is created.
    Is there any way to load the Properties object once and store somewhere in UCM context ? (just like we do in JSP using application object"
    thanks!!
    Edited by: user4884609 on Jul 12, 2010 3:01 PM

    I'd say there are quite a few ways how to do it, but many of them have nothing in common with UCM.
    - I'd opt for the only "UCM" way I' aware of: as a part of custom component you can create your own properties file (it's also called environment variables) as a part of your custom component. You can, then, easily read (and write?) properties from/to the file.
    - The first option could have disadvantage, if there are too many properties. In this case you could use Java serialization - it should be UCM independent
    - Another option is to create your properties in the database - it is a bit similar to the first option, but it's more robust. Plus, you may use features of the database if you want to have some additional logic in you properties.
    - Note that you can also create a static object, which could be initialized e.g during class load

  • Hot to convert a properties object to a InputStream object?

    hot to convert a properties object to a InputStream object?

    peter321 wrote:
    The two property files need further process and filter out some values. The two configuration files come from different application. I want to use java.util.logging.LogManager.readConfigure(InputStream).For the last time, you've made it clear how you want to solve some as-of-yet undescribed problem. What you haven't made clear is what problem you're trying to solve. From the class you mention, it sounds like you want to read in two logging configurations (since that's what a LogManager is for) from separate applications and "filter out some values". Those are mysterious requirements at best, and if you're intending to use LogManager to process some arbitrary properties files, you're headed down the wrong path entirely. There are [much better solutions readily available|http://commons.apache.org/configuration/].
    ~

  • Problem loading PipedInputStream in Properties object

    Hi there!
    Well, I'm having some problems trying to load a PipedInputStream into a Properties object.
    First of all I read a file with FileInputStream and BufferReader and every time I find a special token it's opened a new Thread to save this piece of the whole file into a PipedInputStream/PipedOutputStream. The thing is once I have the PipedInputStream I want to load this stream into a Properties object (Properites.load(PipedInputStream pis))
    I mean....
    I have a file like this
    OBJECT = CLIENT
    NAME = JOE
    EMAIL = [email protected]
    END OBJECT = CLIENT
    END
    OBJECT = CLIENT
    NAME = ANGELINA
    EMAIL = [email protected]
    END OBJECT = CLIENT
    END
    and I want to save each CLIENT OBJECT into a Properties object. That's why every time I find the token "END" I open a new Thread and write to an PipedOutPutStream. The problem is that once the PipedInputStream is available I try to load it into the Properties but it doesn't load anything at all.I dont get any Exception, when I debug, after loading the PipedInputStream the Properties object still remain void but when I echo the stream to the console It works fine so it might not be a problem of the PipedInputStream but of Propreties.load()
    Thanks for your help!!!!!
    Here it is my code
    * DictionaryReader.java
    * Created on October 21, 2002, 5:02 PM
    import java.io.*;
    import java.util.Properties;
    import java.util.Enumeration;
    * @author
    public class DictionaryReader {
    String _filePath = null;   
    private final String _TOKEN = "END";
    /** Creates a new instance of DictionaryReader */
    public DictionaryReader(String path) {
    this._filePath = path;
    public static void main(String[] args){
    if(args.length != 1){
    System.err.println("Usage java <file path>");
    DictionaryReader dr = new DictionaryReader(args[0]);
    dr.readFile();
    private void readFile() {
    String line_ = null;
    try{
    FileInputStream in_ = new FileInputStream(_filePath);
    BufferedReader readIn_ = new BufferedReader(
    new InputStreamReader(in_));
    PipedOutputStream pout_ = new PipedOutputStream();
    PipedInputStream pin_ = new PipedInputStream(pout_);
    ReadDictionary readDictionary_ = new ReadDictionary(pin_);
    Thread t = new Thread(readDictionary_);
    t.start();
    while((line_ = readIn_.readLine()) != null){
    if(line_.trim().equals(_TOKEN)){
    pout_.close();
    pout_= new PipedOutputStream();
    pin_ = new PipedInputStream(pout_);
    readDictionary_ = new ReadDictionary(pin_);
    t = new Thread(readDictionary_);
    t.start();
    } else {
    line_ += "\n";
    pout_.write(line_.getBytes());
    System.exit(1);
    } catch (FileNotFoundException e){
    System.err.println(e.getMessage());
    } catch (IOException ioEx){
    ioEx.printStackTrace();
    * ReadDictionary.java
    * Created on October 22, 2002, 11:08 AM
    import java.io.*;
    import java.util.Properties;
    import java.util.Enumeration;
    * @author
    public class ReadDictionary implements Runnable {
    private PipedInputStream _pin;
    Properties _propFile = null;
    /** Creates a new instance of ReadDictionary */
    public ReadDictionary(PipedInputStream pin) throws IOException {
    this._pin = pin;
    public void run() {
    try {
    // Making sure that the PipedInputStream
    // has some content inside
    String line = null;
    BufferedReader read = new BufferedReader(new InputStreamReader(_pin));
    while((line=read.readLine()) != null){
    System.out.println(line);
    //Here it is the problem
    Properties prop_ = new Properties();
    prop_.load(_pin);
    Enumeration enum = prop_.elements();
    while(enum.hasMoreElements()){
    String element = (String)enum.nextElement();
    System.out.println(element);
    } catch(Exception e) {
    e.printStackTrace();
    Thanks for your help!!!!!
    Cheers,
    I�aki

    Comment out these lines of code and see what happens:// Making sure that the PipedInputStream
    // has some content inside
        String line = null;
        BufferedReader read = new BufferedReader(new InputStreamReader(_pin));
        while((line=read.readLine()) != null){
            System.out.println(line);
        }Streams tend to be readable only once and by using the reader you have read through to the end of the stream so that there is nothing left for the properties object to read. Some streams will support 'mark' so that you can 'rewind' but you're not using that here.

  • Help explain Properties object

    Hi,
    can someone explain properties objects, or link me to a tutorial? I wanna understand what to do with one when i get it, etc....
    i mean if i get a properties object, should i put it into another data structure (enumeration , hashtable?)??
    thanks.

    than can you help me here:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=501776
    Thanks.

  • Properties object from GET

    I don't know which MQ component is requesting these three files. Are they intended for public use?
    com/sun/messaging/Destination_defaults.properties
    " Destination_types.properties
    " Destination_labels.properties
    Most importantly, how does one build a Properties object from a file fetched with GET??
    Thanks.

    Some classes look for certain property files for defaults
    and if they are not there, then some built in hard coded
    defaults are used instead.
    I'm not sure what 'features' you are adding to the mqapplet
    demo but any MQ developer (ie programmers at large) do
    not need to dissect imq.jar in the manner you appear to be
    doing - unless I am misunderstanding what you are trying to
    do.
    MQ developers only need to include the jar files that we
    distribute as part of the product in CLASSPATH (the docs should
    point out which ones are relevant). The various files inside these
    jars and their dependencies should not be a concern of the
    MQ developer. For example, the fact that various defaults/labels
    are kept in some .properties files in imq.jar is something that
    you don't need to know or care about to make your application
    work.
    hope this helps,
    -isa
    http://wwws.sun.com/software/products/message_queue

  • How to save a properties object to a file / how to create a properties file

    hi,
    i am writing an application in which all the database and user information is stored in a properties object and is later retreived from it when a database connection or login etc is required.
    i wanna know how can i save this object / write it to a file i.e. how do i create a properties file.
    so that every time the application is run to create a new dbase etc the entire info regarding that will be stored in a new property file.

    Load:
    Properties p = new Properties();
    FileInputStream in = new FileInputStream("db.properties");
    p.load(p);
    String username = p.getProperty("username");
    String password = p.getProperty("password");
    // ...Save:
    String username = "user";
    String password = "pw";
    Properties p = new Properties();
    p.setProperty("username", username);
    p.setProperty("password", password);
    FileOutputStream out = new FileOutputStream("db.properties");
    p.store(out, null); // null or a String header as second argumentThe file will look something like
    username=user
    password=pw

  • Properties object help

    Hi,
    I have a properties object which has two keys. Those keys values are properties objects.
    I need to put all those values into a hashtable...is there any good way of rolling through a properties object to get the values of other properties?
    Thanks
    Craig

    A Properties object is a Hashtable. So if you have a method that takes a Hashtable, just give it the Properties object directly.
    If you want to copy the values, there is a propertyNames() method that returns an Enumeration.

  • Persisting a properties object across the whole of my program.

    Hello all,
    As per usual, sorry for any idiocy on my part and thanks for any guidance.
    I have written a wrapper class for the Properties class.
    I have an MDI which creates a properties object and loads it at start up, and I have tried to use the same object again (to save any property changes) when the app terminates. However, I get a nullPointerException when I try and use it when the program closes. Below is what I hope are the relevant pieces of code. I don't include it all as it a couple of hundred lines long - but can easily do so if you think it will help. Many thanks once again:
    Here is the load properties method:
    private void yLoadProperties(){
            String workingDirectory = System.getProperty("user.dir");
            File yFile = new File(workingDirectory + "\\KTProperties.ini");
            YPorperties yProperties = new YPorperties(yFile);
            yProperties.yLoadProperties();
            // Retrieve application name - no conversion required
            yApplicationName = yProperties.yGetProperty("ApplicationName");
    }and here is the exit program method with the call the the save properties method
    private void yExitApplication(){
            // Save properties back to disk
            yProperties.ySaveProperties();
            // Exit
            System.exit(0);
        }I have also declared the yProperties variable thus:
    private YPorperties yProperties;
    I was hoping to use the yProperties object anywhere within my program to adjust properties as required. Any help, gratefully received.
    Steve

    That's just the way Java works. I'm sure someone is able to quote chapter and verse of the Java Language Specification that spells it out, but the basic distinction is this:
    A variable declaration has the form: <Type> <variableName> [= <value expression>];.
    A variable assignment (which assigns a value to an existing variable) has the form: <variableName> = <value expression>;
    When you specify the type of a variable, Java assumes you are declaring a new variable in the current scope, regardless of whether the name of the variable already existing in a enveloping scope. When you don't specify the type, Java will look for an existing variable with that name in the current scope and any enveloping scopes.
    In my mind, when I explicitly declared yProperties, thus:> private YPorperties yProperties;> I was making it available to the whole program.With that line you declared a member variable of type YPorperties (shouldn't that be YProperties, by the way?), which means a separate yProperties variable is available as a member of each instance of your class. Note that you already specify the type of the variable yProperties in that line, so there is no need to specify that type again when using the variable further on in your application.
    But yes, you are correct in saying that this variable would be available anywhere inside that one instance of your class. However, it is possible in Java to declare a variable with the same name in a different, narrower scope (as you have seen).
    Java looks for variables from the narrowest scope outward, so in this case it sees the local variable yProperties before it sees the member variable yProperties.
    (BTW for future reference, note that a class or an instance of a class is not a "program" as such. So declaring a private member variable does not make it available to your "program", it makes it available to an instance of a class. The fact that you use that class to start your application is irrelevant)

  • What is the difference between 0040 - Objects of Loan & 0045 Loans.

    Hi Experts,
    What is the difference between 0040 - Objects of Loan & 0045 Loans.
    Appreciate your early response.
    Regards
    Rajesh

    Try to check the previous threads you will find by yourself

  • Objective on loans

    Dear All
    My client want see Objective on loans(0040)in Ess Portal,
    basicaly 0006,0002,0021,0009 Standard in Ess how to create 0040 infotype in ess portal level .
    Regards,
    bala

    Not sure what version you are on. For ECC6, the ESS bp contains an iView called "Equipment Overview". From the help.sap.com documentation....
    Equipment Overview
    Runtime Technology
    Java/Web Dynpro
    Technical Name of iView
    com.sap.pct.erp.ess.equipment_monitor
    Technical Name of Web Dynpro Application
    Xss500mssequ~sap.com
    Data Origin
    SAP ECC 5.00 Financials Extension
    Use
    The equipment overview gives employees information on the devices that are assigned to them. This information can be displayed via the Business Package for Employee Self-Service.
    Features
    The devices can be assets from the Asset Accounting component, equipment from the Plant Maintenance component, and objects on loan from the Human Resources component.
    Hope this helps!

  • Display Costs on Accounting Tab in Company Code (object / Project) curerncy

    Hello Forum Experts,
    We have this major issue whereas teh costs on the Accounting Tab are shown in Controlling Area Currency.
    It seems this is the standard cProjects behaviour.
    What changes / enhancement do we have to implement to ensure that the costs are shown in company Code Currency.
    For example: Controlling Area Currency is USD.
    There is a branch of teh company operating in Gemany - it has its own company Code. So they create projects in Germany and would expect to plan and see teh costs in cProjects in Euros instead of USD's.
    How can we solev this problem. It is quite amjor and most probably the foreign comapies will not use the system as it amkes no sense to them to plan / see costs in another cuurency than their own...
    Thank you,
    LT

    Hi LT,
    The costing in cProjects is always carried out in Controlling Area currency.
    Make modifications in the following Class to display the costing in cProjects in Company Code Currency  :
    1) Class: CL_GUI_EASY_COST_PLANNING
    Method: CONSTRUCTOR
    Here set Object currency "1" as Default .
    2) Class CL_R3_OLR3_INTERNAL_ORDER
    Method GET_REPORTING_DATA
    Regards
    Sejo

  • Properties & Objects Panel Vanished

    Hi
    I am using Dreamweaver 3 - and when I click on 'show
    properties' or 'show objects', the panels do not appear.
    The other panels, such as source code, library items etc all
    appear as normal - I haven't done anything that might cause an
    issue like this - it just happened by itself.
    I have a vague memory that this happened once before about 2
    years ago - I obviously managed to fix it then - but for the life
    of me, I can't get these 2 panels to appear now - and it's driving
    me crazy!
    Anyone else had this issue?
    Thanks

    DW3 is mightly long in the tooth, but I'll be what happened
    is that you
    changed to a higher resolution on your screen, moved one of
    the palettes to
    a new location, and then changed back to the old resolution,
    leaving those
    palettes lost in cyberspace. I believe the fix would be to
    use WINDOW |
    Arrange Palettes.
    Why are you changing resolutions if that's what you did?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "JD 64" <[email protected]> wrote in message
    news:fpu1un$e8o$[email protected]..
    > Hi
    >
    > I am using Dreamweaver 3 - and when I click on 'show
    properties' or 'show
    > objects', the panels do not appear.
    >
    > The other panels, such as source code, library items etc
    all appear as
    > normal
    > - I haven't done anything that might cause an issue like
    this - it just
    > happened by itself.
    >
    > I have a vague memory that this happened once before
    about 2 years ago - I
    > obviously managed to fix it then - but for the life of
    me, I can't get
    > these 2
    > panels to appear now - and it's driving me crazy!
    >
    > Anyone else had this issue?
    >
    > Thanks
    >

  • Invoke a method by getting method name from properties object

    HI ,
    I am storing method names in a properties file . Can any one tell me , how can I invoke those methods ?? Please Urgent.
    Here is the sample program what I am trying to do . Please tell me how to invoke method which is represented by the String "methodTobeInvoked" in the below program.
    public class HelloWorld {
         private String name="meena";
         public String getName() {
              return name;
         public void setName(String name) {
              this.name = name;
         public static void main(String[] args) {
              try {
                   Properties props=new Properties();
                   props.setProperty("method", "getName()");
              String methodTobeInvoked= props.getProperty("method");
              }catch (Exception ioe) {
                   System.err.println(ioe.getMessage());
    Thanks!!!

    meenaalenoor wrote:
    I am storing method names in a properties file . Can any one tell me , how can I invoke those methods?
    Here is the sample program what I am trying to do.
    Please tell me how to invoke method which is represented by the String "methodTobeInvoked" in the below program.
    public class HelloWorld {
         private String name="meena";
         public String getName() {
              return name;
         public void setName(String name) {
              this.name = name;
         public static void main(String[] args) {
              try {
                   Properties props=new Properties();
                   props.setProperty("method", "getName()");
              String methodTobeInvoked= props.getProperty("method");
              }catch (Exception ioe) {
                   System.err.println(ioe.getMessage());
    }Have you looked at [java.lang.reflect|http://java.sun.com/j2se/1.5.0/docs/api/java/lang/reflect/package-summary.html] ?

Maybe you are looking for

  • Itunes and the dreaded !

    hey guys, i just reformated my pc and i was able to transfer my library over replacing the new itunes folder from the fresh install with my old backup folder. This worked perfect.. now im having a problem, my music was always stored on "c->my downloa

  • Youview box out of stock

    I was incorrectly sent a Vision + box as opposed to a Youview box on a new order. BT apologised and re-ordered me a Youview box and gave me a delivery date but all that arrived was the controller in the post! After calling back I have been informed t

  • How to install HTTP Server in a Linux Machine for running APEX

    I've Installed Unbreakable Linux 4.7 and I'm using the standard apache which comes (Apache 2), I want to install the HTTP Server in order to run APEX on this machine, and may it look the data from the database which is oracle 10g (The database is on

  • Retriving the data

    Hi Can we retrive  the data from multibple cubes to list cube Thanks

  • Error during updating 10.2 software through BB link

    when updating through BB link it reaches 40 % and after that a message of ( software update encounterd an error ) i retryed about 4 times and always the same at 40 % please help