Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to find where to change the code if the code is around 3000 plus lines

Former Member
0 Kudos

Hi,

i am in a Support project, I would like to know one thing pls tell me how to identify where to exactly change the code. if it has around 3000 lines plus, i know it can be done through Debugging , but tell me how to reduce my time through debugging and finding the right place.

with regards,

Rajesh Kumar.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Check which functionality requires a change.

If the code is modularized, just debug the specific routine in which the functionality change is required.

there is no easy way of doing it.

Regards,

Yogesh

6 REPLIES 6

Former Member
0 Kudos

Hi,

Check which functionality requires a change.

If the code is modularized, just debug the specific routine in which the functionality change is required.

there is no easy way of doing it.

Regards,

Yogesh

former_member189059
Active Contributor
0 Kudos

That is a very vague question

what do you want to change ?

Press Ctrl + F to find what you want in the code

In debugging, you can set Breakpoints / Watchpoints

breakpoints stop code execution at a particular place

watchpoints stop code execution when a particular condition occurs

Former Member
0 Kudos

Hi,

You can use Ctrl+F to find a particular text in the code which will give you all locations where that text is being used & you can go to your required line by double clicking that line.

OR

If you know the line number at which you have to make the changes, just right click in reort anywhere, click on Go to Line & enter the line number & enter.You will go to that line automatically.

Hope this helps.

Reward if helpful.

Regards,

Sipra

Former Member
0 Kudos

Hi,

Check out the comments written in the source code.

Regds,

Senthil

Former Member
0 Kudos

there is a version management in the menu selection.

you can use it to compare the two versions accoring the time sequence

Former Member
0 Kudos

Hi

debug your program 1st and find where exactly ur getting problem or your want to change

at that moment you can change the code

reward if useful