About dynamic IP

Hi, 1. Can I make my WRT 160N V2 to create DYNAMIC IP, instead of static? 2. If i use dynamic ip will it not affect my internet browsing? 3. Will dynamic ip affect my video on demand if my IP keeps changing? Thank you in Advance

your isp provider gives you static or dynamic . it does not mater as long as you have your router set up to do those tasks for you.
Lincoln

Similar Messages

  • About dynamic  where clause

    hi
    on Jdev 11.1.2.3.0
    Imade dynamic search (where clause)
    It woks fine with me
    but I want to be sure from the best way to do that
    the ideia is to run search according to what is the user chose
    on (Hr) schema employees table
    the end user could search according to departmentID only
    or job id only or both of them or display all employees taable data if there are no seletion
    I used
    this.setWhereClause( );
    this.defineNamedWhereClauseParam();
    this.setNamedWhereClauseParam();
    methods in employeesImpl and I revale it to the client interface to display two text boxes and a button
    my full code is
    ================
    public void setwhereClause(String jobid ,String departmentId ) {
    if (jobid==null & departmentId ==null) {
    this.skipNamedWhereClauseParam ("P_DEPARTMENT_ID");
    this.skipNamedWhereClauseParam("P_jobid");
    this.setWhereClause("1=1");
    this.executeQuery();
    if (jobid==null & departmentId !=null) {
    this.setWhereClause("EmployeesEo.DEPARTMENT_ID =:P_DEPARTMENT_ID");
    this.defineNamedWhereClauseParam("P_DEPARTMENT_ID", null, null);
    this.setNamedWhereClauseParam("P_DEPARTMENT_ID",departmentId );
    this.skipNamedWhereClauseParam("P_jobid");
    this.executeQuery();
    if (jobid!=null & departmentId ==null) {
    this.setWhereClause("EmployeesEo.JOB_ID=:P_jobid ");
    this.defineNamedWhereClauseParam("P_jobid", null, null);
    this.setNamedWhereClauseParam("P_jobid",jobid );
    this.skipNamedWhereClauseParam ("P_DEPARTMENT_ID");
    this.executeQuery();
    if (jobid!=null & departmentId !=null)
    this.setWhereClause( "EmployeesEo.JOB_ID=:P_jobid and EmployeesEo.DEPARTMENT_ID =:P_DEPARTMENT_ID " );
    this.defineNamedWhereClauseParam("P_DEPARTMENT_ID", null, null);
    this.setNamedWhereClauseParam("P_DEPARTMENT_ID",departmentId );
    this.defineNamedWhereClauseParam("P_jobid", null, null);
    this.setNamedWhereClauseParam("P_jobid",jobid );
    this.executeQuery();
    ==========================================
    but Iwas geting error when I run the search For the First Time only without selecting any thing
    the error wase about ( attempt to define parameter which is not in the where clause)
    one time for both variable if there are no selection
    anothe for the P_DEPARTMENT_ID when I search for job
    and the oposet for P_jobid when I search for department
    so why this eror came despite of IF Statment existance
    and why when I run search for both parameter job and departemnt
    next time i search for all data or department only or job only
    the error dosnot come again
    Isuccesd to avoide this error by adding P_DEPARTMENT_ID and P_jobid
    as bind varable in the same names for the employeesVo
    note
    (Idont want to use view Criteria for a segnificant reason)
    and becasue Ineed to pass varaible to open a report_
    in the same way user search_
    and Ican't catch bindings for the view criteria_
    my qusetions
    1-Is what i Did is the correct way I mean adding the binde varable visicaly to SQL tab In the EmployeesVO
    2- why is the error of ( attempt to define paramter not iexist in the where clause mainwhile the If Statment condition dosnot succesd)
    3- how to add bindig variable programaticly without adding it phisicaly in the EmployeesVo SQL

    Duplicate to about dynamic  where clause
    User, please don't post the same question multiple times in this forum.
    Timo

  • About dynamic offline interactive form

    I have a request for working with pdfs in netweaver java, but the requisites are quite tight and I don't know if it will be possible to achieve with interactive forms.
    I need to:
    1- Generate a pdf file (many in fact) using preloaded data from backend for offline use.
    2- The pdf must be interactive so the user can introduce new data or modify the preloaded data.
    3- The user should be able to change dynamically the format of the pdf: add rows to tables, make visible/invisible parts of the document, fire different events...
    4- The user should be able to save his work in the file including the format (if he has added rows to a table or made invisible an object it should be saved).
    5- The user should be able to send the data to the server through a send button.
    In short, strange as it may sound, I need to simulate a web dynpro application using an offline pdf.
    I've been searching and I think 1 and 2 are not a problem. I would just need to use a template created in LiveCycle Designer and link the data source to Web Dynpro context. Please correct me if I'm wrong.
    I think 3 can be done using scripting and events set in LiveCycle Designer, though I have 0 experience with it.
    I don't know if I can achieve 4. From what I've read dynamic content can't be saved. That is, if the user changes dynamically the pdf format and saves it will be lost when opened again. Is it true?
    I don't know about 5 either. With online interactive form of course, but with offline? I've seen examples that use and upload control in a Web Dynpro application as an alternative but I'd like to avoid that if possible.
    I'd like to get some indications about if these points can be done or not, if possible with some references that illustrate it (links to blogs, sap help...)
    Some tips and references about how to implement the different parts of this scenario (specially from point 3 and beyond) would be really welcome.
    Thanks in advance.

    Almost all things you mentioned are quite possible with Adobe Forms.
    1- Generate a pdf file (many in fact) using preloaded data from backend for offline use.
    You can do this by creating a Interactive Form using ABAP or create an online form using WD ABAP and just save the required form when done to be used for offline use
    2- The pdf must be interactive so the user can introduce new data or modify the preloaded data.
    You need to have Adobe forms License in case you want your forms to be interactive. In ABAP I think in the driver program you need to set FILLABLE = X or something like that and for WD there is enabled property which needs to be set true.
    3- The user should be able to change dynamically the format of the pdf: add rows to tables, make visible/invisible parts of the document, fire different events...
    The user can add rows to table and depending upon conditions you can set the required fields as visible/invisble
    4- The user should be able to save his work in the file including the format (if he has added rows to a table or made invisible an object it should be saved).
    If your form is fillable and interactive the data can be saved by end user.
    5- The user should be able to send the data to the server through a send button.
    There are different types of Submit options available. You can use Submit by email so that the user can submit the form via email.
    Also I would strongly advise just try Search on forum and I am sure that you would get plenty of links/examples to work with.

  • Explain me briefly about Dynamic Actions in PA

    HI Experts kindly let me know about the Dynamics actions in Personnel Administration.Am just confusing about this concept.In real time scenario what will be the use of this concept.How it will work ?Why we have given the 0077 as target infotype.Kindly describe me in detail.Actually i heard like this concept will be an added advantage in interview point of view.

    Hi, Dynamic actions in real time is merely a event triggered processing that can be configured to do a required job in the back ground automatically. For example when you hire an employee (IT0000 gets created -> can be considered as a trigger). Now this creation of IT0000 can be configured to automatically create date specfications in the background or say can be used to create IT2006 -> all quota types which zero hrs.
    Have a look at the following link:
    http://wiki.sdn.sap.com/wiki/display/Snippets/Dynamic+Action

  • Keep getting error message about Dynamically-related files when trying to view in "Live" mode

    I'm very new to all of this, but I have been following Adobe tutorials to try and get everything working (Setting up a PHP development environment for Dreamweaver | Adobe Developer Connection) . The database connection test in this section goes through fine, but then when I go to view the final step, viewing comments.php in "Live View," I get an error across the top. I have played with it a bit, so the error message changes somewhat, but basically it tells me that I have dynamically-related files that can't be loaded. Currently, it is because they can't be resolved, previously, it was because they could not be discovered. (I tried the "Discover" option which failed, after which I resorted to the "Setup" option, in which I changed my root folder from htcdocs to htcsdocs/kitchengallery — where I had all my PHP and site files — and tried again to no avail. So then I changed the settings in MAMP to correspond with the change from htcdocs to htcdocs/kitchengallery. Still no luck).
    I am using Dreamweaver CS6.
    I'm not sure what information someone might need to help me dig deeper into this issue, but I'm all ears!

    Usually this is caused when antivirus "Grabs" the drive to scan it in the background, and/or windows itself "Grabs" the drive for indexing and things. It also happens if you play a song off the ipod thru iTUnes, then stop it.
    Usually rebooting will force it to let go

  • Question  about dynamic class loading with thread built in

    Hi ,
    I am trying to load a class with a thread built in from the network.
    I write my network classloader, convert the class to a byte array and transmit over the network using socket. This step seems fine but when I tried to load the class at the receiver, some exception happens,"
    the reported exception is that :
    Exception in thread "Thread-2" java.lang.NoClassDefFoundError: SampleProject/Application$1
    my class name is "SampleProject . Application", the $1 I think it may refers to the thread built in the "Application".
    Could any one give me some hint for how to dynamic load such class file with thread built in over the network?
    Thank you!
    Best Regards,
    Song Guo

    Exception in thread "Thread-2"
    java.lang.NoClassDefFoundError:
    SampleProject/Application$1That means that the receiving end can't find an anonymous inner class which you have in the Application class. (The anonymous clas is given the synthetic name 1). Check your bin/classes folder you will have a class there with the name Application$1.class
    Kaj

  • A question about Dynamic News Sample.

    I have encountered a error when I installed Dynamic News Sample and build it in JDeveloper3.1.
    The main environments are: Oracle8.1.6, Java1.2 , Oracle XML Parser2 for Java , Oracle XSU12.
    The error is:
    "method endElement(java.lang.object) not found in class
    oracle.xml.sql.docgen.OracleXMLDocGenDom."
    If you can help me, I will always remember you.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by wang wanding ([email protected]):
    I have encountered a error when I installed Dynamic News Sample and build it in JDeveloper3.1.
    The main environments are: Oracle8.1.6, Java1.2 , Oracle XML Parser2 for Java , Oracle XSU12.
    The error is:
    "method endElement(java.lang.object) not found in class
    oracle.xml.sql.docgen.OracleXMLDocGenDom."
    If you can help me, I will always remember you.
    <HR></BLOCKQUOTE>
    null

  • About dynamically setting bind variable in LOV View

    Hi,
    I have a LOV VO for an af:SelectOneChoice field in the page.
    The LOV is depended on an SQL statement in which there is a bind variable in the where clause.
    When I open the page, I set the bind variable by using VO.setNamedWhereClauseParam in the prepareSession method in the application module, followed by VO.executeQuery();
    The problem is, the af:SelectOneChoice is blank. Why?
    If I do not use the bind variable in the SQL, I can see rows in the af:SelectOneChoice field.
    When is the proper time to populate the LOV? And where should I put the code for populating the LOV?
    I am sure that the VO is populated, because after I executeQuery, there are many rows in the VO.
    Thanks
    Stephen
    null

    Hi Franky,
    Yes, when I set a default value for the bind variable, everything is OK.
    But I want the bind variable dynamically be set when the AM is initiated. Is there a way to do that?
    Stephen

  • Issue about dynamic lov

    Hello exper,
           I want to use dynamic lov for parameter.  when editing this parameter, I select "dynamic" for lov, "account_id" for value. but no list of value for this parameter in the parameter dialogue. My data source is oracle stored procedure.
    Many Thanks,

    when you create the parameter you are selecting DYNAMIC, then you select the field to pull from
    then you place the parameters in the record selection correct?
    make sure you lov doesnt change when data is entered, they do not update themselves and require daily maintenance.
    when you run your report does the value you are looking for show up, it will only display if it is in the dataset.

  • A thought about dynamic Class handling

    I've been musing on the management of, particularly, dynamically loaded classes and I've come up with an interesting idea which I thought I'd toss arround.
    What I felt was wanted was a kind of template which created a contract for the static elements of a class (static methods and constructors) in the same way an interface serves for an instance of a class. At first I thought this would require an extension to the language, but I've come up with a way of doing it with a fairly simple library class which I call ClassTemplate.
    To use it, I create an interface which has methods coreponding the the public static methods and constructors which the Class is required to have. Constructors are distinguished with an annotation. For example we might define.
    public interface NumberClassTemplate {
       @Constructor Number fromString(String v);
       }or
    public interface MainClassTemplate {
       void main(String[] args);
    }You can then create an instance of ClassTemplate based on that interface. Then, from that, you get an implementation of the template interface which accesses the class. (it's a proxy object, of course).
    So
    ClassTemplate<MainClassTemplate> mainClassTemplate = ClassTemplate.getInstance(MainClassTemplate.class);
    try {
         MainClassTemplate mainClassProxy = mainClassTemplate.create("my.MainClass");
         mainClassProxy.main(new String[]{"arg1});
        } catch(ClassNotFoundException e) {
          // no such class
       } catch (ClassTemplateException e) {
         // class does not conform to template
      }What do you think of such an approach? Would it provide a neater alternative to factory classes or the insistence on bean patterns in some cases?
    (I've written the relevant classes, and it all seems to work fine).

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by wang wanding ([email protected]):
    I have encountered a error when I installed Dynamic News Sample and build it in JDeveloper3.1.
    The main environments are: Oracle8.1.6, Java1.2 , Oracle XML Parser2 for Java , Oracle XSU12.
    The error is:
    "method endElement(java.lang.object) not found in class
    oracle.xml.sql.docgen.OracleXMLDocGenDom."
    If you can help me, I will always remember you.
    <HR></BLOCKQUOTE>
    null

  • About dynamic creating component instance

    my project is a lib project , and I can not create a mxml
    component using getdedinitionbyname then new the class .
    because the class reference I can not received using
    getdedinitionbyname! Has any body know something about it?

    Why,there is so little developpers!But luckily I find the
    answer,Just add a compiler parameter -include-librarirs to resoleve
    it!!

  • Question about Dynamic Linking from Premier Pro

    I have a number of sequences created in Premier Pro CS5.5 that I have linked into a project in Encore CS 5.1 via the "Dynamic Link" feature. My question is - if I make any adjustments or changes to those sequences in Premier Pro, will those changes be automatically transferred to the corresponding timelines in Encore? If not, how do I make that happen?

    Jeff's answer applies to each dynamic linked sequence you transcoded after in Encore. For any sequence not already transcoded, changes will be automatic.
    The exception is markers. If you change markers, including markers that shifted on the Premiere timeline because you deleted or added clips, changed duration, etc, you must select the sequence's timeline and select Edit -> Update Markers From Source (replaces all markers).

  • Query about Dynamic XML generation

    How to generate dynamic XML using java/javascript?
    can anybody help me out?

    Thank you for your reply. I've checked the website you referred, then found the dynamic tree there which is free for adding or removing nodes is written by visual basic or so bu not JSP.
    Can you give me some other clues? I really appreciate your help. :P
    coco
    [email protected]

  • About dynamic array

    Which one does Java support ?
    Fixed heap-dynamic array or heap-dynamic array.
    I'm so confused ~.~

    so, does it mean that java support both fixed heap
    dynamic array and heap dynamic array?Java supports both static (fixed length) arrays and dynamic (variable length) arrays. The static arrays belong to the core language. The dynamic array implementation, called ArrayList, is part of a standard library, called the Collections Framework. In both cases they're used as objects and thus stored on the heap (it's currently not possible to allocate an object on the stack).

  • About Dynamic Conditions

    hello,
    if i want to use Dynamic Conditions in select,how can i do? Dynamic Conditions 'where'.

    Hi,
         TABLES: VBAK.
    SELECT-OPTIONS S_VBELN FOR VBAK-VBELN.
    DATA: lV_STR1(20) TYPE C VALUE 'VBELN IN S_VBELN.'.
    DATA: GI_WHERE(72) OCCURS 0 WITH HEADER LINE.
          GI_WHERE = LV_STR1.
           APPEND GI_WHERE.
    DATA GI_VBAK LIKE VBAK OCCURS 0 WITH HEADER LINE.
    SELECT VBELN
    INTO TABLE GI_VBAK
    FROM VBAK
    WHERE (gi_where).
    Regards
    amole

Maybe you are looking for