Name DataType Subtype Length XMLDoc DotNet System.Xml.XmlDocument.'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' XMLDocOut DotNet System.Xml.XmlDocument.'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' XMLNode DotNet System.Xml.XmlNode.'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' XMLNodeList DotNet System.Xml.XmlNodeList.'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' XMLAttrib DotNet System.Xml.XmlAttributeCollection.'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' i Integer Nodes Integer tDate Text tCurrency Text tRate Text
sOldCompany := 'Company1'; sNewCompany := 'Company2'; CLEAR(rTables); rTables.SETRANGE("Tabellnr.", 3); rTables.FIND('-'); REPEAT CLEAR(rrRecordRef); rrRecordRef.OPEN(rTables."Tabellnr."); rrRecordRef.FIND('-'); REPEAT CLEAR(rrRecordRefNC); rrRecordRefNC.OPEN(rTables."Tabellnr.", FALSE, sNewCompany); rFields.SETRANGE(rFields.TableNo, rTables."Tabellnr."); rFields.FIND('-'); rrRecordRefNC.INIT; //Loops trough fields.. REPEAT CLEAR(frFieldRef); frFieldRef := rrRecordRefNC.FIELD(rFields."No."); frFieldRef.VALUE := rrRecordRef.FIELD(rFields."No.").VALUE; UNTIL rFields.NEXT = 0; rrRecordRefNC.INSERT; //Gets an error here... rrRecordRefNC.CLOSE; UNTIL rrRecordRef.NEXT = 0; rrRecordRef.CLOSE; UNTIL rTables.NEXT = 0;
Understood. One thing that bugs me is that I can't find so much tutorials/blogs regarding this tech stack. For example I'd love to have a comprehensive up to date "setting up a BC company completely from scratch" tutorial which would explain everything in detail. Or other essential topics that would help me build the basics. Or either I do not find this information. Maybe you'd recommend some resources(which do not include microsoft documentation,microsoft learn) for a junior dev that'd build his base for further career? And what kind of financial/business topics I'd need to dive deeper into? Thank you very much, hope you can answer this also. Peace!