Transfer BLOB from one Table to other

tushaar99tushaar99 Member Posts: 35
edited 2006-03-16 in Navision Financials
Dear All,
Can anyone tell me how I can transfer the BLOB field value from one table to another table.

I tried assigning the value - not happening...
I tried doing a transferfield - not happening...

any other way??

lemme know...

tushaar
Regards,
Tushaar

Comments

  • krikikriki Member, Moderator Posts: 9,110
    If you want to do it with recordreferences, you have to look here:http://www.mibuso.com/forum/viewtopic.php?t=8874

    If you have 2 tables, try this:
    recTable1.CALCFIELDS("Blob Field");
    recTable2."Blob Field" := recTable1."Blob Field";
    recTable2.MODIFY(FALSE);
    
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


Sign In or Register to comment.