×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Debugger Question

Debugger Question

Debugger Question

(OP)
I have the following code and need to be able to "step into" the next program using debugger.  Do anyone know how to do this?  This is not a fuction within the current program.

        LET f_cmd = ""
        LET f_cmd = "nohup SFDlopro01.4ge \"",
                    f_rpt_file CLIPPED, "\" \"",
                    f_rpt_prof_id USING "<<<<<<<<<&", "\" ",
                    m_rpt.dc_id, " ",
                    m_rpt.whse_id, " \"",
                    m_rpt.bloc_id, "\" \"",
                    m_rpt.eloc_id, "\" \"",
                    m_rpt.lcat_id, "\" \"",
                    m_rpt.bprod_id, "\" \"",
                    m_rpt.eprod_id, "\" \"",
                    m_rpt.prodclass_id, "\" \"",
                    m_rpt.order_by USING '&', "\" \"",
                    f_rpt_file CLIPPED, "\" \"",
                    f_rpt_prof_id USING "<<<<<<<<<&", "\" ",
                    " > /dev/null 2>&1 &"

        CALL run_system_cmd(f_cmd)

RE: Debugger Question

Ken:

Sorry, but the debugger doesn't support stepping into a sub-program.  

Regards,

Ed

RE: Debugger Question

(OP)
How can I get the parms over to the 01.4gl program and still use debug??

RE: Debugger Question

Ken:

I hope I'm not elaborating on the obvious, but here's some comments:

I identify run_system_cmd as 4GL function where ultimately you do something like this:

RUN f_cmd

1)  Set a break point in run_system_cmd before the RUN executes.  You can look at the value of f_cmd.

2)  Since you're nohuping and the subprogram doesn't write to standard output, the subprogram should execute properly.

3)  If you want to look  at the string the way shell interprets it, you might try echoing f_cmd to an ascii file:

RUN "echo \"f_cmd\" > /tmp/f_cmd.txt"
(above command untested)

In conclusion, your nohuped subprogram appears to be a compiled 4GL program.  If your goal is to debug it, you need to compile it to RDS and debug it separate from the calling program.

Sorry, but I probably haven't told you anything you've wanted to hear.

Regards,

Ed

RE: Debugger Question

(OP)
Yea, I was hoping you could shine some new light on this problem.  I'm currently debugging it separately right now.

Thanks anyway,
Ken

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close