Regarding Tree Item

To discuss Oracle Forms & Reports related technical issues.
Post Reply
mirza_rehan
Posts: 132
Joined: Sun Apr 02, 2006 10:36 am
Location: Pakistan

Regarding Tree Item

Post by mirza_rehan »

Any one have goood working experience on tree Item????

If Yes please reply.....

Best regards,
R E H A N M I R Z A
System Analyst / Senior Oracle Developer
Cell: +92-304-2120807

When ever you pray
Please remember me and my family
RiazAhmad
Posts: 7
Joined: Wed Apr 19, 2006 12:49 am
Location: Pakistan

Post by RiazAhmad »

Yes i have a good experience. If have any query then contact at riazahmad82@hotmail.com msn messenger.



Thanx,
admin
Posts: 2063
Joined: Fri Mar 31, 2006 12:59 am
Location: Pakistan
Contact:

Post by admin »

I would really appreciate if you will also share all stuff here with all other members. thanks
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

I have 3 tables.
First table's Primary key is the Foreign Key of 2nd table and 2nd table's Primary key is the Foreign Key of 3rd table.

I want to create Tree Item for these 3 tables.

Please post some sample code for 3 level Tree.

Best Regards.

Muhammad Kashif
mirza_rehan
Posts: 132
Joined: Sun Apr 02, 2006 10:36 am
Location: Pakistan

Post by mirza_rehan »

Assalam-o-Alaikum

I have done lot of work on Tree Item now i have grip on it, any one need help please reply.

Dear, Admin inshaallah i will send you example as soon as possible.

Kasif please send me table structure so i will work on yours requirement.
I am waiting for your's reply

take care
Allah Hafiz

Best regards,
R E H A N M I R Z A
System Analyst / Senior Oracle Developer
Cell: +92-304-2120807

When ever you pray
Please remember me and my family
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

Kasif please send me table structure
<b>Table 1</b>
Code Number(2) Primary Key
Tilte varchar2(35)

<b>Table 2</b>
Code Number(5) Primary Key
Title Varchar2(35)
Code_lvl_1 Number(2) Foreign Key (Table 1)

<b>Table 3</b>
Code Number(10) Primary Key
Title Varchar2(50)
Code_lvl_1 Number(2) Foreign Key (Table 1)
Code_lvl_2 Number(5) Foreign Key (Table 2)

Here is Structure of my Tables.
I want to Create Tree View for the ABove Tables

I want to Display only Titles in the Tree view. and i have no working experience on tree view.

Best Regards.

Muhammad Kashif
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

<blockquote id="quote"><font size="1" id="quote"><b id="quote">quote:</b id="quote"></font id="quote"><table border="0" id="quote"><tr id="quote"><td class="quote" id="quote"><font size="1" id="quote">
Kasif please send me table structure so i will work on yours requirement.
I am waiting for your's reply

<i><div align="right">Originally posted by mirza_rehan
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

<blockquote id="quote"><font size="1" id="quote"><b id="quote">quote:</b id="quote"></font id="quote"><table border="0" id="quote"><tr id="quote"><td class="quote" id="quote"><font size="1" id="quote">
Kasif please send me table structure so i will work on yours requirement.
I am waiting for your's reply

<i><div align="right">Originally posted by mirza_rehan
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

<blockquote id="quote"><font size="1" id="quote"><b id="quote">quote:</b id="quote"></font id="quote"><table border="0" id="quote"><tr id="quote"><td class="quote" id="quote"><font size="1" id="quote">
Kasif please send me table structure so i will work on yours requirement.
I am waiting for your's reply

<i><div align="right">Originally posted by mirza_rehan
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

<blockquote id="quote"><font size="1" id="quote"><b id="quote">quote:</b id="quote"></font id="quote"><table border="0" id="quote"><tr id="quote"><td class="quote" id="quote"><font size="1" id="quote">
Kasif please send me table structure so i will work on yours requirement.
I am waiting for your's reply

<i><div align="right">Originally posted by mirza_rehan
mirza_rehan
Posts: 132
Joined: Sun Apr 02, 2006 10:36 am
Location: Pakistan

Post by mirza_rehan »

Assalam-o-Alaikum

Dear Kashif,
Please give me a time because i m on notice period...... i have a working load, because i am transfer my job to new person and also complete my some specified tasks......

hope you understand it.

Inshaallah i will send you yours requred form as soon as possible.....


take care
Allah Hafiz
Kashif
Posts: 137
Joined: Wed Apr 26, 2006 5:57 am
Location: Pakistan
Contact:

Post by Kashif »

Sorry Forum Members.

Due to an error. This Problem occur. Every time when I Post my Reply it gives me error that reply can not be posted.

so the Threads is Showing more then One TIME.
mkhalil
Posts: 6
Joined: Tue Sep 19, 2006 3:22 pm
Location: Pakistan

Post by mkhalil »

I also exactly require the same. Please spare some time for us to provide a sample form using Hierarchical Tree. We would be thankfull to you and also provide us the link of tutorial.
riv_sax
Posts: 16
Joined: Thu Aug 31, 2006 8:14 am
Location: South Africa

Post by riv_sax »

Hi Kasif,
i looked at your table structure rather making it complex u try to denormalize u r structure ok. use
this table as master table ok
Table 1</b>
Code Number(2) Primary Key
Tilte varchar2(35)
then use the primary key of the above table as reference key for the table below
Table 2</b>
Code Number(5) Primary Key
Title Varchar2(35)
Code Number(2) Reference Key (Table 1)
and at last use the last table as detail table of the above table
Table 3</b>
Code Number(10) Primary Key
Title Varchar2(50)
Code Number(2) Foreign Key (Table 2)
Code Number(5) Foreign Key (Table 2)
hope u got my point
regards
rivon saxon
Kasif please send me table structure
<b>Table 1[/b]
Code Number(2) Primary Key
Tilte varchar2(35)

<b>Table 2[/b]
Code Number(5) Primary Key
Title Varchar2(35)
Code_lvl_1 Number(2) Foreign Key (Table 1)

<b>Table 3[/b]
Code Number(10) Primary Key
Title Varchar2(50)
Code_lvl_1 Number(2) Foreign Key (Table 1)
Code_lvl_2 Number(5) Foreign Key (Table 2)

Here is Structure of my Tables.
I want to Create Tree View for the ABove Tables

I want to Display only Titles in the Tree view. and i have no working experience on tree view.

Best Regards.

Muhammad Kashif

<i><div align="right">Originally posted by Kashif
Post Reply

Who is online

Users browsing this forum: No registered users and 3 guests