how to increase tabular rows [message #328667] |
Sat, 21 June 2008 07:10 |
praveen_mcacbe
Messages: 5 Registered: March 2008 Location: bangalore
|
Junior Member |
|
|
hi all,
I have desinged one form for shipment ,and i have to enter the container weight for each supplier ...( for ex.. x has snt 6 containers then in tabular form 6 rows should be automatically generated and there i have to enter the container pack no and weight ...) this is my requirement ....
abt form details : form style =tabular
waiting for your quick reply ,
praveen kumar
|
|
|
Re: how to increase tabular rows [message #329108 is a reply to message #328667] |
Tue, 24 June 2008 02:56 |
taurian
Messages: 3 Registered: June 2008 Location: singapore
|
Junior Member |
|
|
take one variable and populate the 6(no which you are entering)
v := 6;
go_Block('blk name');
first_record;
LOOP
V_CNT := V_CNT + 1;
:blk name.item1:= V_CNT;
:blk name.item1:= V_VALUE;
:blk name.item1 := :XXAP_PMT_REQUEST_HDR.INVOICE_DESC;
:blk name.item1 := :CONTROL_BLOCK.CNT_ACCOUNT;
EXIT WHEN V= V_CNT;
next_record;
END LOOP;
hope this helps u
|
|
|
|
Re: how to increase tabular rows [message #331928 is a reply to message #328667] |
Sun, 06 July 2008 12:17 |
Frank
Messages: 7901 Registered: March 2000
|
Senior Member |
|
|
praveen_mcacbe wrote on Sat, 21 June 2008 14:10 | waiting for your quick reply
|
Do you now see why it is not smart to add things like "urgent", "quick reply", etc?
It is nice of you to take the effort to thank the person who helped you, but doing 2 weeks later, while you yourself said you wanted it quickly..
|
|
|