Transfer asset from on class to other class without changeing asset no.

Dear All,
I have a requirement.
I want to transfer some assets from one asset class to other asset class, but I do not want to change the asset no.
Can you help me
b.s.rao

Hi,
This is not possible.
Pankaj,
Your solution will not work, as you cannot maintain the same number series for both sending and receiving asset classes, even though if one is having internal number assignment and another is external number assignment.
Ex: You cannot have 2 number range objects which includes a one asset number. In AS08 system will never accept this overlapping of asset number series.
Correct me if i am wrong...
Thanks,
Srinu

Similar Messages

  • How can I transfer music from my iphone to other non apple devices

    How can I transfer music from my iphone to other non apple devices ?

    If this is music purchased through the iTunes Music Store, you would need to transfer the music to your computer using iTunes then transfer to the non-apple device according to the manufacturer's instructions.

  • Abstract class extends other class?

    What happens when a abstract class extends other class?
    How can we use the abstract class late in other class?
    Why do we need an abstract class that extends other class?
    for example:-
    public abstract class ABC extends EFG {
    public class EFG{
    private String name="";
    private int rollno="";
    private void setName(int name)
    this.name=name;
    private String getName()
    return this.name;
    }

    shafiur wrote:
    What happens when a abstract class extends other class?Nothing special. You have defined an abstract class.
    How can we use the abstract class late in other class?Define "Late". What "other class"?
    Why do we need an abstract class that extends other class?Because it can be useful to define one.

  • How can I transfer photos from my iphone to my computer without emailing each one to myself

    how can I transfer photos from my iphone to my computer without emailing each one to myself, and I thought they would be in icloud but I can't find them

    Pics taken with the iphone are imported to your computer as with any other digital camera ( as explained in the manual).
    Pics synced to your iphone from your computer should still be on the computer.
    iOS: Importing personal photos and videos from iOS devices to your computer

  • How do I transfer music from my ipod to my computer without replacing the music on my ipod with the music on my computer?

    How do I transfer music from my ipod to my computer without replacing the music on my ipod with the music on my computer?

    You can't do that with iTunes (except for songs you purchased from the iTunes Store).  However, there are third-party methods and utilities that can transfer songs files from iPod to computer.  If you do a Google search on something like "ipod transfer," you should get some links.
    Once the songs files are on your computer, add them to your iTunes library.  Then, you can sync your iPod to that iTunes library, as desired.

  • How do I transfer photos from iPhoto back onto my iPhone without taking up all the storage space? I know that there is some application on my computer that does it but I can't remember what it's called.

    How do I transfer photos from iPhoto back onto my iPhone without taking up all the storage space? I know that there is some application on my computer that does it but I can't remember what it's called.

    iTunes.
    manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • Hide Unit price from sales order for sales user without change authorization of document setting

    Hi all expert
    Hide Unit price from sales user without change authorization of document setting.
    I have also refer this note
    SAP B1 2005 Purchas Order,Good Reciept PO'S, and Unit Price Block
    but sill I had not getting my proper solution.
    I want to restrict sales person to see & access unit price. Here I know option of block authorization of document setting but its not good option because , In future ,if sales user wants to changes forms setting in future so Its become problematic for user. so I want do this without restrict user for form setting & only hide unit price table from him/her. also He/her able to access form setting with out unit price.
    Please reply
    Amol Nikam

    Hi Experts,
    Please Tell me Is there any option "Hide Unit price from sales order for sales user without change authorization of document setting"
    Regards/Thanks
    Amol

  • Calling a variable from main class to other class

    How do I call a variable that is initialize in the Test.java into Sub.java?
    I want to call the a, b, c that I have initialize in Test.java into Sub.java.
    import java.util.*;
    import java.lang.*;
    import java.awt.*;
    public class Test{
         public static void main(String args[]){
              int b;
              int c=1;
              int a=11;
              b = c + a;
              System.out.println(+b);
    import java.util.*;
    import java.lang.*;
    import java.awt.*;
    public class Sub{
         public void Subtraction(){
              if(a>c)
                   b = a-c;
              else if(c>a)
                   b = c-a;
              else if(a=c)
                   b = a-c;
              System.out.println(+b);
    }

    This is, and I'm sorry but I don't know how else to say this, a real big mess.
    I'll go through some (most/all) of it but honestly....
    import java.awt.*;Many will tell you that you should use specific imports and not wildcards to increase ease of reading. I am not so personally picky about this but it would help you.
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*; Don't import things you never use. It just adds confusion get rid of java.util import
    import java.lang.Object.*;Redundant. Remove it.
    import java.applet.Applet.*;Unused. get rid of it
    public class SUBOK {      Terrible class name. Please use the standard [_Java naming conventions_|http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html]
    public int a = 10;
        public static void main(String[] args) {
             SUBOK runGUI = new SUBOK();
        public SUBOK(){
             JFrame f = new JFrame("Subok");
             f.setSize(150,100);
             f.setVisible(true);
             f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
             JButton b = new JButton("Sum");
             b.setActionCommand("send");
             b.addActionListener(new Push());
             JPanel p = new JPanel();
             p.add(b);
             f.add(p);
        } Most of that is okay although not great. But I don't think you should be doing anything in Swing at all yet.
      private class Push implements ActionListener{
             public void actionPerformed(ActionEvent e){
                  if(e.getActionCommand().equals("send")){
                       int a = 12;You are aware that this a has nothing to do with your other a? right? I mean this is a method local variable in a whole other class then the other one.
                           Add i = new Add();
                           i.Add();                
        public int aValue(){
             return a;
    } Alrighty then...
    import java.lang.*;Redundant. Remove You never need to import java.lang.
    import java.awt.*;Unused. remove.
    import java.util.*;Unused remove.
    public class Add {
         SUBOK a = new SUBOK();
         int d = a.aValue(); Aiaiaiai.
      public void Add() {
             int b;
             int c = 0;
             b = d+c;
             System.out.println(b);
    }First of all do not name a method the same as a class. Second most of this class appears to be based mainly in the realm of wishful thinking. In programming, wishing that something will "just work" without understanding the basics of why and how it works does, pretty much 100% of the time, not end well.
    You need to take a number of steps back from this code, get grounded in some fundamentals and then make another attempt. I would highly recommend putting the Swing (or any other GUI) code aside for some time now. Inter-object communication is a fundamental part of OO and thus a fundamental part of Java and this code clearly shows that you don't understand it yet at all.
    Start here [_Learning The Java Language_|http://java.sun.com/docs/books/tutorial/java/index.html]
    If you have questions as you go through the tutorial do come back and ask them and someone here will be glad to help you. But in order to help you with code you have to be at a point where you understand things like variable scope, the difference between a class and an Object and how, why and what methods can be used to exchange information between two instances.

  • Possible to access classes in other folders without the use of packages?

    Hi,
    I'm trying to write a kind of connector application, and I have come across this stumbling block.
    I have a folder for my main program classes, which will not change. External to that folder( either in a subdirectory or another directory on the same level) I want to have my classes to "connect". The connected classes will be compiled dynamically, as they depend on something in the main classes folder for complilation... I trust I can satisfy that using javac -classpath...
    The problem is that I would like one of the main classes to be able to access the connected classes at runtime, from the other folder. The collection of connected classes will be changing, so that, coupled with the fact that one of the main classes will be required to compile each connected class seems to rule out the use of packages for the connected classes.
    Is there a way to get around this?
    Thank you,
    Jesse

    Are you trying to dynamically compile Java classes (in external folders
    without packages) via Java? Yes, I will be (hopefully) using com.sun.tools.javac. I haven't done that part yet, as I don't want to waste my time on a design that is fundamentally flawed :)
    Does each new 'application' get placed into its ownfolder? No. I will be building a collection of new apps that will all be contained in one folder.
    Once an application is compiled, must it beimmediately available to the process that compiled
    it? Yes. Once an application is compiled I need it to be accessable from that point on.
    Thanks,
    Jesse

  • HT201236 I want to do something so simple that there are no instructions. I just need to have two windows open at the same time so I can transfer files from one to the other by drag

    I want to transfer files from one device (or page ) to another by drag and drop , so i need two windows ope   at the same time,
    I know this can be done but I have forgotten how

    Don't use any full screen options for any app that has them
    Mount your device and double click on it to open it. Drag this window to the upper right of your Desktop and resize it to a bit less than half of your Desktop.
    Open the next folder and position it on the lower left side and resize it so you can still see the previous window.

  • Javac = "cannot find symbol" when compiling class referencing other classes

    I have several Java files in a directory which is declared as a package at the start of the files
    package filemanager;
    This program works perfectly in an IDE, however I'm having problems with compiling in command line.
    I have set the classpath as I understand to be right for my computer to:
    C:\Program Files\Java\jdk1.6.0_02\bin
    I can compile a class that references no other classes in this package/directory.
    However files which reference other classes bring up such errors:
    javac AllFiles.javaAllFiles.java:174: cannot find symbol
    symbol : variable Bob
    location : class filesmanager.AllFiles
    Bob.getItem(itemRef);
    Where Bob is an example of another class. Even though I can say, compile Bob on it's own as it doesnt have any such reference.
    I've tried:
    javac -cp "C:\Program Files\Java\jdk1.6.0_02\bin" AllFiles.javaThis also failed.
    Any ideas?
    Edited by: ajr87 on Feb 8, 2008 10:26 AM

    I've tried spoon_'s suggestion, but I'm still getting the error ("cannot find symbol"). Here is my code:
    File Hello/Fred.java:
    package Hello;
    public class Fred
        public int age;
        public Fred()
            this.age = 1;
    } // public class FredFile Hello/Hello.java:
    package Hello;
    public class Hello
        public static void main(String args[])
            Fred fred = new Fred();
            System.out.println("Fred is " + fred.age);
    } // public class HelloAnd here is my attempt to compile Fred.java and Hello.java:
    C:/Users/levner/programs[219]javac -cp c:\users\levner\programs\hello Hello\Fred.java
    C:/Users/levner/programs[220]javac -cp c:\users\levner\programs\hello Hello\Hello.java
    Hello\Hello.java:14: cannot find symbol
    symbol  : class Fred
    location: class Hello.Hello
            Fred fred = new Fred();
            ^
    Hello\Hello.java:14: cannot find symbol
    symbol  : class Fred
    location: class Hello.Hello
            Fred fred = new Fred();
                            ^
    2 errorsI am doing this work on a PC running Vista using javac 1.6.0_10. I've tried various combinations of upper and lower case names for the package and file names, and I always get the same errors.
    Thanks in advance for your help. David

  • Using one class into other class??

    Hey,I need to pass one class's object to another class's constructor.problem is which class I should compile first because both classes are using each other so when i compile any of these file it gives error in refering other as other file is not compiled.I am using as follows:
    package p;
    class test1
    //statements
    test2(this);
    Here is my second class:
    package p;
    class test2
    test2(test1 t)
    //some statements

    surely you can put them on one page/file and compile?? (i m just givin a suggestion, i am by no means an expert! :) )

  • How can i transfer photos from my macbook to my imac without altering their quality

    I am trying to transfer photos from my macbook to my imac, with the same version og iphoto, but it seems that the imac is having trouble to give me clean photos, as if it was putting 2 images, one on the other.... any suggestion for a clean and quick transfer ? and to what may cause that the photos seems blurry ?
    thanks
    Lau

    Connect the two Macs together (network, firewire target mode, etc) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward.
    LN

  • How can I transfer music from my iPad to my iPhone without using a computer/iTunes?

    Disclaimer:  I am actually asking this for a family member, but I don't have an answer for her either.
    My family member has an iPad with music on it currently.  This music is music bought from iTunes and music bought from other sources.
    Her computer died a few months ago and she does not intend on replacing it.
    She just bought an iPhone and would like to copy the music from her iPad to her new iPhone.
    I had originally thought that iTunes Match would work for this, but the Apple Support article regarding iTunes Match (iTunes Store: Subscribing to iTunes Match) suggests that it requires a computer w/ iTunes to do the initial update.
    I'm willing to consider approaches from either, Apple or third-party.
    If it helps, her iPad and iPhone are both running iOS 7.

    The answer is, "you don't".
    Music other than that purchased from the iTunes store had to be synced to the device using iTunes on a computer. The media should still exist on that computer. She can use the computer to sync the music to the new device.
    An iPad or iPhone is NOT a backup device. In order to set it up to sync to a new computer were she to replace hers, the media on the device would have to be erased before anything could be synced to it. Media synced to the device can not be synced back to a computer (without purchasing 3rd party software). Without a computer and iTunes, it's not possible to transfer media from one iDevice to another, even with 3rd party software.

  • How can i transfer music from my macbook to my iphone without my music library contents are all erased?

    i've been trying to transfer music from my macbook to my iphone but it deletes all the music i have on my iphone then adds the music from the macbook what can i do so i ADD music to my iphone without having anything deleted!

    The answer is, "you don't".
    Music other than that purchased from the iTunes store had to be synced to the device using iTunes on a computer. The media should still exist on that computer. She can use the computer to sync the music to the new device.
    An iPad or iPhone is NOT a backup device. In order to set it up to sync to a new computer were she to replace hers, the media on the device would have to be erased before anything could be synced to it. Media synced to the device can not be synced back to a computer (without purchasing 3rd party software). Without a computer and iTunes, it's not possible to transfer media from one iDevice to another, even with 3rd party software.

Maybe you are looking for

  • What is the diffrence between URL and URI

    Hi all Can any one tell me the difference between URI and URL . I have got a doubt that since somany days what exactly the URI and URL. Can anyone tell with example . Thq

  • Please Help! Drag and drop does not work in Adobe AIR 3.1 (FlashBuilder 4.6)

    I am working on a PC is made of air and flashbuilder 4.6. Drag and drop application does not work in Flash Builder 4.6. However, the same source will work with Flash Builder 4.5. Please help me. <?xml version="1.0" encoding="utf-8"?> <s:WindowedAppli

  • Signature problem again

    I finally learned to set the program right and could get random selection BUT once I set it up it works once and then refuses to remember what it was supposed to be doing. When I go to the first column on the Signatures page I find a picture of a pen

  • Install oracle Database 10.2.0.5 on AIX Power Series 64 bit.

    Hi i need to install oracle Database 10.2.0.5 on AIX Power Series 64 bit. I have checked on oracle.com but there is only 10.2.0.1 available for my requirement. http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html So what

  • Traveling Problems

    I recently went to San Francisco, I was not able to 'SEND' emails, but I was able to receive them.  I could not 'TEXT' msg out either......But when I returned to SC the messages in my 'outbox' were sent and I was able to send/receive messages.  Does