Problem with concurrent request set api call

Hi,
Scenario...
I have a concurrent request set that is called as follows from a plsql script....
** Note : I removed the cursor definition for simplicity.
VARIABLE exit_status number
DECLARE
ln_request_id NUMBER := 0;
ln_user_id apps.fnd_user.user_id%TYPE;
ln_resp_id apps.fnd_responsibility.responsibility_id%TYPE;
ln_app_id apps.fnd_responsibility.application_id%TYPE;
ln_resource_id apps.jtf_rs_resources_vl.resource_id%TYPE;
ex_errors EXCEPTION;
lb_chk BOOLEAN;
BEGIN
:exit_status := 0;
OPEN cur_appsinit;
FETCH cur_appsinit
INTO ln_user_id,
-- ln_resource_id,
ln_resp_id,
ln_app_id;
CLOSE cur_appsinit;
fnd_global.apps_initialize(ln_user_id,
ln_resp_id,
ln_app_id);
lb_chk := fnd_submit.set_request_set('BPSI', 'FNDRSSU1890');
IF lb_chk = TRUE THEN
ln_request_id := fnd_submit.submit_set(NULL, FALSE);
IF ln_request_id = 0 THEN
:exit_status := 1;
fnd_file.put_line
(fnd_file.LOG,
TO_CHAR(SYSDATE, 'hh24:mi:ss')
|| ' : ERROR : There are Errors in the execution of the Request Set. Check the Logs of the respective Concurent Programs in the Request Set.');
END IF;
END IF;
EXCEPTION
WHEN ex_errors THEN
:exit_status := 1;
END;
EXIT :exit_status
This is script i am calling from another concurrent request.
The concurrent request set is attached to a request group RG1 which is attached to the Resp1.
The concurrent program which calls the above script is attached to request group RG2 and which is assigned to Resp2.
** Note - The apps initialize is also done to Resp1 (responsibility)
I did all the above from system administrator responsibility.
For execution of the above script... i changed my responsibility to Resp2 and tried to execute the concurrent program (which calls the script submitting the concurrent request set)....
The concurrent program is completing with Completed Status....but the concurrent request set is being submitted. And the reason being the the fnd_submit.set_request_set is returning false and so not going ahead.
To verfiy the above i checked the following query in toad....
SELECT rs.application_id,
rs.request_set_id,
allow_constraints_flag,
rs.print_together_flag,
rs.owner,
rs.printer,
rs.print_style,
cp.concurrent_program_name,
rs.user_request_set_name
FROM fnd_request_sets_vl rs,
fnd_application a,
fnd_concurrent_programs cp
WHERE rs.application_id = a.application_id
AND rs.request_set_name = 'FNDRSSUB1890'
AND a.application_short_name = UPPER('BPSI')
AND rs.start_date_active <= SYSDATE
AND NVL(rs.end_date_active, SYSDATE) >= SYSDATE
AND rs.concurrent_program_id = cp.concurrent_program_id(+)
AND rs.application_id = cp.application_id(+)
the above query is returning one row... it means the concurrent request set exists... but not able to execute it....
Any help is highly appreciated....
Kiran

Hi,
Scenario...
I have a concurrent request set that is called as follows from a plsql script....
** Note : I removed the cursor definition for simplicity.
VARIABLE exit_status number
DECLARE
ln_request_id NUMBER := 0;
ln_user_id apps.fnd_user.user_id%TYPE;
ln_resp_id apps.fnd_responsibility.responsibility_id%TYPE;
ln_app_id apps.fnd_responsibility.application_id%TYPE;
ln_resource_id apps.jtf_rs_resources_vl.resource_id%TYPE;
ex_errors EXCEPTION;
lb_chk BOOLEAN;
BEGIN
:exit_status := 0;
OPEN cur_appsinit;
FETCH cur_appsinit
INTO ln_user_id,
-- ln_resource_id,
ln_resp_id,
ln_app_id;
CLOSE cur_appsinit;
fnd_global.apps_initialize(ln_user_id,
ln_resp_id,
ln_app_id);
lb_chk := fnd_submit.set_request_set('BPSI', 'FNDRSSU1890');
IF lb_chk = TRUE THEN
ln_request_id := fnd_submit.submit_set(NULL, FALSE);
IF ln_request_id = 0 THEN
:exit_status := 1;
fnd_file.put_line
(fnd_file.LOG,
TO_CHAR(SYSDATE, 'hh24:mi:ss')
|| ' : ERROR : There are Errors in the execution of the Request Set. Check the Logs of the respective Concurent Programs in the Request Set.');
END IF;
END IF;
EXCEPTION
WHEN ex_errors THEN
:exit_status := 1;
END;
EXIT :exit_status
This is script i am calling from another concurrent request.
The concurrent request set is attached to a request group RG1 which is attached to the Resp1.
The concurrent program which calls the above script is attached to request group RG2 and which is assigned to Resp2.
** Note - The apps initialize is also done to Resp1 (responsibility)
I did all the above from system administrator responsibility.
For execution of the above script... i changed my responsibility to Resp2 and tried to execute the concurrent program (which calls the script submitting the concurrent request set)....
The concurrent program is completing with Completed Status....but the concurrent request set is being submitted. And the reason being the the fnd_submit.set_request_set is returning false and so not going ahead.
To verfiy the above i checked the following query in toad....
SELECT rs.application_id,
rs.request_set_id,
allow_constraints_flag,
rs.print_together_flag,
rs.owner,
rs.printer,
rs.print_style,
cp.concurrent_program_name,
rs.user_request_set_name
FROM fnd_request_sets_vl rs,
fnd_application a,
fnd_concurrent_programs cp
WHERE rs.application_id = a.application_id
AND rs.request_set_name = 'FNDRSSUB1890'
AND a.application_short_name = UPPER('BPSI')
AND rs.start_date_active <= SYSDATE
AND NVL(rs.end_date_active, SYSDATE) >= SYSDATE
AND rs.concurrent_program_id = cp.concurrent_program_id(+)
AND rs.application_id = cp.application_id(+)
the above query is returning one row... it means the concurrent request set exists... but not able to execute it....
Any help is highly appreciated....
Kiran

Similar Messages

  • How to submit a Concurrent Request Set from OAF

    All,
    I understand we can submit a concurrent program from OAF using
    oracle.apps.fnd.cp.request.ConcurrentRequest.submitRequest( String pApplication,
                        String pProgram,
                        String pDescription,
                        String pStartTime,
                        boolean pSubRequest,
                        Vector pArgArray) method,
    But the class ConcurrentRequest don't have any method to submit a concurrent request set. The workaround is directly call the pl/sql package FND_SUBMIT.submit_program.
    Is there any other oracle.apps.fnd.cp.request.* class have method to call a concurrent request set?
    Thanks.
    With Regards,
    Kali.
    OSSI.

    Sorry for my typo.....! I meant use the pl/sql way, there is no standard solution for this in OAF.
    didn't get what you mean by,
    You mean i need to use FND_SUBMIT.submit_program? or you want me to check in OAF itself?
    >>Kali, You can use [b]fnd_submit.submit_set , this is explained "Application Developer User Guide"!
    Even i tried to use that PL/SQL FND_SUBMIT.submit_program, that is returning BOOLEAN so i am facing the problem which you have discussed in the forum
    >>Use the work around i suggested in the thread u mentioned in ur reply.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Oracle 11i - Concurrent Request Set Details

    Hi,
    I would like to frame a query that extracts the concurrent request sets and the associated child requests. I am not sure of the data mapping.Can somebody help me with the query.
    Regards,
    Radhika.

    I would like to frame a query that extracts the concurrent request sets and the associated child requests. I am not sure of the data mapping.Can somebody help me with the query. https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_REQUEST_SETS&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to Submit a Concurrent Request Set Using a Self-Service Page

    Hi all,
    I would like to know how to Run/Submit a Concurrent Request Set Using a Self-Service Page
    Thanks.
    Bench

    Hi all,
    I would like to know how to Run/Submit a Concurrent Request Set Using a Self-Service Page
    Thanks.
    Bench

  • Problem with a data set: DIAdem crashes

    Hi,
    I've got a problem with a data set. When I want to zoom in DIAdem-View, DIAdem crashes with the following message (translated from German ;-):
    error type: FLOAT INEXACT RESULT or FLOAT INVALID OPERATION or FLOAT STACK CHECK
    error address: 00016CB8
    module name: gfsview.DLL
    I've got some similar data set not showing such problems. Further on I scanned the data a bit, but in the 59000 points I didn't see anything special. I did try to delete "NOVALUE"s as well, but after that there still exist "NOVALUE"s.
    Does anyone have an idea what to look for?
    Thanks,
    Carsten

    Carsten,
    Could you please upload you Citadel database to the following FTP site:
    ftp.ni.com/incoming
    If you want to compress (ZIP) and/or put a password on the data, that's fine. Please send me a private email at [email protected] (with the file name and password if you put one on the file) once you have uploaded the file and I will check it out.
    Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Unable to view Behance - Oops! There was a problem with your request

    Hi,
    Today, I am unable to view Behance and I'm unable to log in as well.
    Received the error message - Oops! There was a problem with your request.
    Please refresh the page to try again.
    Contact support if the problem persists.
    Does anyone has the same problem, Anyone knows how to resolve this?

    Hi - we can definitely help! To have a private convo where we can give you your accont info, please write us a ticket here and someone will get back to you ASAP:
    Behance Support & Forum : Submit a request for assistance

  • How to make the concurrent request set run only once

    Hi Team,
    Ijust have a requirement.
    At a time only single concurrent request set should be running and the remaining submitted request sets should be in pending status.
    I mean to say : i have a concurrent request set : "Invoice Req Set"
    If user submits the request set multiple times: Invoice Req Set once
    the second one should not be running until the first request set : "Invoice Req Set" completes.
    Any suggestions ??
    -Sridhar

    Hi;
    Please check below which could be helpful for your issue:
    how to prevent multiple request of one conc program
    Regard
    Helios

  • Hi i am having problems with a crackling speaker on calls. Its started with every once a hour or so, to now being every call. Its starts crackling and then the person on the other side cannot hear me. I run iPhone 4 with iOS 5 an this happend after update

    Hi i am having problems with a crackling speaker on calls. Its started with every once a hour or so, to now being every call. Its starts crackling and then the person on the other side cannot hear me. I run iPhone 4 with iOS 5 an this happend after update to ios 5... What should i do. I have now resulted in using another phone as i cannot operate like this...

    Hi i am also having problems with a crackling speaker on calls every few calls. Its starts crackling and then the person on the other side cannot hear me. I run iPhone 4 with iOS 5 an this happend after update to ios 5... I will watch to see what advice you get.

  • Is it possible to bypass stages defined in Concurrent Request Set

    Hi,
    I have a concurrent request stages where there are multiple stages defined(corresponds same concurrent program with different parameter values) and this request is called from backend.
    The way the stages are presently defined is on success,error & warning it will go to the next stage (e.g stage1 -> stage 2 -> stage3).
    Now I have a requirement where based upon some condition, I would receive parameter values for stages. E.g I would received parameter for stage 1 to run and stage 3 to run and no parameter for stage2. In this case what I want is in the request set, stage 1 program will run and then stage 3 program will run bypassing the stage2 program as no parameter value received for stage 2 program.
    Will there be any change required in the way the the link stages are defined or if there is any other way to accomplish the same.
    Ultimate aim is that all the required stages(1,2,3......and so on w) will be defined but based upon the parameter value availability, corresponding stages will run like 1 then 3 then 5 and request set should complete.
    I am assuming that its possible so I a trying for some workaround within PLSQL itself. Appreciate if any one can throw some light on this if clearing only the link stages could be a solution.
    Regards,
    Ad

    What version of the DB are you running?
    Here is a PL/SQL example: http://www.oracle-base.com/articles/misc/xml-over-http.php
    You could also do it in Java: http://www.oracle.com/technetwork/developer-tools/jdev/dbcalloutws-howto-084195.html
    HTH,
    --Johnnie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • IPhone 4s 6.1.3 problems with 3g,In and Outgoing Calls

    Hi Everybody!
    I got a factory unlocked (originally was Vodafon locked) iPhone 4s with firmware 6.1.3.When I insert my sim (Hungarian Telenor) when only EDGE is on it founds the signal and seems like everything is working.After a few hours or sometimes even a day passes by a phone stays on full signal with Carrier logo and Edge on, but my friends reporting that they cant call me(like im offline) and i cant make calls either.The interresting stuff is that the Edge connection is fully working during that im offline for my friends via Calls and i can send and recieve imessages and viber messages.
    When i switch 3g on it disconnects from service drops the EDGE and never finds the way back and stays 'searching' or 'no service' at all..
    I thought that its my Carrier's fault so i went to spoke with them and tried 5different micro Sims( cause i wrote that 4s-s are sensitive to SIM card types).. this thing not worked either,
    Then i tried the phone with a T-mobile SIM card.. it does the same..connects to the services,but with 3g switched on not finding service..so totally like with my sim.
    Here Comes the bumm... i Tried the phone with vodafone sim and everything works.. simple connectivity to 3g with full internet usage,can make and recieve calls...I spoked with all of the Carriers and also Apple and no body can give me nothing..the phone is off varranty so changed to a new one isnt an option..
    Anybody? Something? im beginning to give up .. please help if you can..Thanks!!
    ps.:i restored over 20times,reset network settings,switch off and on automatic setting time.. every little possible things that people wrote on forums before..

    neverstop wrote:
    1. Settings > General > About - Carrier sais Carrier 14.0 when i restore and startup with my Telenor  sim.. ..
    1. In order
    2. ...... everyone is pointing on the other and i cant do anything about it..just the whole 3g/call failed stuff is bothering me...
    2. It appears configuration issue. I use three iPhones (in my family) on four unsupported carriers. Never had any problem except on one. Outgoing calles to one particular party failed. Set right by Carrier.
    3. Is there something like the Unlock process was not fully succesfull...
    3. Never heard. It is digital : Yes or No. In the instant case, unlock is successful.
    Download firmware afresh via iTunes or from here iPhone4,1_6.1.3_10B329_Restore.ipsw
    and save. Insert Telenor SIM in the iPhone. Backup. Option+Restore (Mac) Shift+Restore (PC) pointing to saved firmware. Reject Carrier updates, if any offered by iTunes. Setup as New.
    Observe.

  • Problem with a field set to refresh after insert at Row level

    hello all,
    i have a problem with a field (a serial) which is set by a db trigger at insertion. The field "refresh after insert" is properly set in the Entity and everything is refreshed correctly when i insert data via an adf form in a jspx but when i want to insert programmatically nothing is refreshed. I insert data this way :
    ViewObject insertVO = findViewObject("myView");
    Row newRow = insertVO.createRow();
    newRow.setAttribute("mandatoryAttribute1",value1);
    newRow.setAttribute("mandatoryAttribute2",value2);
    <more init here but not the serial since it will be set by the DB trigger>
    insertVO.insertRow(newRow);
    but when i want to get back the value with "newRow().getAttribute("TheSerial");" i always get a null back and not the value set by the db trigger.
    One way to get the serial is to commit after each insert but i don't want to commit between inserts.
    i've tried to unset the refresh after insert and override the createDef() method to setUseReturningClause(false) as it's is advised in chapter 26.5 of the ADF 4GL dev. guide but in this case i have an exception JBO-29000: JBO-26041.
    How can i get the value back properly ?
    thanks
    -regards

    The data for the newly created row doesn't get inserted into the database until the commit is executed, so the insert trigger isn't called.
    If you need to get the value without committing, then you should implement the trigger programmatically and drop the trigger from the database. The code below shows how you could do this.
    ViewObject insertVO = findViewObject("myView");
    Row newRow = insertVO.createRow();
    SequenceImpl seq = new SequenceImpl("MY_SEQ", insertVO.getDBTransaction());
    Long next = (Long)seq.getData();
    newRow.setAttribute("primaryAttribute", new Number(next));
    ...You will need to replace MY_SEQ and primaryAttribute with the correct values for your example, but this should acheive what you want.

  • Problems with deep request structure in web service

    I'm having problems when trying to consume an Enterprise Service-like web service in my Web Dynpro application. The web service FindXByElements has a request-structure as follows:
    XByElementsQuery
    -ProcessingConditions
    -QueryHitsMaximumNumberValue
    -QueryHitsUnlimitedIndicator
    -XSelectionByElements
    -ID
    -Year
    Regarding the structures on level two, the structure ProcessingConditions are of the global data type "WITHOUT_LASTRETURNED_QueryProcessingConditions" and are therefore typed. The structure XSelectionByElements on the other hand are just a "level" in the request structure and are therefore not typed. Both structures have occurrence 1 so they have to be filled with input data.
    The code in wdDoInit in the Component Controller looks like this:
    QueryXInModel model = new QueryXInModel();
    wdContext.nodeRequest_FindXByElements().bind(wdContext.createRequest_FindXByElementsElement(new Request_FindXByElements(model)));
    wdContext.currentRequest_FindXByElementsElement().modelObject().setXByElementsQuery(new XByElementsQuery_Sync(model));
    //Processing structure
    wdContext.currentXByElementsQueryElement().modelObject().setProcessingConditions(new WITHOUT_LASTRETURNED_QueryProcessingConditions(model));
    //Selection structure
    wdContext.currentXByElementsQueryElement().modelObject().setXSelectionByElements(new XSelectionByElements(model));
    The last row generates the following exception:
    java.lang.IllegalArgumentException: Cannot perform write operation 'setRelatedModelObject' on target role: Class 'XSelectionByElements' is not compatible to class '$002fWsdlDefinitions$002fWsdlTypes$002fXsdSchema$002fXsdComplexType$005b3$005d$002fXsdSequence$002fXsdElement$005b2$005d$002fXsdComplexType' of target role 'XSelectionByElements' in model class 'XByElementsQuery_Sync'
    There seems to be a problem to bind a non-typed structure element to a context node since the processing structure is working fine but the selection structure are not.
    What am I doing wrong, anyone got any clues?
    /Oskar

    Hi
    QueryXInModel model = new QueryXInModel();
    wdContext.nodeRequest_FindXByElements().bind(wdContext.createRequest_FindXByElementsElement(new Request_FindXByElements(model)));
    wdContext.currentRequest_FindXByElementsElement().modelObject().setXByElementsQuery(new XByElementsQuery_Sync(model));
    //Processing structure
    wdContext.currentXByElementsQueryElement().modelObject().setProcessingConditions(new WITHOUT_LASTRETURNED_QueryProcessingConditions(model));
    //Selection structure
    wdContext.currentXByElementsQueryElement().modelObject().setXSelectionByElements(new XSelectionByElements(model));
    XByElementsQuery
    ProcessingConditions
    QueryHitsMaximumNumberValue
    QueryHitsUnlimitedIndicator
    XSelectionByElements
    ID
    Year
    as
              QueryXInModel model = new QueryXInModel();
               Request_FindXByElement  request = new Requst_FindXByElement();
                ProcessCondition   processCond  = new  ProcessCondition(model);
                QueryHitsMaximumNumberValue  qhMaxNumValues = QueryHitsMaximumNumberValue(model);
          QueryHitsUnlimitedIndicator  qhUnLimind = new QueryHitsUnlimitedIndicator(model);
            XSelectionByElements  selecByEle = new XSelectionByElements(model);
                     processCond.set....();                         
                     qhMaxNumValues .set...();
               and so on
                    request.set....();
    wdcontext.nodeReqestFindX..bind(request);
      in the above during the values you will automatically get the set values .

  • Problem with multiple requests

    I have a problem with the users submitting multiple requests simultaneously.
    Let me put it this way:
    1. User is on a tabbed panel with clear and search buttons.
    2. User clicks on 'clear' button from any tab (request one). On successful completion, it should reset and load tab one.
    3. Before the tab one loads, user again clicks (request two) on a different tab two. (Tabbed panel - server side tab switch)
    4. As a result, tab two loads. Now when I click on tab one, the default values are not getting set.
    Now when I look at my phase listener logs:
    Processing new  Request!
    St - RESTORE_VIEW 1
    En - RESTORE_VIEW 1
    St - APPLY_REQUEST_VALUES 2
    En - APPLY_REQUEST_VALUES 2
    St - PROCESS_VALIDATIONS 3
    En - PROCESS_VALIDATIONS 3
    St - UPDATE_MODEL_VALUES 4
    En - UPDATE_MODEL_VALUES 4
    St - INVOKE_APPLICATION 5
    En - INVOKE_APPLICATION 5
    St - RENDER_RESPONSE 6
    Processing new  Request!
    St - RESTORE_VIEW 1
    En - RENDER_RESPONSE 6
    Done with Request!
    En - RESTORE_VIEW 1
    St - APPLY_REQUEST_VALUES 2
    En - APPLY_REQUEST_VALUES 2
    St - PROCESS_VALIDATIONS 3
    En - PROCESS_VALIDATIONS 3
    St - UPDATE_MODEL_VALUES 4
    En - UPDATE_MODEL_VALUES 4
    St - INVOKE_APPLICATION 5
    En - INVOKE_APPLICATION 5
    St - RENDER_RESPONSE 6
    En - RENDER_RESPONSE 6
    Done with Request!Looking above its very clear that request two begins before the completion of render response phase of request one. I guess thats where the problem lies and users are not really interested in solution provided by me to use javascript and freeze the page until request one completes.
    I would like to know if it is possible to hold a second request in the phase listener until the first request gets completed. Any help would be highly appreciated.
    Thanks.

    Thus, you want to keep user/session-specific requests in a synchronized queue? You could put a lock in the HttpSession on start of request and remove it on end of request and synchronize the requests on that lock. You can use a Filter for this which is mapped on FacesServlet.
    It's all theory and I've never done it, so I can't give a "safe" code example out of head. But googling using the terms "synchronized, lock, httpsession" gives lot of the same ideas, some with examples, under each this article: [http://www.ibm.com/developerworks/library/j-jtp09238.html].

  • .MSG files. Problem with getting requested values from crawled properites

    Hi
    I have a lot of msg files on my file server. I use SharePoint Enterprise Serach engine to crawl all these MSGs.
    I would like to get extra managed properties out of these files. I am most interested in getting Mail:5(text) / Mail:12(Date and Time) / Mail:53(Date and Time) from MAIL category in Managed Properties.
    This thread is very similar to one already posted by SpinnerUp:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/82d69df0-5cb2-4e51-a485-34209e111f4b/problem-with-crawling-msg-files-doesnt-seem-to-return-requested-values-from-crawled-property
    Please be aware that I do not use Public Folders. These MSGs are exproted from Outlook and are stored on File Server not Exchange.
    I tried to link Crawled Properties to new property however I cannot get any results back.
    Thank you for you help.
    Regards, Marcin (Please mark as helpful or answered if it helps)

    Thank you for your replay.
    However I am not keen to write custom connector at this stage.
    Is it possible to simply get "Subject", "Sent", "Received" info from msg file and then map it to managed properties.
    Does SharePoint create any crawled properties which contain information about let's say "Subject" which then can be used to create managed properties?
    I tried playing with "MAIL" properties however I cannot get them to work. I guess this is because the file is a msg file rather than mail which is stored in Exchange Public Folder.
    Regards, Marcin (Please mark as helpful or answered if it helps)

  • Problem with the fullscreen setting in Mountain lion

    Hi, I am experiencing a problem with the full screen setting of my Mountain Lion. The trouble is that when I run certain apps such as Zotero or Scrivener and I open, say, the preferences window, this is automatically set in fullscreen, although it should not be. I have already got in contact with the Scrivener team and they suggested that was a problem related to one of the apps I use to manage my windows, i.e. RIghtzoom and Window Tidy. Following up this suggestion I uninstalled and restarted my laptop, but nothing has changed. I wonder if anyone has already experienced this problem or if you have any suggestions. Thanks.
    Alfredo

    Here a short video which shows the problem I am talking about
    https://www.youtube.com/watch?v=_JGEis-vvsc
    Any suggestion?

Maybe you are looking for

  • IMac is not bringing up websites/not air printing

    I'll start by saying I've turned everything off and on and restarted the router, printer, computer etc... Still having issues. With that being said here's what's going on: I have a 2009 iMac and I cannot connect to my wireless printer anymore and can

  • Help with read only text field

    trying to refine a KW form I don't want user to enter value in a box so I made it read only.  $<input name="proptax" type="text" size="10" readonly="true"> Validation says: "true" is not valid value for the "readonly" attribute in any of the currentl

  • How can I delete a junk folder I accidentally created in an IMAP email  account

    I need to know if anyone knows how to delete a junk folder. I created the folder by accident in a IMAP email account.  It's empty and I don't need it .  I don't want to delete the account and re- install it. Any ideas?

  • Bookmarks do not appear in the Bookmarks Toolbar

    My Bookmarks toolbar is blank - there are sites in the folder.... I've just upgraded to Firefox 7. How can I get these bookmarks to show in the tool bar? (They do show when the sidebar is open, but I want them at the top as I had them.)

  • No audit reports

    I have some issues with a new installation of reporting 5 . The primary server is zcm11SP3.(also installed zrs-resources.zip) I use SLES11SP2 for the reporting server also tryed it on SLES11SP3 but no differents.(No errors during installation) Still