Bluestep JS Documentation
    Preparing search index...

    Class CurrentRecordB

    TODO

    TODO
    

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    exports: { [key: string]: any }

    Data stored in this object will persist between formulas on the same thread. Will be cleared when the thread is finished or when [[B.clearExports]] is called. Guest language objects will automactically be converted to host objects. Example B.exports.key = value. To read the value use const value = B.exports.key.

    find: Finder

    Used to find and give types to various objects given their string representation of their id.

    [[Finder]]

    const baseRecord = B.find.baseRecord("444666")
    
    globalStrings: { [key: string]: string }

    Global string to use with formatters.

    const format = B.globalStrings.clientHeader;
    

    The [[Net]].

    optUser: Optional<User>

    An Optional [[User]]. The Optional will be empty if no one is logged in.

    optUserRecordTypeEntry: Optional<Bluestep.Relate.Entry>

    An Optional User [[Relate.Entry]]. The Optional will be empty if no one is logged in or is a super. Same as calling B.optUser().flatMap(user => user.optRecordTypeEntry())

    The [[Organization]].

    Queries

    Reports

    text: Text

    The [[Time]].

    user: User

    An [[User]]. The [[User]] will be null if no one is logged in. Same as calling B.optUser.orElse(null)

    userRecordTypeEntry: Bluestep.Relate.Entry

    A [[Relate.Entry]]. The [[Relate.Entry]] will be null if no one is logged in or is a super. Same as calling B.optUserRecordTypeEntry.orElse(null)

    util: Util

    The [[Util]].

    Methods

    • Returns Record

    • Resets the B.exports for the next formula on the same thread.

      Returns void