Forms pl/sql in oracle adf

hi how can i re use this oracle forms pl/sql
{PROCEDURE perform_logon IS
error_message varchar2(100);
usr_id integer;
fail_cnt integer;
fail_limit integer;
pwd sms_users.pwd%type;
pwd_dt date;
pwd_dt_period integer;
sysdt date;
msg_lvl varchar2(20) := :system.message_level;
cursor usr is
  select id,pwd_change_dt,sysdate,pwd,login_failure_count
  from sms_users
  where user_id = :logon.usr_id
--  and   pwd     = sms_secure.crypt('USR',id,:logon.pwd)
BEGIN
set_clnt_details;
  if :logon.usr_id is null then
        error_message := 'User id must be specified';
     sms_code.error_message('SMS-'||to_char(0000001)||': '||error_message,'', 'E', 'SMS');
  end if;
  if :logon.pwd is null then
        error_message := 'Password must be specified';
     sms_code.error_message('SMS-'||to_char(0000002)||': '||error_message,'', 'E', 'SMS');
  end if;
  pwd_dt_period := sms_global.ref_code('SMS','PWD_PERIOD',30,1);
  fail_limit    := sms_global.ref_code('SMS','PWD_FAIL_LIMIT',3,1);
  open usr;
  fetch usr into  usr_id,pwd_dt,sysdt,pwd,fail_cnt;
  if usr%NOTFOUND then
     close usr;
             sms_alog.record(:global.clnt_user    
                     ,:global.clnt_host_name ||':'||:global.clnt_ip_addr
                     ,'Logon'
                     ,:logon.usr_id
                     ,'Not SMS User'
                     ,:logon.usr_id
                     ,'sms0000');
        error_message := 'Logon to SMS Denied';
     sms_code.error_message('SMS-'||to_char(0000003)||': '||error_message,'', 'E', 'SMS');
  end if;
  close usr;
  if fail_cnt > fail_limit then
                   sms_alog.record(:global.clnt_user    
                     ,:global.clnt_host_name ||':'||:global.clnt_ip_addr
                     ,'Logon - PWD'
                     ,:logon.usr_id ||':'||fail_cnt||':'||fail_limit
                     ,'Password retry limit exceeded'
                     ,:logon.usr_id
                     ,'sms0000');
        error_message := 'Password error limit have been exceeded contact the Administrator';
     sms_code.error_message('SMS-'||to_char(0000014)||': '||error_message,'', 'E', 'SMS');
  end if;       
  if pwd <> sms_secure.crypt('USR',usr_id,:logon.pwd) then
   sms_global.set_user_id(:logon.usr_id);
        update sms_users
          set login_failure_count = nvl(login_failure_count,0) + 1
          where id = usr_id
          :system.message_level := 15;
                      sms_alog.record(:global.clnt_user    
                     ,:global.clnt_host_name ||':'||:global.clnt_ip_addr
                     ,'Logon - PWD Error'
                     ,:logon.usr_id ||':'||:logon.pwd
                     ,'Wrong user Password'
                     ,:logon.usr_id
                     ,'sms0000');
          commit;
          :system.message_level := msg_lvl;
        error_message := 'Logon to SMS Denied';
     sms_code.error_message('SMS-'||to_char(0000003)||': '||error_message,'', 'E', 'SMS');
  else
       if fail_cnt > 0 then
        update sms_users
          set login_failure_count = 0
          where id = usr_id
                      sms_alog.record(:global.clnt_user    
                     ,:global.clnt_host_name ||':'||:global.clnt_ip_addr
                     ,'Logon - PWD Correct'
                     ,:logon.usr_id
                     ,'Reset Failed count'
                     ,:logon.usr_id
                     ,'sms0000');
          :system.message_level := 15;
          commit;
          :system.message_level := msg_lvl;
    end if;            
                      sms_alog.record(:global.clnt_user    
                     ,:global.clnt_host_name ||':'||:global.clnt_ip_addr
                     ,'Logon - PWD Correct'
                     ,:logon.usr_id
                     ,'Success'
                     ,:logon.usr_id
                     ,'sms0000');
  end if; 
  if trunc(pwd_dt + pwd_dt_period) < sysdt then
        login_pwd_title;
     hide_an_item('logon.new_pwd1',1);
     hide_an_item('logon.new_pwd2',1);
                           sms_alog.record(:global.clnt_user    
                     ,:global.clnt_host_name ||':'||:global.clnt_ip_addr
                     ,'Logon - PWD Expired'
                     ,:logon.usr_id
                     ,'Password use Expired'
                     ,:logon.usr_id
                     ,'sms0000');
        error_message := 'Password Expired. Please change password.';
     sms_code.error_message('SMS-'||to_char(0000004)||': '||error_message,'', 'E', 'SMS');
  end if;       
   sms_global.set_user_id(:logon.usr_id);
   :global.User := :logon.usr_id;
   validate_usr_profiles (:logon.usr_id);
END;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Hi.
you can call procedures or functions without problems, and thus reuse
see the doc http://docs.oracle.com/cd/E24382_01/web.1112/e16182/bcadvgen.htm#sm0297

Similar Messages

  • Oracle Forms equivalent operations in Oracle ADF

    I need to know whether there are equivalent operations in ADF corresponding to these operations in Oracle Forms
    System.Current_block
    System.Current_record
    System.Current_form
    etc...

    As a mechanism to working out how ADF works, a suggested read is the Fusion Dev Guide: http://download.oracle.com/docs/cd/E16162_01/web.1112/e16182/toc.htm
    Once you've done this, as extension the dev guide has appendixes "F - ADF Equivalents of Common Oracle Forms Triggers" & "G Performing Common Oracle Forms Tasks in Oracle ADF" for assisting Forms programmers in moving to ADF, a feature/mind map as you will.
    However as Vinod says, don't make the mistake of thinking ADF is similar to Forms in its implementation. While Forms and ADF attempt to achieve similar results (ie. applications querying data from a db and showing to the user to view or edit), they do it in totally different technologies.
    CM.

  • Oracle ADF 11g – Authentication using Custom ADF Login Form Problem

    Hi Guys,
    I am trying to Authenticate my adf application using custom Login Form.
    following this..
    http://www.fireboxtraining.com/blog/2012/02/09/oracle-adf-11g-authentication-using-custom-adf-login-form/#respond
    But my Login Page is not Loading.I think its sending request in chain.my jdev version is 11.1.1.5.Any Idea.
    Thanks,
    Raul

    Hi Frank,
    I deleted bounded code and In another Unit Test I created a simple login.jspx page and applied form based authentication but still facing same problem means something wrong in starting.
    My login.jspx page is
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" >
          <af:form id="f1" >
            <af:panelFormLayout id="pfl1">       
              <af:inputText label="USERNAME" id="it1"
                            />       
              <af:inputText label="PASSWORD" id="it2"
                              />
              <af:commandButton text="LOG IN" id="cb1" />
              <f:facet name="footer">       
              </f:facet>                 
            </af:panelFormLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    Don't know wht real problem is

  • Master Details Entry Form in Oracle ADF

    Dear Sir,
    Please tell me how we create the Master Details Entry Form in Oracle ADF.
    Thanks in Advance
    Shiv Naresh Gupta

    hi Number(922941) :)
    welcome ,
    to this forums
    thing 1: change handle(name) as string as well as meaningful.
    first go through
    https://forums.oracle.com/forums/ann.jspa?annID=56
    Next look.
    http://www.youtube.com/watch?v=OCWMzfbd96E
    http://www.fireboxtraining.com/blog/2011/01/09/oracle-adf-11g-creating-master-detail-detail-tables/
    http://www.baigzeeshan.com/2010/03/creating-master-detail-form-in-adf.html

  • Calling Forms developers - want to know more about Oracle ADF?

    I'm running a webinar for the ODTUG today 1st Nov on comparing whether development in Oracle ADF is simpler than Oracle Forms. This might be a useful insight to see how the tools compare and contrast.
    Details for the event on my blog
    https://blogs.oracle.com/grantronald/entry/is_oracle_adf_simpler_than
    regards
    Grant Ronald

    Hello!
    Here is a very good cookbook about new WebUI CRM 2007 WebClient Cookcook available!
    Best regards,
    Artur Litvinov.

  • Free Forms Modernization and Oracle ADF event running June 6th 2011

    Oracle partner iAdvise are running a full day workshop on Forms modernization and Oracle ADF in Belgium on the 6th June 2011. For those interested in JDeveloper and ADF, there is a full afternoon of ADF training, as well as a copy of the Quick Start Guide to Fusion Development JDeveloper and Oracle ADF.
    You can register here:https://www.iadvise-hosting.be/pls/apexsaas2/f?p=eev:104:4479387178760612%20
    So, if you have any investment in Oracle Forms and are looking at ADF, you need to attend!

    bump

  • Developering ADF form in query mode (Oracle forms simulation)

    Hi,
    we have a requirement for developing the existing Oracle form using Oracle ADF. The existing Oracle form displays the form in query mode by default. We can enter the search criteria in any of the text fields and then execute query to get the results. If the user does not enter any search criteria, then the form loads specific record based on default criteria into the form. Could you please help developing similar form using ADF.
    At present I created the view object with one bind variable and dragged the view as ADF form to the jspx page. Then I am launching the form in query mode (executing the find method on the view object using operation binding at the time of loading the page). After entering the query criteria in the form, If I click on a button I am executing a method in the managed bean. In the managed bean I am executing the "Execute" operation on the view and it is working fine.
    But my problem is if the user does not enter the search criteria I have to pass default parameters to the view object and return the default record in the form.
    Can you please help in resolving the issue.
    Thanks and Regards,
    S R Prasad

    Hi Frank,
    Thank you for providing information. I created the query panel with the table by dragging all the named criteria. But this is not the look we are expecting for this form. As we have to deveop ADF form with the same behavior as oracle forms, the user must be in a position to edit the data in the same field as that of query field.
    As an example, we have to design a form for Dept table. We have to display all the columns of the dept view in the form at the time of launching the form in query mode. Once the user enters any search criteria in the form, we have to perform search and display the record(s) matching the query criteria in the same columns displayed in the form. User should not see any changes in the form layout.
    If the user does not enter any data in the form, then we have to display the record(s) in the form with the specific department id(This department id can be calculated based on the data in another table).
    Can you please help us in resolving the issue.
    Thanks and Regards,
    S R Prasad

  • Convert sql form 3.0 to oracle form

    hi all
    if someone know how to convert oracle sql form 3.0 to oracle form
    best regards

    Hi Samer:
    The f45gen executable tha come with forms 4.5 can move your forms to 4.5 and then you can upgrade to forms 6i (or possibly 9i). Unfortunately I am writing this from home and I do not have Forms 4.5 her but I do have it at work. I'll sees if I can get you the correct syntax by tomorrow (if I have time). In the mean time if you have forms 4.5 you can try looking at the help for maybe f45gen or conversion, etc and you may get the syntax. Hope this helps.
    Thomas Morgan

  • Oracle forms to SQL SERVER

    Hi
    I have to connect oracle forms to sql server, as per documentation, I created a ODBC string for SQL SERVER, In connect dialog box for oracle forms I entered username, password and @ODBC_string:Database_Name in connect.
    I am not able to connect. Please help me.
    Avinash

    Perhaps your question is more suitable for the Forms forum:
    Forms
    There's APEX as well: http://www.oracle.com/technology/products/database/application_express/html/apex_for_forms.html

  • How to Call Oracle Form From Oracle ADF

    Hi All,
    Version - Oracle Jdeveloper 11.1.1.5
    In Oracle Adf - when i click on Button how to call oracle form?
    Please help....
    Thanks..
    Sk

    And there is a tool called oraFormFaces that has some advanced linking api to access forms etc. Do a google search to find info on this.

  • How execute pl/sql command from Oracle ADF Business Components

    can't find examples for how execute pl/sql command from Oracle ADF Business Components and how call pl/sql package procedure from ADF Business Components.
    insert,update,delete rows in view object instance cache is good but if i must do some complex operations while insert,update,delete rows..it's more better for me to call
    pl/sql procedure from oracle db.Am i wrong ????

    Roman,
    this should be similar to how it worked in JDeveloper 9.0.3. hava a look at <JDev903 Home>\BC4J\samples\StoredProc for a code example.
    Frank

  • Oracle forms alignment - Oracle adf page aligment.

    hi experts,
    - jdev 11.1.1.5.0 - adfbc.
    i would like to began topic on ADF jsff/jspx pages utilising component alignment time consumption . and then lesser time consumption on oracle forms alignments.
    if an Oracle Forms.report devlopers know about align top,left,right center... just select compoent one time hitting get aligned in a way good looking
    am not comparing to about different stack tech.
    my question is :
    is there any other components in jdev will reduce my design time make my smarter and faster. good looking in alignments with small amount time.
    so far,
    may be some other way. i dnt know i putting lot of time in desgining than my business logic.
    if i ready to prepare a adf page means
    design time take 5 hr a day.
    business logic & validations & bla bla sometime preety hard. but it will went less than three hours.
    am feel free to using compoents in adf. but sometmies ran into trouble(not errors) some ugly degins made by me.
    not bad i learned some tricks here(for desgins adf pages) and some blogs. eventhough some times i made some mistakes in designs.
    could any one show me way. how to do quick in desgins.?

    I recommend that you play around with the possible combinations and layout componentsyes i do.
    You can't assume that we have answers for every question, some stuff you have to find out yourself.people who are all gather here for suggesting some best way.
    i expect some kind of suggestions. that's all.
    play layout make little bit fishy?
    P.S.: What the name change again? Why not giving us your real name?Name History:
    ERP>ADF>user707.. soon i'll update my real name.
    ADF is not Forms so you can'T expect that both look the same or behave the sameyes i know.
    but i speaking about time consumption of adf is too longer. so this is my point. at the bottom of the line why time taken too longer.
    to design a page.

  • Oracle ADF/BC4J vs "other" Java/J2ee technologies. Influence a decision

    Dear All,
    Our dev group is now at the stage when we need to make a decision which way to go - "proprietary" Oracle ADF/BC4J route or open source/java/j2ee standard. In our group we have a mix of Oracle Foms, pl/sql and java developers. The problem is that our core java developers are strictly against any proprietary thing, and they do not really want to even take a look at ADF/BC4J claiming that when it comes to resolving performance and other issues we will be better off with open source, rather than depend on Oracle...
    I am coming from an Oracle centric world, and to me ADF is a natural choice, however I do not have a lot of experience in Java/J2EE to post a strong argument for or against ADF and BC4J.
    I am just wondering if there is a case study, or comprehensive cons and pros for one or the other path.
    I will greatly appreciate anyone's answer.
    Thank you,
    VO

    "When it comes resolving performance and other issues we will be better off with open source."Really? How - are they planning to go into the hibernate/spring engine and fix the problems? Or do they have a specific "support" contract with some company that will guarantee them fixes to these issues? If they do have such a contract how much does this support costs the organization?
    Where is the notion that open-source is faster coming from? Certainly not from actual benchmarks like this one: http://www.spec.org/jAppServer2004/results/
    As Frank said your management might want to look into a more complete picture than what your Java developers are looking at.
    For example, given that you have Forms based developers, how fast can they get up to speed with the open source solution vs the ADF solution?
    I think a simple benchmark of productivity when building an application with the stack they are offering vs the ADF stack would prove the point even better.
    Don't have time to run one have a look at the RAD Race results from this year where ADF based team beat up Spring based teams.
    http://www.bloggingaboutoracle.org/archives/javapolis-radrace-the-full-story
    and
    http://www.radrace.org/en/JPed_2006/JP_report_2006.html#

  • Running Oracle ADF tutorial example to weblogic server

    Hi all,
    I am following the tutorial at [Developing RIA Web Applications with Oracle ADF|http://st-curriculum.oracle.com/obe/jdev/obe11jdev/ps1/ria_application/developriaapplication_long.htm] . However, I did something new here. I deployed the finished sample to weblogic admin server, and it went fine. But when I tried to access the page DeptEmpPage.jspx, I got exception:
    oracle.jbo.DMLException: JBO-26061: Error while opening JDBC connection.
    and also
    java.sql.SQLException: ORA-01005: null password given; logon denied
    Looks like the user hr was not logged in. I tried to give explicit plaintext password in the file connections.xml as following
    <SecureRefAddr addrType="password">
    <Contents>hr</Contents>
    </SecureRefAddr>
    , but this also did not work.
    Could you please let me know how to make it working? I know for security concerns, we may need to have a log in form to do authentication. But for the quick-fix and pedagogic purpose, could anyone here please help?
    Many thanks.

    Dou you need to change the bc4j.xcfg content to reference the JNDI connection created in the deployment. Note that the deployed EAR creates a HrDS JDBC connnection with the credentials and Security user and associations, see the JNDI url in your app, for example, for "jdbc/HrDSDS", the entry to be added to the config file must be <Custom JDBCDataSource="java:comp/env/jdbc/HrDSDS"/>
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig version="11.1" xmlns="http://xmlns.oracle.com/bc4j/configuration">
    <AppModuleConfigBag ApplicationName="lt.andrejusb.model.HrModule">
    <AppModuleConfig name="HrModuleLocal" ApplicationName="lt.andrejusb.model.HrModule" DeployPlatform="LOCAL" jbo.project="lt.andrejusb.model.Model">
    <Database jbo.TypeMapEntries="OracleApps"/>
    <Security AppModuleJndiName="lt.andrejusb.model.HrModule"/>
    *<Custom JDBCDataSource="java:comp/env/jdbc/HrDSDS"/>*
    </AppModuleConfig>
    <AppModuleConfig name="HrModuleShared" ApplicationName="lt.andrejusb.model.HrModule" DeployPlatform="LOCAL" jbo.project="lt.andrejusb.model.Model">
    <AM-Pooling jbo.ampool.maxpoolsize="1" jbo.ampool.isuseexclusive="false"/>
    <Database jbo.TypeMapEntries="OracleApps"/>
    <Security AppModuleJndiName="lt.andrejusb.model.HrModule"/>
    <Custom JDBCDataSource="java:comp/env/jdbc/HrDSDS"/>
    </AppModuleConfig>
    </AppModuleConfigBag>
    </BC4JConfig>

  • Regarding Oracle ADF Enterprise Application Development - Made Simple book

    Hi guys,
    I am trying to do Sten Vesterli's Oracle ADF Enterprise Application Development - Made Simple
    book. But I am stuck setting up OTPC. When I am trying to run "tpcinstaller.jar" and give my database connection information I am given a TPC-90019 error.
    The log file says it is a "ORA-01882: timezone region not found" error.
    My timezone is 'Asia/Calcutta'.
    This is what tpcinstaller log file contains,
    -------------------------------------------------------------------------------------log_file
    oracle.alminternal.version.Version: file:/C:/install/tpcinstaller.jar!/META-INF/version.xml
    11.1.1.4.37.59.23
    Launched from jar:file:/C:/install/tpcinstaller.jar!/oracle/alminternal/installer/Installer.class
    Found installer jar file /C:/install/tpcinstaller.jar
    Installer jar file name: /C:/install/tpcinstaller.jar
    Created temporary directory: tpctemp
    Execute command[tpctemp]: [D:\Oracle\Middleware\jdk160_21\bin\jar.exe, -xf, /C:/install/tpcinstaller.jar, lib]
    Extracting files ...
    Launching installer wizard, it may take a minute or so, please wait ...
    Execute command[tpctemp\lib]: [D:\Oracle\Middleware\jdk160_21\bin\java.exe, -classpath, annotations.jar;commons-io-1.2.jar;dms.jar;forms-1.0.6.jar;ideimpl.jar;idert.jar;javatools-nodeps.jar;javatools.jar;javax-ide.jar;javax.persistence_1.0.0.0_2-0-0.jar;jewt4.jar;oicons.jar;ojdbc6dms.jar;ojdl.jar;ojmisc.jar;oracle.ide.jar;oracle.ide.webbrowser.jar;oracle.ide.webupdate.jar;org.eclipse.persistence_1.0.0.0_2-1.jar;share.jar;TimingFramework.jar;uic.jar;xercesImpl.jar;xmlparserv2.jar;/C:/install/tpcinstaller.jar, oracle.alminternal.installer.Installer, -W]
    Temporary directory: connector created
    C:\install\tpctemp\lib\otpc created
    Jan 5, 2013 11:38:33 PM oracle.alminternal.installer.ideimpl.webbrowser.ProxyAddin loadProxyNative
    WARNING: Unable to default HTTP proxy: Native support is not available.
    :::settingsInitialized = false
    jdbc.url = jdbc:oracle:thin:@localhost:1521:xe
    jdbc.user = BOOK
    jdbc.password = BOOK
    SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-01882: timezone region not found
    -------------------------------------------------------------------------------------log_file
    Regards !
    Sameera
    Edited by: samme4life on Jan 5, 2013 9:10 PM

    I have the same problem, when I delete row and after that I use refresh button in internet explorer. What I do is I drag and drop button "removeEntity" and edit it in backing beans adding new bindigs that commit changes and referesh page. Code:
    public String commandButton2_action1() {
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding =
    bindings.getOperationBinding("removeEntity");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    OperationBinding commit1 = bindings.getOperationBinding("Commit");
    commit1.execute();
    OperationBinding requery = bindings.getOperationBinding("findAllRezerwacja1");
    requery.execute();
    return null;
    In page definition I added "Commit" action and code with methodAction is:
    <methodAction id="removeEntity" InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" MethodName="removeEntity"
    RequiresUpdateModel="true" Action="999">
    <NamedData NDName="entity"
    NDValue="${bindings.findAllRezerwacja2.currentRow.dataProvider}"
    NDType="java.lang.Object"/>
    </methodAction>
    <action id="Commit" IterBinding="findAllRezerwacja1Iter"
    InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" RequiresUpdateModel="true"
    Action="2"/>
    Can sb tell is there is normal that when I delete row in table, and after it I refresh manually by IE page is normal that I get error messages. I this is the same situation using Back in IE. Deleting row that is commited to database works fine, but the problem is with manually refreshing page?
    Next question is about using Delete action from node instead of removeEntity, what is the difference? As you can see, I use removeEntitity method. Choosing Delete action instead doesnt works. Why? Rest of the code is the same but instead of dropping method removeEntity I drop Delete action
    Sorry for my English, its not my native.
    Thank in advance

Maybe you are looking for

  • Create event in GOS obj to trigger workflow while attaching data with GOS

    Hello experts, It is a little bit urgent. I have a scenario. We have to attach documents to SAP application using GOS. These documents can be edited also. Now second part is that when we attach the document or edit the document, the document should b

  • Odd Smart Mailbox Behavior

    I receive a lot of mail with attachments so I created a Smart Mailbox with the following conditions -- ALL must be met: 1. Contains Attachments 2. Date Received is not in the last 2 weeks My goal is to keep my mail intact for 2 weeks, and then delete

  • Does Apple Warrenty cover the back of an iPhone 5?

    I took my phone case off the there was a big chunk taken out of the back of my iPhone 5. Does the warranty cover that ?

  • Print standard report into PDF????

    Hi! I'm trying to print my standard report with acrobat 7.0. But an error message occurred and I don't understand why- The error message says that the error is Unknow- Could you help me to resolve my problem? Thanks for your help- bastien Attachments

  • Dreamweaver CS4 Problem

    I got CS4 a couple of days ago, and it worked fine. Today when I launched it, after the splash screen finished loading and the window opened, it froze for a few seconds, then goes completely white and "not responding" appears beside the name. This is