how to find what are the object imported into Navision

selva1990selva1990 Member Posts: 25
Hi all,

Trying to import set of objects into navision classic client and once it done all those imported object alone need to be inserted into another table. Can anyone help me to find out?? i tried using virtual object table but i have no idea how to fetch imported object from that virtual Object table. :?: :?:

Comments

  • vaprogvaprog Member Posts: 1,141
    selva1990 wrote:
    and once it done all those imported object alone need to be inserted into another table.
    What do you mean by this? Is this some logging/Documentation requirement?

    Try creating an Import for the .fob or .txt to populate your table. For the .fob you should process the text part only. It ends according to DOS convention at the first ^Z character (decimal value 26). You can extract that part on a command line if you don't want to handle it in C/AL.
    COPY /a MyFob.fob MyFob_Header.txt
    
  • selva1990selva1990 Member Posts: 25
    hi thanks for reply,

    Suppose if am importing an .txt/.fob file into navision, i need to know what are all the objects imported from that file.

    for example:-

    i am importing anyobject.txt i need to know 1)Name of the object 2) Object ID 3) version list of that imported object.
  • rocatisrocatis Member Posts: 163
    selva1990 wrote:
    i am importing anyobject.txt i need to know 1)Name of the object 2) Object ID 3) version list of that imported object.
    For fob files you can simply read through the file until you encounter a ^Z (as previously stated).

    For txt files you need to a bit more handiwork to get the information, but the file structure is fairly easy to understand - try opening one in notepad.

    Trying to figure out what objects were imported can be done by creating a list based on the objects table before and after you import your objects.
    Brian Rocatis
    Senior NAV Developer
    Elbek & Vejrup
Sign In or Register to comment.