Search results

  1. M

    An "-" issue (hyphen)

    i think you should post here your code fragment that imports the file, in order to understand & help you Note: don't forget to surround it with CODE tag
  2. M

    Session Trigger question

    1. always mention your environment (Progress version, OS, etc..) when you post a question. 2. to my knowledge Progress (even the most recent version) does not support what you are looking for. there are two types of triggers in Progress: 1) UI trigger: to catch keyboard/mouse event (e.g...
  3. M

    Caputing cursor up/down trigger in QAD .Net Gui

    the NETUI is based on charater(CHUI) programs as business logic (and unfortunately also on UI methods) therefore you cannot use GUI event/trigger driven methods, see include file {mfnp.i ...} and how it used in CHUI
  4. M

    Create a Data Base Empty for QAD

    one remark: QAD eB2.1 allows you to have several domains in same DB, but still you need to prepare infra-structure data for that domain like GL accounts, Product Lines, etc..
  5. M

    Two table joining issue

    i think this for each table1 where not can-find(first table2 where table2.facno = table1.facno) no-lock : <some processing> end. should be faster (as it does not actually read the whole record) than this
  6. M

    How do we pass values into QAD's browse/view maintenance ?

    are you sure MFG is using your xxlu094.p (instead of vanila) ? when you press Ctrl-F on lc_grn field, what name do you see in lookup browse ?
  7. M

    Entity to Entity data transfer

    yes, you can use same COA for different Entities if you need to restrict users, you can use Entity Security maintenance (menu 36.3.13) and/or GL Account Security Maintenance (menu 36.3.9 or 36.3.16)
  8. M

    How do we pass values into QAD's browse/view maintenance ?

    check in the source file generated by this browser (should be xxlu094.p or xxbr094.p) if there's also {mfdeclre.i}
  9. M

    How do we pass values into QAD's browse/view maintenance ?

    you have to show here your code fragment
  10. M

    How do we pass values into QAD's browse/view maintenance ?

    you didn't specify your MFGPRO version, assuming you have eB2.1, where you can easily modify design of any browser, use one of the global global variables (see mfdeclre.i) as your parameter e.g: initialize [global_ref] with your PO# before the the input statement (UPDATE,SET,PROMT-FOR) and in...
  11. M

    CIM program doubt

    tt_price & tt_mtcst are numeric, therefore do not enclose them in quotes
  12. M

    Entity to Entity data transfer

    just to remind you, menu 25.3.3 does NOT copy, it MOVES from old to new Entity the following records: acd_det, bgd_det, bg_mstr, glcd_det, gltr_hist, glt_det it does NOT move Chart of Account (ac_mstr) or any other tables where Entity is referenced menu 25.1 simply changes the default Entity...
  13. M

    Entity to Entity data transfer

    there is no menu to do what you require. you have to buid CIM's to replicate chart of account, and other Entity related data..
  14. M

    last login information of whole user IDs

    try menu 36.3.2 - User Inquiry (mguriq.p) it also shows Last Logon for each user
  15. M

    last login information of whole user IDs

    try mgurrp.p (in my system it is customized: xxmgurrp.p)
  16. M

    last login information of whole user IDs

    menu 36.3.6 User Control Report it shows Last Logon Date for each user (in eB2.1)
  17. M

    drill-down browse for a certain user

    what did you try to do? which table ? if you want change/customize existing browse, after you finish, save-as to different name (e.g: if original browse was fs042, save it as xx042) if you want to add a menu for it, you need to use menus 36.4.4 and 36.3.21.1
  18. M

    I need to know based on which logic item master's pt_mrp is defaulting in the screen.

    Re: I need to know based on which logic item master's pt_mrp is defaulting in the scr its changed automatically by the system to YES whenever the item needs to be recalculated in MRP process if after the MRP run, nothing is changed related to this item, the MRP will not recalculate it
  19. M

    How to handle Scientific Notation

    1) i think you should add NO-ERROR to your ASSIGN statement, and after check for ERROR-STATUS:ERROR, to catch invalid data
  20. M

    PO Maintenance - Unit cost of item

    1.10.2.1 - Price List Maintenance
Top