How to make this content in PHP?

create or replace package body VV_OM110_PKG is
procedure main(errbuf out varchar2,
retcode out varchar2,
p_org_id in number,
p_organization_id in number,
p_segment1 in varchar2,
p_company in varchar2,
p_segment3 in varchar2,
p_cust_id in number,
p_category in varchar2,
p_beg_date in varchar2,
p_end_date in varchar2) is
v_line VARCHAR2(3000);
v_sub_title varchar2(100);
begdate varchar2(20);
enddate varchar2(20);
v_company varchar2(50);
v_item_count number:=0;--产品品种数
v_rowsumqty number;--行数量汇总
v_rowsumamt number;--行金额汇总
v_total_qty number:=0;
v_total_amt number:=0;
i_counter number := 0;
v_subinventory_name varchar2(80);
v_label1 varchar2(20);
v_column1 varchar2(60);
v_phone_number varchar2(30);
type rec_qty is record(
id number,
qty number,
amt number);
type number_array is table of number index by binary_integer;
v_sumqty_per_com number_array;--每公司数量合计
v_sumqty_all_com number_array;--所有公司数量合计
v_sumamt_per_com number_array;--每公司金额合计
v_sumamt_all_com number_array;--所有公司金额合计
arr_item_id number_array;--产品游标的ITEM_ID
type qty_array is table of rec_qty index by binary_integer;
arr_qty qty_array;--qty游标记录数组
cursor main is
select distinct
a.sales_branch,
a.carrier,
a.customer_name,
a.trx_date,
a.order_number,
a.delivery_id
from vv_wsh_temp_tl a,mtl_secondary_inventories b
where to_char(a.subinventory_code) = b.secondary_inventory_name
and b.organization_id = decode(p_organization_id,p_org_id,b.organization_id,p_organization_id)
and nvl(b.attribute1,'~~$') = decode(p_org_id,81,'内地厂',nvl(b.attribute1,'~~$'))
and a.qty<>0
and not exists (select 'X' from org_organization_definitions t
where t.ORGANIZATION_ID in(86,87,89,90,91,92,93,94,95,96,97,98,99,100,110)
and t.OPERATING_UNIT = 85
and t.organization_id = a.organization_id);
rec_main main%rowtype;
cursor qty(l_delivery_id number,l_order_number number,l_trx_date varchar2) is
select inventory_item_id,sum(qty) qty,sum(amt) amt
from vv_wsh_temp_tl
where delivery_id = l_delivery_id
and order_number = l_order_number
and trx_date = l_trx_date
group by inventory_item_id;
CURSOR ITEM IS
select distinct g.segment1,h.segment1 seg1,a.inventory_item_id id,h.description des
from vv_wsh_temp_tl a,
MTL_ITEM_CATEGORIES_V g,
mtl_system_items_b h
where a.inventory_item_id=h.inventory_item_id
and g.inventory_item_id=h.inventory_item_id
and g.organization_id=h.organization_id
--and a.sales_branch = nvl(p_company,a.sales_branch)
--and a.customer_number = nvl(p_cust_number,a.customer_number)
and h.organization_id = a.organization_id
and h.organization_id = decode(p_organization_id,p_org_id,h.organization_id,p_organization_id)
and not exists (select 'X' from org_organization_definitions t
where t.ORGANIZATION_ID in(86,87,89,90,91,92,93,94,95,96,97,98,99,100,110)
and t.OPERATING_UNIT = 85
and t.organization_id = a.organization_id)
order by g.segment1,h.segment1,a.inventory_item_id;
Cursor subinventory_name(l_delivery_id number,l_order_number number,l_trx_date varchar2) Is
Select Distinct substr(b.description,decode(p_org_id,81,8,82,7,5)) subinventory
From vv_wsh_temp_tl a,mtl_secondary_inventories b
Where to_char(a.subinventory_code) = b.secondary_inventory_name
and b.organization_id = a.organization_id
--and b.organization_id = decode(p_organization_id,p_org_id,b.organization_id,p_organization_id)
and a.delivery_id = l_delivery_id
and a.order_number = l_order_number
And a.trx_date = l_trx_date
And a.qty <> 0;
Cursor phone_number(l_phone_number varchar2) is
select a.phone_number
from wsh_carriers w,
wsh_carrier_contact_info_v a,
wsh_carrier_contacts_v b
where w.carrier_id = b.carrier_id
and a.relation_party_id = b.relation_party_id
and w.freight_code = l_phone_number;
begin
commit;
vv_wsh_pkg.retrieval_data(
p_org_id => p_org_id,
p_organization_id => p_organization_id,
p_subinventory_code => null,
p_area => p_segment1,
p_company => p_company,
p_market => p_segment3,
p_cust_id => p_cust_id,
p_category => p_category,
p_item_number => null,
p_beg_date => p_beg_date,
p_end_date => p_end_date);
/*&#20135;&#21697;&#30340;&#31181;&#31867;&#25968;&#37327;*/
select count(distinct a.inventory_item_id) into v_item_count
from vv_wsh_temp_tl a,
MTL_ITEM_CATEGORIES_V g,
mtl_system_items_b h
where a.inventory_item_id=h.inventory_item_id
and g.inventory_item_id=h.inventory_item_id
and g.organization_id=h.organization_id
and h.organization_id = a.organization_id
--and a.subinventory_code=nvl(p_subinventory_code,a.subinventory_code)
and h.organization_id= decode(p_organization_id,p_org_id,h.organization_id,p_organization_id)
and not exists (select 'X' from org_organization_definitions t
where t.ORGANIZATION_ID in(86,87,89,90,91,92,93,94,95,96,97,98,99,100,110)
and t.OPERATING_UNIT = 85
and t.organization_id = a.organization_id);
for i in item loop
v_item_count := item%rowcount;
end loop;
for i in 1..v_item_count loop
v_sumqty_per_com(i):=0;
v_sumqty_all_com(i):=0;
v_sumamt_per_com(i):=0;
v_sumamt_all_com(i):=0;
arr_item_id(i) := 0;
end loop;
--&#32452;&#21512;&#26597;&#35810;&#35828;&#26126;
--v_sub_title := '';
if p_company is not null then
v_sub_title := p_company||'/';
end if;
if p_category is not null then
v_sub_title := v_sub_title||p_category;
end if;
if p_beg_date is not null then
Begdate := substr(p_beg_date,1,4)||'&#24180;'||substr(p_beg_date,5,2)||'&#26376;'||substr(p_beg_date,7,2)||'&#26085;'||substr(p_beg_date,9);
v_sub_title := v_sub_title || Begdate ||' -' ;
if p_end_date is null then
v_sub_title := v_sub_title ||'&#33267;&#20170;';
end if;
end if;
if p_end_date is not null then
Enddate := substr(p_end_date,1,4)||'&#24180;'||substr(p_end_date,5,2)||'&#26376;'||substr(p_end_date,7,2)||'&#26085;'||substr(p_end_date,9);
v_sub_title := v_sub_title || Enddate ||' -' ;
if p_beg_date is null then
v_sub_title := v_sub_title ||'&#33267;&#20170;';
end if;
end if;
if substr(v_sub_title,-1,1) = '/' or substr(v_sub_title,-1,1) = '-' then
v_sub_title := substr(v_sub_title,1,length(v_sub_title)-1);
end if ;
-----------------------&#26631;&#39064;-----------------
v_line := '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">'||
'<html><head><title>&#36135;&#29289;&#27969;&#21521;&#34920;</title></head><body>';
fnd_file.put_line(fnd_file.output,v_line);
v_line:='<table border="0" cellpadding="1" cellspacing="0" width="100%">
<tr height="50" align="center">
<td align="center" nowrap valign="middle" colspan ="2" ><B><p align="center">
<font face="&#23435;&#20307;" color="red" size="3">&#36135;&#29289;&#27969;&#21521;&#34920;</font></B></p></td>
</tr>';
fnd_file.put_line(fnd_file.output,v_line);
v_line:='<tr>
<td align="left"><font face="&#23435;&#20307;" color="black" size="2">'||v_sub_title||'</font></td>
<td align="right"><font face="&#23435;&#20307;" color="black" size="2"> </font></td>
</tr>';
fnd_file.put_line(fnd_file.output,v_line);
--&#20083;&#19994;&#38656;&#35201;&#21333;&#25454;&#21495;&#65292;&#32780;&#32929;&#20221;&#38656;&#35201;&#20132;&#36135;&#21495;
select decode(p_organization_id,82,'&#21333;&#25454;&#21495;','&#20132;&#36135;&#21495;') into v_label1 from dual;
v_line :='<tr><td colspan="2"><table border="1" cellspacing="0" cellpadding ="4" width ="100%">
<tr style = "font-size=12px" bgcolor="#cccccc">
<td nowrap rowspan="2" valign="middle" align="center"> <b>' || v_label1 || '</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
if p_org_id = 84 then
v_line :='<td nowrap rowspan="2" valign="middle" align="center"> <b> &#21333;&#25454;&#21495;</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
end if;
v_line :=' <td nowrap rowspan="2" valign="middle" align="center"> <b> &#20998;&#20844;&#21496;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#38656;&#36135;&#21333;&#20301;</b></td>
<td nowrap colspan="'||to_char(v_item_count)||'" valign="middle" align="center"><b>&#21697;&#31181;&#21450;&#25968;&#37327;&#65288;&#21333;&#20301;&#65306;&#20214;&#65289;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#21512;&#35745;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#21551;&#36816;&#26085;&#26399;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#25215;&#36816;&#20154;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#25215;&#36816;&#20154;&#30005;&#35805;&#21495;&#30721;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#35746;&#21333;&#21495;</b></td>
<td nowrap rowspan="2" valign="middle" align="center"> <b> &#29983;&#20135;&#21378;</b></td>
</tr><tr bgColor="#cccccc" style = "font-size=12px">';
fnd_file.put_line(fnd_file.output,v_line);
for rec_item in item loop
v_line := '<td valign="middle" align="center"><b>' || rec_item.des || '</b></font></td>';
fnd_file.put_line(fnd_file.output,v_line);
arr_item_id(item%rowcount) := rec_item.id;
end loop;
v_line := '</tr>';
fnd_file.put_line(fnd_file.output,v_line);
------------------&#20027;&#20307;-------------------------------
open main;
loop
fetch main into rec_main;
---------------------&#20844;&#21496;&#27719;&#24635;--------------------------------------
If (v_company Is Not Null And v_company <> rec_main.sales_branch) Or main%Notfound Then
if p_org_id = 84 then
v_line := '<tr bgcolor="#ccffff" style = "font-size=12px">
<td nowrap colspan="4" valign="middle" align="center"><b>' || v_company || '&#23567;&#35745;</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
else
v_line := '<tr bgcolor="#ccffff" style = "font-size=12px">
<td nowrap colspan="3" valign="middle" align="center"><b>' || v_company || '&#23567;&#35745;</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
end if;
for i in 1..v_item_count loop
v_line :='<td nowrap valign="middle" align="right"><b>' || v_sumqty_per_com(i) || '</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
v_sumqty_per_com(i) := 0;
v_sumamt_per_com(i) := 0;
end loop;
v_line :='<td nowrap valign="middle" align="right"><b>' || v_total_qty || '</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>';
fnd_file.put_line(fnd_file.output,v_line);
v_total_qty := 0;
v_total_amt := 0;
end if;
exit when main%notfound;
v_rowsumqty := 0;
v_rowsumamt := 0;
v_company := rec_main.sales_branch;
--&#21462;&#24471;&#20083;&#19994;&#21333;&#25454;&#21495;
if p_organization_id = 82 then
v_column1 := vv_wsh_pkg.get_bill_of_doc_number(rec_main.delivery_id);
else
v_column1 := rec_main.delivery_id;
end if;
v_line := '<tr style = "font-size=12px">
<td nowrap valign="middle">' || v_column1 || ' </td>';
fnd_file.put_line(fnd_file.output,v_line);
if p_org_id = 84 then
v_line := '<td nowrap valign="middle">' || vv_wsh_pkg.get_bill_of_doc_number(rec_main.delivery_id) ||' </td>';
fnd_file.put_line(fnd_file.output,v_line);
end if;
v_line := '<td nowrap valign="middle">' || rec_main.sales_branch || '</td>
<td nowrap valign="middle">' || rec_main.customer_name || '</td>';
fnd_file.put_line(fnd_file.output,v_line);
for rec_qty in qty(rec_main.delivery_id,rec_main.order_number,rec_main.trx_date) loop
arr_qty(qty%rowcount).id := rec_qty.inventory_item_id;
arr_qty(qty%rowcount).qty := rec_qty.qty;
arr_qty(qty%rowcount).amt := rec_qty.amt;
v_rowsumqty := v_rowsumqty+arr_qty(qty%rowcount).qty;
v_rowsumamt := v_rowsumamt+arr_qty(qty%rowcount).amt;
i_counter := qty%rowcount;
end loop;
for i in 1..arr_item_id.count loop
for j in 1..i_counter loop
if arr_qty(j).id = arr_item_id(i) then
v_line := '<td nowrap valign="middle" align="right">' || to_char(arr_qty(j).qty) || '</td>';
v_sumqty_per_com(i) := v_sumqty_per_com(i)+arr_qty(j).qty;
v_sumqty_all_com(i) := v_sumqty_all_com(i)+arr_qty(j).qty;
v_sumamt_per_com(i) := v_sumamt_per_com(i)+arr_qty(j).amt;
v_sumamt_all_com(i) := v_sumamt_all_com(i)+arr_qty(j).amt;
exit;
else
v_line := '<td nowrap valign="middle"> </td>';
end if;
end loop;
fnd_file.put_line(fnd_file.output,v_line);
end loop;
--&#29983;&#20135;&#21378;&#21517;&#31216;
for rec_subinventory in subinventory_name(rec_main.delivery_id,rec_main.order_number,rec_main.trx_date) loop
If subinventory_name%Rowcount = 1 Then
v_subinventory_name := rec_subinventory.subinventory;
else
v_subinventory_name := v_subinventory_name || ',' || rec_subinventory.subinventory;
End If;
end loop;
--&#25215;&#36816;&#20154;&#30005;&#35805;
for rec_phone_number in phone_number(rec_main.carrier) loop
If phone_number%Rowcount = 1 Then
v_phone_number := rec_phone_number.phone_number;
else
v_phone_number := v_phone_number || ',' || rec_phone_number.phone_number;
End If;
end loop;
/* begin
select a.phone_number into phone_number
from wsh_carriers w,
wsh_carrier_contact_info_v a,
wsh_carrier_contacts_v b
where w.carrier_id = b.carrier_id
and a.relation_party_id = b.relation_party_id
and w.freight_code = rec_main.carrier;
exception when others then
phone_number := '';
end; */
v_line := '<td nowrap valign="middle" align="right"> <font color="#0000FF">'||v_rowsumqty||'</td>
<td nowrap valign="middle">' || rec_main.trx_date ||'</td>
<td nowrap valign="middle">' || rec_main.carrier ||' </td>
<td nowrap valign="middle">' || v_phone_number ||' </td>
<td nowrap valign="middle">' || rec_main.order_number ||'</td>
<td nowrap valign="middle">' || v_subinventory_name ||'</td>
</tr>';
fnd_file.put_line(fnd_file.output,v_line);
v_total_qty := v_total_qty+v_rowsumqty;
v_total_amt := v_total_amt+v_rowsumamt;
v_phone_number := '';
end loop;
close main;
commit;
--------------------&#25968;&#37327;&#27719;&#24635;------------------------------------
if p_org_id = 84 then
v_line := '<tr bgcolor="#cccccc" style = "font-size=12px">
<td nowrap colspan="4" valign="middle" align="center"><b>&#24635;&#35745;</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
else
v_line := '<tr bgcolor="#cccccc" style = "font-size=12px">
<td nowrap colspan="3" valign="middle" align="center"><b>&#24635;&#35745;</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
end if;
for i in 1..v_item_count loop
v_line :='<td nowrap valign="middle" align="right"><b>' || v_sumqty_all_com(i) || '</b></td>';
fnd_file.put_line(fnd_file.output,v_line);
v_total_qty := v_total_qty+v_sumqty_all_com(i);
v_total_amt := v_total_amt+v_sumamt_all_com(i);
end loop;
v_line :='<td nowrap valign="middle" align="right" ><b>' || v_total_qty || '</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>';
fnd_file.put_line(fnd_file.output,v_line);
v_line := '</table></td></tr></table></body></html>';
fnd_file.put_line(fnd_file.output,v_line);
end main;
end VV_OM110_PKG;
how to use php write this ?
can who help me?

Perhaps a shorter example would be more appropriate to ask about.
Use bbcode code tag http://www.phpbb.com/phpBB/faq.php?mode=bbcode#5 to enclose code.
-- cj

Similar Messages

  • How to make this work in php

    Hello,
    I am fairly new to php and am having problems working out the
    best way to go about doing what i want to do.
    I want users of my system to be able to choose from a
    selection of images which they have earlier uploaded. I am using a
    system where the picture show is the one with the number 1 in the
    `use` colum of a mysql database, only i dont know how to make it so
    a user can change that number.
    Any help will be greatly appreicated weather that is how to
    get the above to work , or ideas of a different system i could use
    to have the same effect,
    thank you,
    James

    From the problem you're describing, I would set it up like
    this:
    Db1_Table 1 (tbl_Images)
    Columns
    1) id
    2) image_location
    Db1_Table 2 (tbl_UserPrefs)
    1) id
    2) user_name
    etc...
    x) image_location
    So, in your user preferences, use a dynamic drop down. The
    values will come from Db1_Table 1.
    When the user submits the changes to his preferences, the
    value from the dynamic drop down will go into Db1_Table 2.
    You'll need to have 2 Recordsets for this to work, of course.
    edit: you can also have something else besides a drop down,
    ex: autocomplete text field or option buttons.

  • How to make this in Flash Builder?

    I am looking to make an Android app and one of the functionalities is somehting like in the video.
    I am new to Flash Builder and looking for some help to make it.
    Anyone has a tutrial or has any idea how to make this?
    Android SQLite App Development with Flash Builder and Flex - YouTube

    I'll give you the short answer, Flash Catalyst is built on top of the Flex Framework and it's libraries. When you launch or load a FC swf, it will contact the Adobe servers to check the status of various libraries. Since you are loading this into a standard Flash Professional created swf, you are by passing some of the fallbacks that exist.
    If the movieClip that you are creating is just a filler image, and you are just centering the FC swf, then I also recommend using CSS to display the filler and some HTML/CSS to center the content.
    Hope this helps a little.
    If you did the loading of the FC swf from a Flash Builder based project, you should not have the issue, since it is a Flex based SWF, the framework checks are already handled for you.
    Chris

  • Something keeps trying to download on my mac and I don't know what it is. It is not in the apple store and just comes out nowhere and request for my password to download something and I don't know what it is. How to make this stop?

    Something keeps trying to download on my mac and I don't know what it is. It is not in the apple store and just comes out nowhere and request for my password to download something and I don't know what it is. How to make this stop? It pops up every single day.

    Erica,
         I can, with 99.99% certainty, tell you that you are absolutely right in not wanting to download or install this "Helper," whatever it is (but we can be equally certain it would not "help" anything).
         I cannot comment as to Oglethorpe's recommendation of 'adwaremedic'; I am unfamiliar with it.  His links to the Apple discussion and support pages warrant your time and attention.
         It might be really simple -- Trying looking in your Downloads folder, trash anything that you don't know with certainty is something you want to keep, and then Secure Empty your Trash. Then remove the AdBlock extension, LastPass, and Web of Trust extensions to Safari and re-boot. If the issue goes away, still be extraordinarily careful in the future.
         Unfortunately, it's probably not going to be that simple to get rid of, in which case I'd then try the line by line editing in HT203987. 
         I have no further suggestions (other than a complete wipe and re-install...but that's a pain because trying to restore from Time Machine would simply ... restore the Mal).
       For the rest of us, please post when you find a solution.
         Best.
         BPW
      (Also, try to edit your second post -- black out your last name on the screenshot and re-post it for others)

  • TS2634 I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I have the same problem.
    Two similar discussions:
    https://discussions.apple.com/message/23081658#23081658
    https://discussions.apple.com/message/23281391#23281391
    I have not yet seen any official response to the question: "Is the Apple AV Composite cable fully supported with 30pin connector devices upgraded with iOS7 - specifically ? - eg. iPad 2, iPhone 4, iPhone 4s"
    If it is not currently supported is that then due to a bug / oversight and in that case is it something that will be fixed in the near future?
    Please let us know what feedback you got from asking Apple support.

  • How to make this in Adobe Photoshop CS5? PLEASE Help!

    Hey guys, i reallllllllly  want to know how to make this image in adobe photoshop.... the cone around the forecast track. Can you guys please show me how to do this? Id greatly appreciate it!

    There's a lot implied here, but you're not going to get around having to do the following in general:
    Use an unmarked map as a background.
    Draw shapes on layer(s) above the background and make them partially transparent.
    Obviously the key is to draw shapes that express the "cone of uncertainty" exactly as you want it to look, and with a minimum of fuss.
    I'd suggest drawing shapes with Path tools, then filling the shapes, applying a stroke (for the edge border), and using masking to hide parts you don't want to show (or which overlap with the other parts you're drawing).
    Are you needing to do this over and over or just once?
    -Noel

  • How to make this effect in Keylight?

    Hi, I have question, how to make this effect in Keylight?
    I know that this overlay is added here:
    http://oi57.tinypic.com/1174fup.jpg
    Photos:
    http://iv.pl/images/18475588964010299091.jpg

    Keylight what? All I see is some effect similar to Leave Color, a.k.a the Pleasantville effect that made the rounds 10 years ago. It may require additional masking and otehr effects, but definitely not something that is specifically related to Keylight...
    Mylenium

  • HOW TO MAKE THE CONTENT OF THE TABLE PRINT IN A TABLE CONTROL SCREEN?

    Can any one tell me how to make the content of the table control print in a table control screen!!?
    Please help!!
    I have to make the contents of a table in the table control screen print ? any idea
    Regards,
    Vj

    Please refer to Demo Program,
    DEMO_DYNPRO_TABCONT_LOOP
    Its very clear.
    Shreekant

  • How to make this work flow?

    Hi,
    In a target database such like MySQl, I define a colum role to store the roels in SIM. Then, I want to make a post-workflow that set the account with related role which is defined in the DB after reconciliation and move those accounts from this DB to a specified organzation.
    How to make this workflow?
    If anyone know about this, kindly help me...
    thanks..

    Just a thought... Are you able to run this as activesync? If you use activesync you could just use a form or metaview to merge (or replace) your role value with waveset.roles and set the org for accounts that correlate.
    -Rob

  • How to make this work with Firefox, HELP!

    Downloading for Real-player, after watching the full movie, I click download and it has to reread the movie from the internet. When using explorer, after downloading the movie, it reads it from memory, which makes it a fast download. How to make this work with Firefox, I like not to use Microsoft products, and I really like Firefox 7.0.1!!!! HELP!

    -> click '''Firefox''' button and click '''Options''' (OR File Menu -> Options)
    * Advanced panel -> Network tab
    * place Checkmark on '''Override Automatic Cache Management''' -> under '''Limit Cache''' specify a large size of space
    * Remove Checkmark from '''Tell me when websites asks to store data for offline use'''
    * click OK on Options window
    * Restart Firefox
    Check and tell if ts working.

  • How to make this animation in TwitchPlugin?

    Hi, I have question, how to make this effect and animation in twitch.
    Effect:
    Animation:
    http://youtu.be/UIrSSYjW5-A?t=15s

    If you bought the plug-in you have a bunch of tutorials.
    If you are thinking about buying the plug-in take a look at the tutorials provided by Video CoPilot
    https://www.videocopilot.net/products/twitch/
    If you are still lost AE Basics

  • Anyone knows how to make this code to netbeans??

    anyone knows how to make this code to netbeans?? i just want to convert it into netbeans... im not really advance with this software... anyway..just reply if you have any idea...or steps how to build it... etc.... thanks guys...
       import javax.swing.*;
       import javax.swing.table.*;
       import java.awt.*;
       import java.awt.event.*;
       import java.util.regex.*;
       public class FilterTable {
         public static void main(String args[]) {
           Runnable runner = new Runnable() {
             public void run() {
               JFrame frame = new JFrame("Sorting JTable");
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               Object rows[][] = {
                 {"AMZN", "Amazon", 41.28},
                 {"EBAY", "eBay", 41.57},
                 {"GOOG", "Google", 388.33},
                 {"MSFT", "Microsoft", 26.56},
                 {"NOK", "Nokia Corp", 17.13},
                 {"ORCL", "Oracle Corp.", 12.52},
                 {"SUNW", "Sun Microsystems", 3.86},
                 {"TWX",  "Time Warner", 17.66},
                 {"VOD",  "Vodafone Group", 26.02},
                 {"YHOO", "Yahoo!", 37.69}
               Object columns[] = {"Symbol", "Name", "Price"};
               TableModel model =
                  new DefaultTableModel(rows, columns) {
                 public Class getColumnClass(int column) {
                   Class returnValue;
                   if ((column >= 0) && (column < getColumnCount())) {
                     returnValue = getValueAt(0, column).getClass();
                   } else {
                     returnValue = Object.class;
                   return returnValue;
               JTable table = new JTable(model);
               final TableRowSorter<TableModel> sorter =
                       new TableRowSorter<TableModel>(model);
               table.setRowSorter(sorter);
               JScrollPane pane = new JScrollPane(table);
               frame.add(pane, BorderLayout.CENTER);
               JPanel panel = new JPanel(new BorderLayout());
               JLabel label = new JLabel("Filter");
               panel.add(label, BorderLayout.WEST);
               final JTextField filterText =
                   new JTextField("SUN");
               panel.add(filterText, BorderLayout.CENTER);
               frame.add(panel, BorderLayout.NORTH);
               JButton button = new JButton("Filter");
               button.addActionListener(new ActionListener() {
                 public void actionPerformed(ActionEvent e) {
                   String text = filterText.getText();
                   if (text.length() == 0) {
                     sorter.setRowFilter(null);
                   } else {
                     try {
                       sorter.setRowFilter(
                           RowFilter.regexFilter(text));
                     } catch (PatternSyntaxException pse) {
                       System.err.println("Bad regex pattern");
               frame.add(button, BorderLayout.SOUTH);
               frame.setSize(300, 250);
               frame.setVisible(true);
           EventQueue.invokeLater(runner);
       }

    its okay onmosh.....what we need to
    this...forum....is to have a good......relationship
    of programmers......and to start with .....we need to
    have a good attitude........right.....???.....no
    matter how good you are in programming but if you did
    not posses the right kind of attitude....everything
    is useless.....in the first place....all we
    want....is just to ask...some....help....but
    conflicts......but unluckily......we did not expect
    that there are members in here which......not
    good...to follow.....just as suggestion for those
    people not having the right kind of attidude...why
    can't you do in a very nice message sharing in a very
    nice....way....why we need to put some
    stupid....stuff...words.....can't you live with out
    ******* ****....its not.....lastly especially you
    have your children right now and people around...that
    somehow......idiolize...you even me....is one of
    them......but showing but attitude....is not
    good......tnx....hope you'll take it this....in the
    positive side.....be optimistic...guys....the
    world..is not yours....all of us will just past
    away....always..remember that one.....treasure..our
    stay in this....temporary home.....which...is
    world....Whoa. That post seems to be killing my brain.
    URK
    Join........us..........do not be..........afraid.......

  • How to make this validation ?

    Dear all
    In my Entity Object I have 4 attributes:
    ID , AccomplishDate ,cancelDate,Status
    I want to make a validation on the Status attribute , which is:
    if status = "CAN" then the CancelDate attribute value will be current date and the AccomplishDate attribute value be null.
    Please can any one tell me how to make this validation.
    Thanks

    Thank you so much for replaying
    The original method was
        public void setProcStatus(String value) {
                 setAttributeInternal(PROCSTATUS, value);
        }I changed it to be like this
          public void setProcStatus(String value) {
            if (value.equals("CAN")){
              setAccomplishDate(new Date());
              setCancelDate(null);
            setAttributeInternal(PROCSTATUS, value);
        }is this right
    please tell me how to set the value of AccomplishDate attribute to the current date

  • How to make this pattern?

    Hello guys Please I am looking for advice how to make this kind of pattenr in pohtoshop- you can see it on background- the rounded one- en the end whole piece makes nice surface.
    http://vladstudio.deviantart.com/art/Typographic-World-Map-106395788
    thank a lot

    Sometimes a patten is defined for some pixel size and may even need to have the document rotated to have the proper orientation for the pattern. For example a frame pattern for a one inch wide strip.  An Action can be created to add the pattern to a mitered 1" wide strip at 300 dpi  on the left side then rotate the document for the other side rotate back and dupe and flip the frame side added.
    If you search the web there are a countless number of patterns that can be downloaded for free textures like woods ,paper, textiles etc.

  • How to make this logo effect? Help please!

    How to make this effect? I'm new in illustrator.

    It looks like 3 discs with a 2d image applied to them. I would try the 3d revolve tool to create one, then duplicate it for the other two.

Maybe you are looking for

  • How do i view a received or dialed calls when i am on a call

    how do i view a received or dialed calls when i am on a call . where as in other phone like nokia htc you can do that but i would like to know weather it's possible in iphone

  • How to run a SQL manually with the same SQL_ID

    I want to know how to run a SQL which comes from application side manually so that same SQL_ID is generated. I am aware that even if there is a small change in the sql(even a space) the sql_id gets changed. CURSOR_SHARING_PARAMETER is similar in my D

  • 7.2 glitches?

    i just upgraded to 7.2 and a couple things have been bothering me. first, when im creating a loop, often i hit record and play a little, then add to it slowly as it loops over and over. however when i do this, for some reason on each consecutive cycl

  • SAP AII v/s SAPConsole whtu00B4s the difference?

    Hi Guys, I'm getting started on this RF thing and I want to know what's the best option when someone needs to use a device (like a PDA or a barcode scanner) which one would be connected via RF with SAP by example to do materials inventory, I'm some k

  • Iphone 3g cannot wifi.

    Hey, My iphone 3g refuses to find any network connections. I have reset my network settings 3 times now, i have reset my phone 10 times now, i have done all these tricks on youtube and none of them work, i have 2 wireless acess points in my house but