IDMS

 View Only
  • 1.  Using the Dictionary Migrator Tool for ADSO applications

    Posted Dec 04, 2012 02:28 PM
    I have a requirement to extract from an IDD all of the components of an ADS application (maps, dialogs, module source, etc.). I am unfamiliar with the ins and the outs of the Dictionary Migrator tool but I am hoping that there is reasonably simple command syntax I can supply to the tool that will cause it to do this for me. Before I bury myself in the manual, can someone tell me if there is a way to do this and if so, what it is?


  • 2.  RE: [Application Developer Issues] Using the Dictionary Migrator Tool for A
    Best Answer

    Posted Dec 04, 2012 05:11 PM
    Well ….

    Step 1 USE ADSORPTS to “decompile”/report on the Application load module – to discover the APP components
    For each dialog, decompile from load to determine every subschema map db record work record and process.modules

    There are probably better ways – this is the best I can do off the top of my head

    Chris hoelscher
    Technology Architect | Database Infrastructure Services
    Technology Solution Services
    [Description: Description: cid:image001.png@01CD13D7.1A57CAF0]
    123 East Main Street |Louisville, KY 40202
    choelscher@humana.com
    Humana.com
    Keeping CAS and Metavance safe for all HUMANAty

    From: CA IDMS (IUA EIUA) Global User Community [mailto:CommunityAdmin@communities-mail.ca.com]
    Sent: Tuesday, December 04, 2012 2:29 PM
    To: mb.15281477.99786028@myca-email.ca.com
    Subject: [Application Developer Issues] Using the Dictionary Migrator Tool for ADSO applications

    I have a requirement to extract from an IDD all of the components of an ADS application (maps, dialogs, module source, etc.). I am unfamiliar with the ins and the outs of the Dictionary Migrator tool but I am hoping that there is reasonably simple command syntax I can supply to the tool that will cause it to do this for me. Before I bury myself in the manual, can someone tell me if there is a way to do this and if so, what it is?
    Posted by:emburyd
    --
    CA Communities Message Boards
    99788568
    mb.15281477.99786028@myca-email.ca.com<mailto:mb.15281477.99786028@myca-email.ca.com>
    http://communities.ca.com


    The information transmitted is intended only for the person or entity to which it is addressed
    and may contain CONFIDENTIAL material. If you receive this material/information in error,
    please contact the sender and delete or destroy the material/information.


  • 3.  RE: [Application Developer Issues] Using the Dictionary Migrator Tool for A

    Posted Dec 05, 2012 09:49 AM
    The syntax you want is “EXTRACT,APPLICATION=xxxxxxxx”, where “xxxxxxxx” is the ADS application name.

    At our shop, we also use the following:

    DISCONNECT=(ATTRIBUTE,SYSTEM,USER),
    NOPRINT=(ATTRIBUTES,CLASSES,MESSAGES,SCHEMAS,SYSTEMS),
    EXSOURCE=(COMMENT,DATABASE,DEFINITION,MESSAGE),
    EXLOADS=(SUBSCHEMA)

    Kay Rozeboom
    Information Technology Enterprise
    Iowa Department of Administrative Services
    Telephone: 515.281.6139 Fax: 515.281.6137
    Email: Kay.Rozeboom@iowa.gov

    From: CA IDMS (IUA EIUA) Global User Community [mailto:CommunityAdmin@communities-mail.ca.com]
    Sent: Tuesday, December 04, 2012 1:29 PM
    To: mb.15281477.99786028@myca-email.ca.com
    Subject: [Application Developer Issues] Using the Dictionary Migrator Tool for ADSO applications

    I have a requirement to extract from an IDD all of the components of an ADS application (maps, dialogs, module source, etc.). I am unfamiliar with the ins and the outs of the Dictionary Migrator tool but I am hoping that there is reasonably simple command syntax I can supply to the tool that will cause it to do this for me. Before I bury myself in the manual, can someone tell me if there is a way to do this and if so, what it is?
    Posted by:emburyd
    --
    CA Communities Message Boards
    99788568
    mb.15281477.99786028@myca-email.ca.com<mailto:mb.15281477.99786028@myca-email.ca.com>
    http://communities.ca.com


  • 4.  RE: [Application Developer Issues] Using the Dictionary Migrator Tool for A

    Posted Dec 06, 2012 12:55 PM
    Thank you for the replies - they were very helpful.