Need to hide an Item at page load

Hi,
Can anyone help me to hide an item when the page is loaded. I want to display the Item when i click the GO button.
Thanks in Advance.
Edited by: [email protected] on Apr 15, 2009 10:25 PM

Hi Pratap,
processRequest is working correctly.
In processFormRequest
oambean.setRendered(true); is not working.
In the page i get developer mode exception Error.
Error - (This developer mode error is thrown instead of being registered due to the lack of the page context object.) The OA passivation framework coding standard has been violated. Web bean properties cannot be modified in the controller processFormData or processFormRequest method. Web bean properties should be modified in the processRequest method only. An attempt to modify a web bean has been made in the following call stack: java.lang.Throwable at oracle.apps.fnd.framework.OACommonUtils.getCallStack(OACommonUtils.java:785) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setAttributeValue(OAWebBeanHelper.java:1707) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setAttributeValue(OAWebBeanHelper.java:1725) at oracle.apps.fnd.framework.webui.OAWebBeanFormElementHelper.setAttributeValue(OAWebBeanFormElementHelper.java:1983) at oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean.setAttributeValue(OAMessageTextInputBean.java:287) at oracle.cabo.ui.BaseMutableUINode.setRendered(Unknown Source) at oracle.cabo.ui.beans.BaseWebBean.setRendered(Unknown Source) at oracle.apps.ak.search.webui.SearchCO.processFormRequest(SearchCO.java:54) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:734) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:943) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1546) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:929) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:895) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:751) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:373) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:929) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:895) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:751) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:352) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:340) at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2392) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1512) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384) at OA.jspService(OA.jsp:40) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534)

Similar Messages

  • How to assign concatenated output to an item on page load

    Hi,
    I have a table that reads something like this
    City Route
    NewYork 2
    NewYork 4
    NewYork 5
    London A
    London B
    Paris X1
    I want to assign Routes (concatenated) to an item on page load... as an example for NewYork it should read like this
    P2_ROUTE = 2, 4, 5
    I am looking to do the above using query, something like this
    select (concatenated route)
    from Table_A
    where
    City = :P2_City
    any suggestions how to concatenate variables.?

    tparvaiz wrote:
    I am looking to do the above using query, something like this
    select (concatenated route)
    from Table_A
    where
    City = :P2_City
    any suggestions how to concatenate variables.?Yes. This is known as string aggregation, and there are many ways to do it. For example:
      Oracle 11.2; list length <= 4000 bytes
    SQL> select
      2      l.city
      3    , listagg(d.department_id, ', ')
      4        within group (
      5          order by d.department_id) departments
      6  from
      7      locations l
      8        join departments d
      9          on l.location_id = d.location_id
    10  group by
    11*      l.city;
    CITY                      DEPARTMENTS
    Bern                      240
    Bombay                      230
    Geneva                      90, 100, 110, 120
    Hiroshima                 170
    London                      40, 260
    Munich                      70
    Oxford                      80
    Seattle                  10, 30, 130, 140, 180, 190, 210, 250
    South Brunswick             150, 160
    South San Francisco            60
    Southlake                 50
    Stretford                 270
    Tokyo                      220
    Toronto                  20
    Utrecht                  200
    15 rows selected.
      Previous versions or 11.2 list length > 4000 bytes
    SQL> select
      2      l.city
      3    , rtrim(
      4          xmlserialize(
      5           content
      6           xmlagg(
      7               xmlparse(content d.department_id || ', ')
      8               order by d.department_id))
      9        , ', ') departments
    10  from
    11      locations l
    12        join departments d
    13          on l.location_id = d.location_id
    14  group by
    15*      l.city;
    CITY                      DEPARTMENTS
    Bern                      240
    Bombay                      230
    Geneva                      90, 100, 110, 120
    Hiroshima                 170
    London                      40, 260
    Munich                      70
    Oxford                      80
    Seattle                  10, 30, 130, 140, 180, 190, 210, 250
    South Brunswick             150, 160
    South San Francisco            60
    Southlake                 50
    Stretford                 270
    Tokyo                      220
    Toronto                  20
    Utrecht                  200
    15 rows selected.See Re: 4. How do I convert rows to columns? and here for more.

  • How to fix the time to refresh page items on Page load

    Hi all,
    When my pages load, some page items hidden are shown and when page load they are hidden again. Is there any way to keep it hidden without this time to refresh?
    Thanks
    Bsalvador

    bsalvador wrote:
    fac586,
    I tryed with:
    #P32_DATA_FINAL, label[for="#P32_DATA_FINAL"] {  
      display: none;  
    And only Page item was hidden. Label is still showing...could you help me?
    Thanks
    bsalvador
    Sorry, the "#" shouldn't appear in the attribute selector. There's probably a theme CSS rule with a higher specificity on the labels, so add an !important directive to the rule:
    #P32_DATA_FINAL, label[for="P32_DATA_FINAL"] {  
      display: none !important;  
    Always state which theme and template(s) you are using in a question about visual formatting or layout. Theme HTML/CSS is not always—historically never—consistent, so we need to know this information in order to determine which selectors to use.

  • Need to update a record on page load. How? (ASP/VBScript)

    The standard Update Record behavior requires a form on the page, plus a recordset to identify the value to be updated. In my scenario, the value for the record to be updated is already in the URL as the ID. I just don't know how to write it myself and Dreamweaver won't do this.
    The page I want to do this on is a record detail page, so there is already a record ID already present in the querystring. The record is new until a user views it, and what I need is something that just writes a simple value to one field in the table for the record being viewed. This is it in a nutshell:
    Using the value from the ID in the URL querystring, update the "viewed" field in a specific table with the value of "y".
    This would be the first operation as the page loads and then the page would load and show the data that it already does.
    I'd be happy with raw code is someone is generous enough to provide that, or perhaps some instructional help on reverse engineering the standard update record code generated by Dreamweaver. Or, if you know of any extensions designed to do this - I'd be interested in that too!
    My app I'm working on is in ASP/vbscript.
    Subject line edited by moderator to indicate server model

    Good point! I wasn't thinking about how that would make the app vulnerable to sql injection.
    The function I want to perform is similar to how an email changes from unread to read when you view it. I simple want the records being viewed to take on the status of being read or "viewed". Perhaps I'm going about this in the wrong way, but I've been planning to use a database field as the indicator of whether a record has a viewed status or not. Null value is new, and a value of "y" (yes) meaning the value is viewed/read.
    If you have a better recommendation, I'm all ears.

  • Need to rotate a swf on page load???

    Not sure if this is the place to ask this but I have a swf file embeded in a web page design.
    Now here’s the issue, the client wants to add more photos to it making it even larger.
    I would prefer not to make it larger but create 2 or 3 swf files that would randomly load when the webpage is refreshed or reloaded.
    Is there a way to code a random swf loading in HTML?
    Would I use javascript? I googled and found nothing on the subject.
    Thank you

    Would you recommend php or javascript to achieve my goal. 
    I think that depends on your site and your comfort level with code.  If you're building  .php pages, use PHP scripts.  If your building .htm or .html pages, JavaScript might be a better choice.
    Sadly, my Twitter account is not exactly a hot bed of activity.  I'll try to make an effort to post some things of interest once in a while.  :-)
    Cheers,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • RD Connection Broker, do I need any third party items to do load balancing?

    RD Connection Broker does load balancing and session reconnect.  Are there limitations to its load balancing features? (i.e. reasons to go with a third party solution) 
    Also is it a stand a lone service do we need specific network/services to make it work?

    Hi,
    Remote Desktop Connection Broker enables you to evenly distribute the session load among RD Session Host servers in a load-balanced RD Session Host server farm.
    More information:
    Installing and Configuring RD Connection Broker High Availability in Windows Server 2012
    http://social.technet.microsoft.com/wiki/contents/articles/10391.installing-and-configuring-rd-connection-broker-high-availability-in-windows-server-2012.aspx
    Overview of Remote Desktop Connection Broker (RD Connection Broker)
    http://technet.microsoft.com/en-us/library/cc772245.aspx
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

  • How to hide business process stage on page load in crm 2013

    Please tell me how to hide process stage on page load in crm 2013.
    for example: Develop, Propose,Quotation... these are business process stages and I have a custom field named "type"
    If type value =1 then hide Propose stage

    Hello,
    That is not possible. What I would suggest is to create several processes for same entity and switch between them using plugin. Sample code for it -
    https://deepakexploring.wordpress.com/tag/updating-process-id-in-crm-2013/
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

  • Hide new item button in ribbon jquery

    hello,
    I need to hide new item button from list page through jquery.
    thanks.
    regards
    krishnakumar

    Another option is to hide them using CSS.
    SharePoint 2010 Hide Ribbon button using CSS
    Amit

  • Update record on page load

    I need to update a record on page load. Basically, I need to
    keep track of new content for users, so if they've viewed it, it
    changes the viewed column from 0 to 1. any suggestions?

    I guess there is no requirement for a stored procedure here,
    though, is
    there? You could just have code on the page that executes
    before the <html>
    tag to update that record, no?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Dooza" <[email protected]> wrote in message
    news:g0rgk3$nm5$[email protected]..
    > jsteinmann wrote:
    >> I need to update a record on page load. Basically, I
    need to keep track
    >> of new content for users, so if they've viewed it,
    it changes the viewed
    >> column from 0 to 1. any suggestions?
    >
    > Create a stored procedure, then call it using a
    Recordset, passing the
    > user id and content id.
    >
    > Steve

  • EM Composite Pages Loading Slow

    After months of using the EM with reasonable response times, our EM has just started to load extremely slow when you click on Composite Applications to view their details.
    If I click on anything under Application Deployments, or Right-Click on soa-infra and select menu items, those pages load quickly. It seems to be only related to Composite Applications under Farm_base_domain -> SOA -> soa-infra.
    In addition, the Console seems to be working just fine. Our MDS tablespaces are not full and our Oracle/Middleware disk is not full. We are using 11.1.1.1.0
    I do not see anything out of the ordinary in the log files.
    Does anybody have any ideas?
    Thanks in advance,
    Jeremy

    Hi Jeremy,
    We do have same problem as you have, we do uses the SOA 11g 11.1.1.2.0 from Dec 2009 (we moved from 10g to 11g).
    By any means do you have resolution for these probelms?.
    Otherwise; can anybody help us on the below?
    We are having the belows:
    1. SOA Server 11g startup takes around 15 to 20 minutes.
    2. Page loading of em console takes around 5 to 10 minites.
    3. Accessing Deployments section in WEB Logic server console takes aroung 5 to 10 minutes to show the list of components under it.
    Please provide us with some tips to overcome these problems.
    Thanks and Regards
    Arunachalam.C
    IT Dept.
    Emaar Properties
    ph. 00971507882908
    email: [email protected]
    Dubai.
    Edited by: arungoin on May 8, 2010 7:44 PM

  • APEX dynamic action - How to hide an item after the page loads

    Hello
    I have a form  with  item  Type,  lesson and page.   I want to create a  dynamic action like "on page load" if Type = x then don't show lesson and page items. .
    How do I say if Type=x then  don't show lesson and page. otherwise show them.
    Please note Dynamic action,  Event=Page load
    Thanks

    create dynamic action like
    Event:Change
    Selection Type:Item
    Item:Type
    Condition:Equal To
    value:X
    Select Action:Hide
    Select Items to hide
    also create opposite false action
    and click on page checkbox below action to yes
    Hope this may helps
    pars.

  • Need to Show/hide text on later page dependent on Button

    Ok, I am VERY new to Acrobat forms.  I am trying to use Acrobat X to build a large custom survey PDF form to be used on a variety of Tablet platforms (PC/Android/Mac) so I am trying to limit any "special" coding that different platforms might not support.
    I have scanned the discussion boards and found lots of close examples, but nothing quite fits.
    Situation is like this.  I have a LOTS of Radio Boxes, and Pull downs (16 pages worth)
    Condition Red List
      [ ] Condition One
      [ ] Condition two
      [ ] condition three
    Condition Green List
    [ ] Condition One
    [ ] Condition two
    [ ] condition three
    Some are exclusive (only one valid choice) others support multiples ( condition one AND three)
    Easy so far....
    SEVERAL (16) PAGES LATER there is a SUMMARY page where I want to display (or not) the descriptive Text associated with SOME of the earlier choices.
    Pretty Summary Header, date project numbert etc....
    Disclaimer text Bla Bla Bla
    The follwoing is a SUMMARY of the major issues from the previous pages
    White summary : This is the Text associated with White condition two. this could be a line, a list of things, or a paragraph
    Red    summary : This is the Text associated with Red condition three. this could be a line, a list of things, or a paragraph
    Green summary : This is the Text associated with Green condition two. this could be a line, a list of things, or a paragraph
    Green summary : This is the Text associated with Green condition three. this could be a line, a list of things, or a paragraph
    More disclaimer text
    I understand (sortof) that I can have a Variable "red_list_1" that can be true/false and that will affect a line/field back on the summary page....
    The following is a cut-n-paste ROUGH of what I think I need... it hasn't been tested (yet) and I am sure there are typos.  There are LOTS of examples of scripts that make things appear/dissapear (like the following) but I am trying to find a SIMPLE one that will the best when there are lots of them....
    var f = this.getField("Red_list_1");
    if (f.value==(true))
        g.display = display.hidden;
    else
        g.display = display.visible;
    Ok...a couple of things I don't yet get...
    Can I combine statements/functions like I used to in (insert old language here) like
         if (this.getfield("Red_list_1").value)==true then g.display = display.hidden else g.display = display.visible
    On my Summary page, do I need lots of fields that hide/disappear, or can I build one Monster field with lots of stuff inside it?
    If I have lots of fields, how do I get them to flow nicely together?
    My form is HUGE (16 pages of questions) , so I will have lots of text that 'can' be copied to the summary page, is there an easier way to build such a thing?
    Lastly, and this is may be a question unto its self... If the "Summary" needs to go onto a 2nd (or more) page, how do I make sure it will "flow" nicely?
    Note: The nice thing is that the filled in form -IS- the final product.  I don't need to upload it, syncronize it, or otherwise send it anywhere.  I will save the filled in form for reference and edits (if needed) but the client get a copy of all 17 pages (16 + summary) and thats it.
    Oh yes...I am using Acrobat as it works, is supported, and doesn't need the cloud and will run on standalone devices with no cloud connectivity.  Once the surveyor has the form they can go anywhere with it, complete the form, even print a copy of it, without needing to upload anything.
    Thanks for the help, I have been working this for a while, and keep getting partial solutions, some that work great, but are really really messy to try to do on a large scale, others use lots of stuff supposedly not supported on the Apple Ipad reader. (everything I have tried has worked???, not sure the issue)

    Hi,
    You have a couple of different options, You can have a condition on the form and report. So you choose the condition as something like Request = Expression 1 for the form and enter CREATE. Then in the report user Report != Expression 1 and enter CREATE. That way it will show the report all the time except when CREATE is pressed.
    If you want to make it a bit more sophisticated you can use a Dynamic Action, so you have a dynamic action that has a true action of show the form and another true action of hide the report and then the opposite way round in a a false action and set the false action to fire on page load.
    Hope this helps
    Thanks
    Paul

  • How to set Lov item property (Action type,event,parameter etc) in PR when page load

    Hi gurus
    I am new to OAF, First I need to explain my scenerio.
    I need to make some field mandatory or non mandatory based on one LOV item (Pick list or message choice list).
    for this i extended the controler and apply the changes, but in this case what heppen, It will effect only when i open the list (pop list) and click on more (Available in poplist) and it will open a new form and i select value from that form. But when I open the poplist and select the value from the same list rather going to more option (it does not open new form), then there are no effect. I though the issue with refreshing when selecting value from the same list.
    To resolving this issue what i did
    1. go to page == > the same LOV
    2. Change the Client Action properties (
         Action type  = fireAction
         event          = xxevent
        submit = true.
    After doing this when i run the page from my OAF enviroement , every thing is OK. Then I transfer the Controler to Server machine and change the controller and run the same page from the server, it has the same refreshing issue, Then I thought because I did not transfer LOV such properties so this is hepening,
    Now I want to initilize such properties in Page load or what I need to do, Please advise me.
    Regards,
    Haq

    Edward,
    Thank you for the suggestion! It directly lead to my solution wherein I used CASE statements for the column in my Region SELECT such as the following:
    WHEN (:P2_GRADING_METHOD = 'CR/NC' OR scs.scs_pass_audit = 'P') AND GET_GRADE_B93 (sac.stc_final_grade, sac.stc_verified_grade) IS NULL THEN htmldb_item.select_list_from_lov (5, 'Enter Grade', 'GRADE_LOV_CRNC','onBlur="return validate_grade(this,''FW_DATE_'||ROWNUM||''')"','NO',NULL,NULL,'GRADE_'||ROWNUM)
    When the column is NULL, the Select List (LOV) contains the entry 'Enter Grade' and that is the value displayed on page load. I bypass the value 'Enter Grade' during Submit Processing where database updating occurs.
    I did not find the need to enter values for p_null_value and p_null_text since I don't believe that it would cause the 'Enter Grade' value to display on page load for null value columns but rather would enable the user to select 'Enter Grade' from the list and have a specified return value stored in htmldb_item array.
    Again, thank you for the help!

  • Disable input on page load depending on page level item

    Hi All,
    I am trying to set the disabled property of a HTML input button when an APEX page is loaded. This can be achieved easily by using getElementById and setting the *"disabled"* property in the onLoad event of the body.
    However, I need to keep the state of the button as disabled if the page is refreshed by the user or through a submit. I've stored this state in a page item, however using +$x(PAGE_ITEM_NAME)+ in the onLoad body event does not return me the value stored in the page item. Calling the same code using an onClick of a dummy button returns me the value.
    1. What is the appropriate way of getting the value of page_item during a page load?
    2. If doing it on a page load is not feasible, is there a way of setting the state of a html input button to disabled using a page process for e.g?
    Thanks heaps,
    Raihaan

    Hi Raihaan,
    Let's do this a little bit different, as this approach gets you into trouble.
    Create an application process called "GETLOCK" (Shared Components > Application Processes > Create), make sure the "point" is set to "onDemand". Paste in the following source:
    DECLARE
      result NUMBER;
    BEGIN
      FOR c IN (select count(flag) lock_status from c_locking where rownum = 1) LOOP
        result := c.lock_status;
      END LOOP;
      HTP.P(result);
    END;Next go back to your page, and go to the page definition, paste the following code in the HTML Header:
    <script type="text/javascript">
    function checkButtons(){
      ajaxRequest = new htmldb_Get(null, &APP_ID., 'APPLICATION_PROCESS=GETLOCK', 0);
      ajaxResponse = ajaxRequest.get();
      if (ajaxResponse == 1){
        $x('Button_1').disabled = true;
        $x('Button_2').disabled = false;
      }else{
        $x('Button_2').disabled = true;
        $x('Button_1').disabled = false;
    </script>Change the Button_1 and Button_2 to the button names accordingly (make sure it is the "id" attribute).
    Next paste the following javascript in the Page "Footer Text":
    <script type="text/javascript">
      disableButtons();
    </script>What you just did, is create an Application Process, that is called upon by an AJAX call in the javascript header, that is fired by the javascript in the page footer.
    I think you allready have your DML taken care of, with the submit of your buttons. Now every times the page loads, it checks which button to disable.
    Hope it helps,
    Greetings,
    Rutger

  • Unloadable items from certain servers stalling page loading and page saving

    Occasionally I'll come across pages that stall when trying to load items from certain servers. Most frequently, it is servers at '''ytimg.com''' and another that I can recall is '''simplecdn.net'''. At the bottom of the Firefox window (where it displays page items that are currently loading) it will say ''Waiting for ytimg.com'' (or something similar) and the page will just sit there for hours not fully loading because of that one item. If I try to save the page to my hard drive (use the ''Web Page, complete'' option), the saving process will stall because of those items just as the page loading did. The primary difference being that the page saving eventually times out and an error prompt appears. My question is this: When I encounter these unloadable/unsavable page items, how can I instruct Firefox to just skip them and move on with loading/saving the rest of the page items?

    The problem has existed for years now. I've experienced it with several different computers, many different Firefox versions and many different software (and extension) environments/configurations. I've gone through a lot of trouble throughout the years to make sure the problem isn't being caused by something usual on my end. I'm just now getting around to posting about it. At present, I'm using Windows XP Pro in a very lean state. No services running that aren't needed and no other programs running except for Comodo Firewall. Just before posting here, I ruled out Comodo Firewall by uninstalling it while testing. I also re-installed Firefox and ran it with no extensions in order to rule out the possibility of a problematic extension. I should mention that I posted this a couple of days ago because I was experiencing the stalling problem while trying to load & save a particular web page. The following day there was no problem with loading or saving that same web page. It seems the '''ytimg.com''' server was perhaps down one day and then back up the next. Keep in mind that the problem isn't so much that this stalling occurs but rather that I can find no option in Firefox that will allow me to skip the loading/saving of the particular items that are causing the stalling. (Attached image is a snapshot of my typical running processes while Comodo Firewall is installed and running).

Maybe you are looking for

  • Customer master data - district

    I have to change the district name. When I create customer master record, district is populating automatically. It has some syntax errors. I want to change the district name in address tab. How can I do that? Rewarded fully. Thanks.

  • Installing Mavericks to external HDD, can I have more than one Partition?

    Hi, I am about to install Mavericks on an external SSD drive, which I shall be using instead of the internal HDD. My question is do I have to format the SSD with one partition, or can I use 2 or 3 ? Thanks

  • Photoshop CS6 Save As PDF Creates Bad PDFs

    I'm on a MacPro using the latest version of Lion, 10.8.3. I'm trying to convert my .psd files (CS6 13.0.4 x64) into PDFs with embedded fonts, but if I do a Save As and select Photoshop PDF and then select High Quality Print, the resulting PDF files s

  • DATABASE  REFRESH ACTVITY FROM EP PRD TO QAS

    Hi Experts, I am planning to db refresh from PRD to QAS on Enterprise portal systems.My environment is Windows/DB2/Unicode/SR2. Is db refresh process is same for ECC and EP or diifer? please provide me information for db fresh and is quite urgnet....

  • ChaRM with SLF1  - second part

    Hi Guys, This is a followup question for the previous post with subject "ChaRM with SLF1". Since my question solved for that post, thus i decided to open another here. As mentioned on post "ChaRM with SLF1", i want fields "Sold-To-Party", "Ibase" to