Problem with ITEM(:P1_REPORT_SEARCH)

Hi!
I have created a report-form using the wizard.
I have an Item on the Report page which is of Type SELECT LIST WITH SUBMIT(Static), there are 2 values in the item namely :
'YES ' d,'Typformel' r and 'NO' d,'NO' r (:P1_X is Item name).(display null value is activated in the ITEM attributes)
my basic objective is to search for a particular word in the COL2 when 'YES' is selected in the item, else display the records which does'nt contain that word when 'NO' is selected.
My SQL query generated by the wizard(edited) is something like this:
SELECT ' ',
"COL1","COL2", "COL3"
FROM "Tablename(VIEW)"
where
instr(upper("COL1"),upper(nvl(:P1_REPORT_SEARCH,"COL1"))) > 0 or
instr(upper("COL2"),upper(nvl(:P1_REPORT_SEARCH,"COL2"))) > 0 or
instr(upper("COL3"),upper(nvl(:P1_REPORT_SEARCH,"COL3"))) > 0
and
upper (COL2) like upper ('%'||:P1_X||'%')
or
upper(COL2) like upper(case when :P1_X = '%' then 'COL2'
when :P1_X = 'Typformel' then '%typformel%' end )
or
upper(COL2) not like
upper(case when :P1_Y = 'NO' then '%typformel%' end )
or
(COL2 IS NULL and :P1_X IS NULL)
Everything works as expected with filtering the Report with the help of the Item(:P1_X), but the search field generated by the wizard (:P1_REPORT_SEARCH)
does'nt show the highlighted words entered in the Item.
Any suggestions are eagerly awaited
Kind Regards!
Chalamalasetty.

You have to refer that field ( &P1_REPORT_SEARCH.) in the field definition of the field where you want to see the highlighting.
You do that in the report attributes.
If you have a field P_ID for example you look into the report attributes in your page definition. There you can edit the fields of the report. In the column formatting you find a column called "Highlight words". There you enter &P1_REPORT_SEARCH.
The . and the & are important parts of the syntax.

Similar Messages

  • Problem with Item Validation

    Hello,
    I am running an advanced tutorial: http://download.oracle.com/docs/cd/E14373_01/appdev.32/e13363/issue_track_ui.htm#BGBJCGIC
    and I have a problem with item Validation.
    Tutorial offers the following:
    You must manually create another validation to ensure that the Actual End Date is the same or later then the Start Date.
    To add a validation for the Actual End Date:
    1.Under Page Processing, Validations, click the Create icon.
    2.For Level, accept the default, Item level validation, and click Next.
    3.For Item, select Project Details: 50.P3_ACTUAL_END_DATE (Actual End Date) and click Next.
    4.For Validation Method:
    a.Select PL/SQL and click Next.
    b.Accept the default, PL/SQL Expression and click Next.
    5.For Sequence and Name:
    a.Sequence - Enter 50.
    b.Validation Name - Enter P3_END_AFTER_START.
    c.Accept the remaining defaults and click Next.
    6.For Validation:
    a.Validation - Enter:
    to_date(:P3_ACTUAL_END_DATE,:APP_DATE_FORMAT) >= to_date
    (:P3_START_DATE,:APP_DATE_FORMAT)
    b.Error Message - Enter:
    Actual End Date must be same or after Start Date.
    c.Click Next.
    7.For Conditions:
    a.Condition Type - Select Value of Item in Expression 1 is NOT NULL
    b.Expression 1 - Enter P3_ACTUAL_END_DATE
    8.Click Create.
    Is there a mistake in explanation? I did it 3 times already, very carefully! I ran the page, entered the date, which is After the Start date, and get the error message: Actual End Date must be same or After Start Date!!
    Thank you for your consideration...

    I got it solved. I don't know if this is documented(or a bug) but what I did was declare an exception and then raise it and put the form_trigger_failure into the exception handler rather than raise form_trigger_failure in the body.
    declare
    alreadyExists exception;
    begin
    -- select .....
    raise alreadyExists;
    exception
    when alreadyExists then
    message('.....exists');
    raise form_trigger_failure
    end;

  • Problem with item and/or data during page-processing-PS/SQL

    Greetings!
    On my page I have a custom report (from 2 tables) and a small form-field, that adds and edits data in the report. After generating the form with the wizard I added an extra item, to store the id from one of the tables from the report data.
    Now, on submit a calculation should take place, that updates data according user input with a procedure in Page-Prosseses:
    declare a number;
    begin
    case :PLATZ
    when 1 then a:=100;
    when 2 then a:= 50;
    else a:=25;
    end case;
    update TBL_MITGLIEDER set TURNIERPUNKTE = TURNIERPUNKTE + a
    where ID_MITGL = :P14_ID_MITGL;
    end;
    :PLATZ is user selected (1,2,3), :P14_ID_MITGL stores the reference to TBL_MITGLIEDER (and shows the change, when I select another record)
    As I understand, that process should also run, when I submit a chance, but nothing happens then.
    But when I try to save a new record (which worked without any problems before adding that process), I get this error message:
    ORA-06550: line 1, column 64: PL/SQL: ORA-00957: duplicate column name ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table TBL_TURNIERSIEGER.
    Then, when I go back into the app-builder and try to run the page again, I get this message:
    ORA-01403: no data found
         Error      Unable to fetch row.
    I am not sure, if you guys have all the information you need, to know whats going on. Maybe this has to do with session-id and the whay, items are updated. I hope you can help me.
    Thanks, best regards,
    tobi

    First can you please post all log file errors
    >> I can't really give you a solution or specific recommendation since I did not saw this error yet myself, but on your own risk you can try:
    1. You may try to just register 'dts.dll' using regsvr32.exe, but this error may indicate a bigger problem with setup.
    If you are running SQL Server 64bit then try running this at the command prompt: %windir%\syswow64\regsvr32 "%ProgramFiles(x86)%\Microsoft SQL Server\90\dts\binn\dts.dll"
    2. You can try reinstall from start (In this case you have to make sure that you un-install all)
    [Personal Site] [Blog] [Facebook]

  • Problem with item of type DB column, reinitialized in a process

    Hello,
    I have a problem with an item P216_username with source type=database column(empty in this case). In a process On Load-After Header(with a sequence number bigger then the Fetch Row sequence number) , I change the value of this item:
    :P216_USERNAME := 'custom_value';
    When I run the page, I see the item P216_USERNAME with the value from the database column(empty), instead of attributed value from the process('custom_value').
    Here is a copy of the page in a debug mode:
    0.00: Session: Fetch session header information
    0.00: ...Metadata: Fetch page attributes for application 107, page 216
    0.00: Fetch session state from database
    0.00: Branch point: BEFORE_HEADER
    0.00: Fetch application meta data
    0.01: Computation point: BEFORE_HEADER
    0.01: Processing point: BEFORE_HEADER
    0.01: Show page template header
    0.01: Computation point: AFTER_HEADER
    0.01: Processing point: AFTER_HEADER
    0.01: ...Process "Fetch Row from CONSULTANT_ALLOCATION_PERIODS": DML_FETCH_ROW (AFTER_HEADER) F|#OWNER#:CONSULTANT_ALLOCATION_PERIODS:P216_ALLOCATION_PERIOD_ID:ALLOCATION_PERIOD_ID
    0.01: ...Process "Initialize Username": PLSQL (AFTER_HEADER) begin :P216_USERNAME := 'custom_value'; htp.p(:P216_USERNAME); end;
    custom_value PrintLogout
    0.01: Computation point: BEFORE_BOX_BODY
    0.01: Processing point: BEFORE_BOX_BODY
    0.01: Region: Edit Allocation Period
    Edit Allocation Period Cancel
    Create
    0.02: Item: P216_ALLOCATION_PERIOD_ID HIDDEN
    0.02: Item: P216_USERNAME TEXT
    Username
    0.02: Item: P216_START_DATE PICK_DATE_MM_DD_YYYY
    Start Date
    0.02: Item: P216_END_DATE PICK_DATE_MM_DD_YYYY
    End Date
    0.02: Item: P216_COMMENTS TEXTAREA
    Comments
    custom_value ''
    0.02: Computation point: AFTER_BOX_BODY
    0.02: Processing point: AFTER_BOX_BODY
    0.02: Computation point: BEFORE_FOOTER
    0.02: Processing point: BEFORE_FOOTER
    0.02: Show page tempate footer
    If you had this problem, or you know where it comes from, please answer.
    Thank you.

    Hi,
    Tomáš : I noticed that if i change the Source Used to 'Only when current value in session state is null' it works but I dont think its a normal behaviour.
    Scott: Thanks, it's working now with the post computation callculation attribute.
    Thanx for answers,
    Vastiana

  • Problems with Item level access rights

    I am having problems with a page group I created. I have applied item level security to an item on a page, managed by me and viewable by one access group. I then created multiple users and signed in as one user who was not in the access group to see that item. When I navigated to that page, I could see the item. When I restricted access to the tab on the page, I could not see the tab, so that worked. But when I opened access to the tab, I could still see the item.
    Here are my settings:
    Page Group Properties: Display Page To Public Users checked and Enable Item Level Security checked.
    Page Properties: Display Page To Public Users checked and Enable Item Level Security checked.
    Tab Properties: Specify Access Settings checked and added all of the appropriate groups with view access.
    Text Item Properties: Define Item Level Access Privileges and managed by me and viewable by one access group.

    I am having problems with a page group I created. I have applied item level security to an item on a page, managed by me and viewable by one access group. I then created multiple users and signed in as one user who was not in the access group to see that item. When I navigated to that page, I could see the item. When I restricted access to the tab on the page, I could not see the tab, so that worked. But when I opened access to the tab, I could still see the item.
    Here are my settings:
    Page Group Properties: Display Page To Public Users checked and Enable Item Level Security checked.
    Page Properties: Display Page To Public Users checked and Enable Item Level Security checked.
    Tab Properties: Specify Access Settings checked and added all of the appropriate groups with view access.
    Text Item Properties: Define Item Level Access Privileges and managed by me and viewable by one access group.

  • Availability check problem - with item category(TAN and TANN)

    Hi All,
    We have a problem with the availability check in the standard order. Suppose if I give the item category as TAN, the availabilty check is green for that line item. If I change the item category from TAN to TANN, then the availabilty check is red.
    How Item categories influence the availability check? Is availability check also depend on customer?
    Thanks & Regards,
    Anil.

    Hi ,
    please check in this path.
    Customer Relationship Management>Basic Functions>Availability Check>Assign ATP Profile to Item Category
    In this step you assign the ATP profile to an item category:
    1. Choose the relevant item category.
    2. Enter the name of the ATP profile in the ATP profile field.
    If this field is empty,  no availability check is carried out.
    ATP profile-
    1. A key that is assigned to the item category of a sales transaction item to control whether availability check takes place for this item.
    2. If availability check is carried out in SAP Advanced Planner and Optimizer (SAP APO), the name of the requirements profile in SAP APO is used for the ATP profile in CRM Online to carry out the following functions in SAP APO:
    -ATP check
    -Transfer of requirements
    -Delivery scheduling
    -Transportation scheduling
    Hope it will useful.
    thanks
    Hemant ghiya

  • Exchange 2007 - restored (merged) Mailboxes - Problem with items in Outlook

    Hey guys,
    last week we had to restore and merge our Exchange Mailbox Database. We had a running Database with data until Oct 14 and merged a recent backup into the User Mailboxes.
    Some mailboxes didn´t have problems, others have from then on doublicated Mails, Calendar Items, Tasks, ... even deleted/renamed folders appear now again WITH email content.
    I don´t understand what happend there and if I can do something.
    Hope someone could help me!
    Regards

    Hi,
    According your post, I understand that some mailbox contain duplicate items after restore and merge mailbox.
    If I misunderstand your concern, please do not hesitate to let me know.
    Are you run Restore-Mailbox with AllowDuplicates parameter? Please double check in OWA.
    Besides, please run below command to check the structure of mailbox folder:
    MailboxFolderStatistics “identity” | Select Name,FolderSize,FolderAndSubfolderSize
    If the issue only occur on Outlook client side, please run Outlook with online mode or reconfigure a new profile for testing.
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Problem with items value

    Hi All,
    I created 2 popup lov items exactly the same: P91_SUBJ_TYPE and P91_SHG_KOD.
    I thought that they both has the same defult value (befoer selection value
    from the LOV) :NULL. (although i haven't define any defult value).
    now under Page Processing i have a process like this :
    begin
    if :P91_SHG_KOD is null and :P91_SUBJ_TYPE is not null then
         :P91_IND_FETCH :=1;
    end if;
    if :P91_SHG_KOD is not null and :P91_SUBJ_TYPE is null then
         :P91_IND_FETCH :=2;
    end if;
    if :P91_SHG_KOD is not null and :P91_SUBJ_TYPE is not null then
         :P91_IND_FETCH :=3;
    end if;
    end;but it doesn't work.
    after some checks i found out that apex doesn't identify P91_SUBJ_TYPE as
    null (although it looks that in the session state it is a null).but it does
    recognize the item P91_SHG_KOD as null.
    now in P91_SUBJ_TYPE item i defined a default value = 0.
    and changed the process like this:
    begin
    if :P91_SHG_KOD is null and :P91_SUBJ_TYPE != 0 then
         :P91_IND_FETCH :=1;
    end if;
    if :P91_SHG_KOD is not null and :P91_SUBJ_TYPE =0 then
         :P91_IND_FETCH :=2;
    end if;
    if :P91_SHG_KOD is not null and :P91_SUBJ_TYPE != 0 then
         :P91_IND_FETCH :=3;
    end if;
    end;this process works fine.
    my question why P91_SHG_KOD identified as null and P91_SUBJ_TYPE doesn't.
    the question is bigger when i tried to do a computations for P91_IND_FETCH
    (without any definition of default value for the l.o.v items)
    computations for P91_IND_FETCH equals 1 when
         (:P91_SUBJ_TYPE !=0 or :P91_SUBJ_TYPE is not null)
    and (:P91_SHG_KOD is null or :P91_SHG_KOD=0 )which works fine.
    computations for P91_IND_FETCH equals 2 when
         (:P91_SHG_KOD !=0 or :P91_SHG_KOD is not null)
    and (:P91_SUBJ_TYPE  is null or :P91_SUBJ_TYPE =0 )does not work.
    can someone explain what seems to be the problem ?
    thanks in advance

    thank you for your response .
    but it's doesn't works.
    first - if apex doesn't return null value for LOV, why P91_SHG_KOD works as null ?
    second - while i did the computation that you wrote it doesn't work:
    begin
    if :P91_SHG_KOD is null and :P91_SUBJ_TYPE is not null then
         :P91_IND_FETCH :=1;
    /* it works well.*/
    end if;
    if :P91_SHG_KOD is not null and :P91_SUBJ_TYPE is null then
         :P91_IND_FETCH :=2;
    /*it doesn't work. ind_fetch=3 (instead of 2).*/
    end if;
    if :P91_SHG_KOD is not null and :P91_SUBJ_TYPE is not null then
         :P91_IND_FETCH :=3;
    /* it also works well.*/
    end if;
    end;and when P91_SHG_KOD and :P91_SUBJ_TYPE are empty it also doesn't work - ind_fetch =1 (instead of null)
    in the 2 cases that it doesn't work(as i mentioned above) it also show an eror message:
    Error: ORA-01722: invalid number performing LOV query:
    "select K_DESC, KOD_P from (select kod_p || ' ' || kod_desc
    k_desc, kod_p from codes order by kod_p) wwvlovinlineviewname where
    KOD_P = :WWV_LOV_RETURN_KEY_UTIL_1111".  (this eror message caused because of the null problem. when i changed the process and defined a default value
    to :P91_SUBJ_TYPE this message doesn't appear ).
    can you explain me that?
    thanks in advance.

  • Problem with Item Labels in ORacle 10g

    Hi,
    We have unchecked the item labels in oracle discoverer 10g. when we create the portlet(after moved server from 10.1.0.2 to 10.1.2), it showing item labels for the discoverer report.
    we dont want item labels to be displayed in portlets.
    Can one any tell us why this occurs?
    Thanks in advance.

    Hello,
    We have unchecked Item Labels (not to display the column names in the cross tab) in Discoverer plus (Tools ----> Options -----> Sheet -----> Show Item Labels).
    And created the discoverer worksheet portlet in Oracle Portal with Options to display the cross tab.
    The Item Labels are displaying in this discoverer worksheet portlet.
    We donot want to display the Item Labels.
    How can i achieve this?
    Thanks,

  • Problems with item cost & batch table

    Hi experts,
    I have developed a crystal report recently, to retrieve all the data from batch table (OIBT) and present it in a report.
    Valuation method: moving average
    Begin:
    Item ABC
                  (batchnum)A1  blah   (qty)3   (itemcost)10.00  (whs)01
                  (batchnum)A2  blah   (qty)4   (itemcost)12.00  (whs)01
    tables involved OITM(retrieve info), OIBT(retrieve info), OITW(retrieve item cost)
    Everything was fine until the problem(step) below occurred:
    In my query, I already included a condition whereby BatchQuantity must be greater than 0, OITW.OnHand must be greater than 0
    Then, I created a Inventory Transfer document to move A1(full quantity) from Whs 01 to Whs 02.
    I opened up my crystal report, the result shown as following:
    Item ABC
                  (batchnum)A1  blah   (qty)3   (itemcost)10.00  (whs)01
                  (batchnum)A1  blah   (qty)3   (itemcost)10.00  (whs)02
                  (batchnum)A2  blah   (qty)4   (itemcost)12.00  (whs)01
    How to solve the above issue?Please advice. Thank you.

    Hi Tou,
    Check your query  warehouse are linked in your query
    Batch quantity greater than Zero means it consider the IN, OUT batch transactions.
    Regards
    Jambulingam.P

  • I keep having a problem with items in my house getting kicked off line

    I have 2 kindle fires and one regular kindle, a pc and a laptop. I have comcast cable and they say I have enough strength to run 10 items. What is causing this/

    First of all let me know the model number of the router? Does it happen when the modem connected directly to the computer? Well, you can try the following set of settings:
               1] Open up the browser and on the address bar type 192.168.1.1 that will open up the Router setup page.
               2] Lower the MTU (Maximum Transmission Unit) from 1500 to 1400 or less (usually found on your router's main/ basic setup page). Here is the link for determining and setting up the correct MTU size: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=fbf8e8564632422eaa8ea80bf9dcba64_386.xml&pid=80&re...
              3] Then Click on wireless Tab select Channel Width to 20 MHz only and Channel to 1, 3, 6, 9, and 11. Click Save Settings.
    Second, look for the current firmware version in the router.

  • Serial attribute and org attribute problems with item master

    IF i want to unassign an item from an org, how would i do tht
    The check is not updateable in the organization assignment tab
    Secondly:
    When i try to make an existing item serial controlled, i go to inventory tab on item master and when i change the serial control attribute GENERATION then "For some items it says APP-INV-05525: Either On Hand quantity or pending transactions exist for item, cannot change this value"
    But for same item if i choose GENERATION sales order issue than it works fine.
    Thirdly:
    How would i Use generated serial numbers..how to assign them or use them for issuing and recieving

    Regarding the 1st part of your query: Unassigning item from an Org
    You cannot unassign an item that way (by unchecking the Assigned checkbox).
    You have 2 options:
    1) Delete the item from the respective Org if it is not yet transacted in that org.
    Navigation : Items-> Delete Items
    Once selecetd this will open deletion Group screen, please enter a new group name and description and for type select Item from LOV and then in details Tab enter your item that you want to be taken out.
    Save the transaction and then click on Delete group button at the bottom of the screen --> this will raise a concurrent request.
    If it is already transacted in the respective org from where you want to delete it then system will not allow to delete the item for audit trail purpose.
    2) You can make the item 'Inactive' to prevent transactions or ordering (purchasing/sales) you can uncheck the appropriate attributes on that item in the org (assuming your attributes controls allow it at org level rather than master level).
    Regarding Serial number generation options a) At Receipt and b) At Sales Order Issue:
    a) At Receipt >> Create and assign serial numbers when you receive the item. As you move the material within inventory and until you issue it out you have to use the serial number for those transactions.
    b) At Sales Order Issue >> Create and assign serial numbers when you issue (ship) the item against a sales order. For this option serial numbers are required at ship confirm.
    Now as per the definitions given above, if there on-hand already exists in your organization(s) then you cannot set the serial generation control "At Receipt". Because in that case all existing on-hands should have serial number assigned which is not the case. On-hand should be zero to set the control "At Receipt". Hence system will prevent you from setting it to "At Receipt" when on-hamd exists. Also in your post you mentioned that you tried to change the control in Item Master, that means serial control generation attribute is set at Master level for you. In this case it will consider on-hands for that item in all the child orgs.
    On the other side if you are setting serial control generation "At Sales Order Issue" then seral number is not required for existing on-hands because it will be created and assigned during ship confirm. So system will not prevent even if on-hand exists.
    Considering the options available in the system your third question (How would i Use generated serial numbers..how to assign them or use them for issuing and recieving) not very clear. The "generated serial numbers" part is creating little confusion in mind as to what you are actually looking for.
    As explained above, if control is set "At Receipt" >> Create and assign serial numbers when you receive the item. Use the Lot/ Serial button on the right hand corner of the material transaction screen and enter the serial number.
    If control is At Sales Order Issue >> Create and assign serial numbers when you issue (ship) the item against a sales order. In the Shipping Transaction screen use Tools >> Serial Numbers option before ship confirm and enter the serial number.
    But if you have set the control as "Predefined" then, assign predefined serial numbers (by generating before hand) when you receive the item. Thereafter, for any material transaction, you must provide a serial number for each unit.
    Hope this helps.

  • Problem with item/component quantity in BOM

    Dear All,
    Our requrement for few BOM components are 6,250FT and 1.540,123 FT respectively.(i.e.  six point two five zero foot and One thousand five hundred and fourty foot and point one two three inches). This unit is perfect in transaction CS02/CS03.
    But ,when look at the same units in transaction CS11,  6,250FT has been rounded off to 7 FT (seven) and 1.540,123 FT has been rounded off to 1.541 FT.
    Kindly let me know, if this is the standard behaviour of SAP, or else should i make any configuration change, so that the units are same in both the transactions ?
    My requirement is that the units in CS03 and CS11 should be same.
    Best regards,
    K.Kumar.

    Dear
    In SAP standard , BOM qty will be upto 3 decimal points .If you  have BOM Qty as 1.2345  , CS11/CS12/CS13 all of this will populate as 1.235  which means it is rounded up to three decimal points because in SAP-T-code CUNI -Slect  UOM-Hit of on UOM tan  -Seleclt the UOM -Double Click  -Goto Decimal Place Rounding option -Here it will upto 3 DECIMAL POINT
    Based on this Alloable set up in SAP Stanard , it will roundede till 3 decimal point .
    If you want to make it more , then you need to have change in base QTY of BOM so that it will be both the same but larger .
    Regards
    JH

  • Problems with items in style drawer

    Not sure what I've done. I create the newsletter for our church. I started w/ a pre-made template and tweaked it to fit our needs. It has worked well for a couple years. Now, when I open up the Style Drawer, many of the styles are missing. There are big gaps in the list of Paragraph Styles, Character Styles etc. What have I done? Is there a way to restore all of the styles? Even when I open a new template - many style options are missing. Thanks in advance...Karen

    Do you have saved copies of the newsletter that have the lost styles??? If so you can import the styles from the old newsletter to a new document and save it as a template.
    Here is how the manual says how to do it:
    +To import styles from a Pages document:+
    +1 Choose Format > Import Styles.+
    +2 Select the document that contains the styles you want to import, and then click Open.+
    +3 Select the styles you want to import in the dialog. Hold down the Command key as you click the style names to select multiple styles, or click Select All.+
    +4 To replace styles in your document that have the same name as the styles you are importing, select “Replace duplicates.” Note that replacing a style will affect any text that uses this style; replacing a style also changes the style of text in locked objects, but the text retains its original appearance.+
    +If an imported style has the same name as a style in the open document and you do not select “Replace duplicates,” a number is appended to the name of the imported style. For example, if you import a style called Body to a document that already contains a Body style, the imported style will be named Body 2.+
    +5 Click OK.+
    +Imported paragraph styles will be available by clicking the Paragraph Style pop-up menu in the Format Bar and in the Styles drawer of your document. Imported character and list styles will be available in the Styles drawer.+
    +To maintain a consistent look among several documents, keep a master document that contains all the styles you need. When you need to change a style, change it in the master document and import the master document’s styles into the other documents.+
    Hope it'll help you!

  • Problem with ItemEvent...................

    Hai guys...............
    I have a problem with Item event.
    When i remove an item listener from a combo box.
    i want to know about ItemEvent
    "ItemEvent(ItemSelectable source, int id, Object item, int stateChange)"
    wat is this ItemSelectable ,id, item and stateChange
    Please give an Example..........................

    Check out the [API |http://java.sun.com/javase/6/docs/api/] on ItemEvent .
    PS- What is a "hai"? Is that Japanese? Is it like a koi fish? I have a tattoo of a koi fish. Two actually. A bit cliche, I know, but I was young and dumb. Weren't we all, at one point or another?

Maybe you are looking for

  • How to get a filename list from a website?

    Hi,Everybody!           I want get filename list form a dirctory in a website:           For example:           There's a website is: http://www.otherweb.com , there's some files like           this: http://www.otherweb.com/dir/001.html           htt

  • Sound Output to Sony TV

    After upgrading my iMac to OSX 10.8, I have lost the ability to output sound to the Sony TV.  It is not listed as an available device. How can I restore it?  Must I get a device driver from the Sony support site and install on the iMac? Thanks so muc

  • E-Mail reports failing after upgrading to DPM 2012 R2.

    I am trying to follow Mike Jacquet's blog post regarding fixing e-mailed reports after ugprading to DPM 2012 R2.  The link is here:  http://blogs.technet.com/b/dpm/archive/2013/12/05/attempts-to-schedule-a-mailed-report-in-dpm-2012-fail-with-reportin

  • Best picture file format

    I generally don't do photo montages.  However, I agreed to do a 200 pic photo montage for a friend.  Scanned all pics and saved as jpegs - Exported to media encoder and it's taking forever to encode (going on 20 minutes now).  what is the best file f

  • How to make "MXKollection + ADDT" work with php 5.3+

    Hello Everyone, I am back again to this forum after i suffered a lot while trying to use my old website created with "MXKollection" and "ADDT" tools, i have faced a lot of deprecated functions along with the "Registration" + "Login" + "Send Email". E