Table Objext

teconttecont Member Posts: 2
Very good community.

Let's see, I have the following curiosity. I've seen in the table object, is a field called BLOB Reference, which is where is all the code, defining calculated fields, etc., of objects.

I tried to get this information typically is used to obtain a field Blob text:


CALCFIELDS ( "BLOB Reference");
"BLOB Reference". CREATEINSTREAM (xLee);

While not xLee.EOS do BEGIN
xLee.READ (xTexto2);
xTexto: COPYSTR = (xTexto + + xTexto2 '', 1, MAXSTRLEN (xTexto));
END;

But nothing, I get Chinese.

Does anyone know how to draw such a code? I would be very useful to make profits without having to export the objects to text.

Many thanks and greetings.

Comments

  • garakgarak Member Posts: 3,263
    Not so. The BlobReference is not in textmode, its binary mode.

    The only way to export the objects as text is File -> export -> as text
    Do you make it right, it works too!
  • kinekine Member Posts: 12,562
    The objects are stored in binary format in the BLOB. There is no way how to "decode" it in some straight-forward way...
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • ara3nara3n Member Posts: 9,256
    The blob is encrypted as kine mentioned, there is no easy way to do it.
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
Sign In or Register to comment.