Who can explain me the following formula?

top.frames['Content'].location.href="frmProjectViews?OpenForm&txtProjNo=" + document.forms[0].txtProjectIDRequested.value + "&txtViewSelected=viewNavDetDesign"
What is it 'Content'? Is it a frame created in the database?. I am not sure about I have to specify after ...location.href="..." Should I specify the URL which opens the action? I understand that the field ProjectID is a field in your original database and the field ProjNo is the field in the form located in another database where you copy the value of ProjectID. Is it right?
Thanks in advance

top.frames is an array of frames on the page. The 'content' loks to be an error. It should be top.frames[i] where i is the integer index of the desired frame in the array (zero based) or top.content where 'content' is the logical name given to the frame in the FRAMESET tag.
The 'location.href=' is the url for what is to be displayed in the frame. It can be either a full url or a relative url. In this case it looks like it is a relative url for a servlet with some dynamic parameters.

Similar Messages

  • Who can explain the message server string in the OSS connection ?

    Who can explain the message server string in the OSS connection ?  
    For example:
    MSG SERVER FIELD IS:
    /H/128.168.0.28/S/sapdp99/H/194.39.131.34/S/sapdp99/H/oss001
    What is the mean to each field in the string?
    What does the first "/H" mean?
    What does the second "/H" mean?
    What does the third "/H" mean?
    What does the first "/S" mean?
    What does the second "/S" mean?
    What does "/oss001" mean?
    Thanks .

    Hi,
    when you define  techinacal settings in tcode OSS1
    Transaction OSS1 -> Parameter -> Technical Settings -> Change -> Save. The SAPOSS destination is only automatically updated when you save.
    /H indicate server
    /S indicate Service
    check following SAP note
    Note 33135 - Guidelines for OSS1
    regards,
    kaushal

  • Can anyone explain me the following terms.....

    Hi all,
    Can anyone explain me the following terms in WM
    1. WareHouse
    2. Storage Bin
    3. Storage Location
    4. Storage Unit.
    5. Handling Units(External/Internal)
    Thanks

    Hi Kripa,
    1. What is Netweaver ?
    Click Here: <a href="http://www.thespot4sap.com/Articles/SAP_Netweaver_Introduction.asp">Netweaver: An Introduction</a>
    <a href="http://www.sap.com/platform/netweaver/index.epx">http://www.sap.com/platform/netweaver/index.epx</a>
    2. What is the difference bet NW 2004 and NW2004s?
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/devguide2004">SAP NetWeaver 2004 Edition</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/devguide2004s">SAP NetWeaver 2004s Edition</a>
    3. Is it mandatory to know JAVA language to sustain with NW technologies? or ABAP itself is enough ?
    Its all depend in which stack you want to fit. If you want to go into EP, then JAVA is must. In XI having knowledge of JAVA will be highly useful and in other Netweaver stack it will be an added advantage. Anyhow ABAP is not enough to sustain with NW technologies.
    <a href="http://www.sap.com/platform/netweaver/standardssupport/java.epx">Netweaver and JAVA</a>
    4. If JAVA is essential ...where to start with ?
    Core JAVA, J2EE in full is needed for Netweaver. As where to start is concern you can start with core JAVA and consequencely go thorugh J2EE.
    I hope this will help you out.
    Regards,
    Subhasha Ranjan

  • Where can I find the detailed explaining of the following symbols?

    Where can I find the detailed explaining of the following Explain Plan related symbols?
    PCWP
    :TQ
    TQ

    The Performance Tuning Guide (http://download.oracle.com/docs/cd/E11882_01/server.112/e10821/ex_plan.htm#i26005) tells us:
    PCWP = Parallel Combined With Parent
    TQ=Table Queue number
    The Performance Tuning Guide contains some really great material on how to read execution plans.
    RTFM then follow up here with specific examples that you are struggling with.
    We will help you, but you need to show initiative.

  • Can I rewrite the following query without using Row_number() function ??!!

    Hello every one, can I rewrite the following query without using the 'ROW_NUMBER() OVER ' part.
    The query is supposed to pull out the records whose CODE is not NULL and has most
    recent date for UPDATE_DATE . The reason I wanted to do this is, When I embed this query
    in between many other queries along with JOINs, My oracle server is unable to execute. So, I thought
    its better to supplant 'ROW_NUMBER() OVER ' logic with something else and try it. .
    SELECT a.* FROM
    (SELECT b.*, ROW_NUMBER() OVER (PARTITION BY b.PIDM
    ORDER BY b.UPDATE_DATE DESC) AS Rno
    FROM
    SELECT *
    FROM SHYNCRO WHERE CODE IS NOT NULL
    )b
    )a
    WHERE a.Rno = 1

    Hi,
    You didn't write over 150 lines of code and then start testing it, did you?
    Don't.
    Take baby steps. Write as little as pssiblem test that. Debug and test again until you have something that does exactly what you want it to do.
    When you have somehting that works perfectly, take one baby step. Add a tiny amount of code, maybe 1 or 2 lines more, and test again.
    When you do get an error, or wrong results, you'll have a much better idea of where the problem is. also, you won't be building code on a flimsy foundation.
    If you need help, post the last working version and the new version with the error. Explain what you're trying to do in the new version.
    The error message indicates line 133. It looks like line 133 of your code is blank. Does your front end allow completely blank lines in the middle of a query? SQL*Plus doesn't by default; you have to say
    SET  SQLBLANKLINES  ONto have a completely blank line in SQL*Plus. (However, lines containing nothing but at commnet are always allowed.)
    You may have noticed that this site normally doesn't display multiple spaces in a row.
    Whenever you post formatted text (such as indented code) on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.
    The 4 people who posted small code fragments for you to read all did this.  It would be so much easier for people to read your humongeous query if it were formatted.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Who can explain inner class to me?

    //InheritInner.java
    //Inheriting an inner class
    class WithInner
         class Inner{
              Inner()
              {System.out.println("Inner class");
         WithInner()
         {System.out.println("WithInner");}
    public class InheritInner extends WithInner.Inner
         //!InheritInner(){}//Won't compile
         InheritInner(WithInner wi)
              wi.super();
         public static void main(String[] args)
              WithInner wi=new WithInner();
              InheritInner ii=new InheritInner(wi);
    Who can explain this subclass constructor to me?
    I appreciate your help!

    Here's the class that in 'Thinking in Java'. For some reason, yours is completely different.
    //: InheritInner.java
    // Inheriting an inner class
    class WithInner {
      class Inner {}
    public class InheritInner
        extends WithInner.Inner {
      //! InheritInner() {} // Won't compile
      InheritInner(WithInner wi) {
        wi.super();
      public static void main(String[] args) {
        WithInner wi = new WithInner();
        InheritInner ii = new InheritInner(wi);

  • How can I change the tax formula in system form ?

    Hi,
      Usually the tax is extra-added for 5% in calcaulating.
      But now I need to change the formula of tax to be embeded.
      How can I change the tax formula in system form ?
                                           Besr regard!

    Great!
    I suppose "Speed-button" is the same as "toolbar button", right?
    To all (more or less):
    It confirms that I am on the right track when I bother the participants in this forum time-after-time with remarks to train themselves - or get trained - in application + customization features (+ SDK).
    Of course as developers we can use the SDK for whatever purpose and try to develop additional functionality - ... that might already be there, but we just don't know about it
    In addition the power of customization features (UDFs/UDTs/queries/formatted searches (also bound to fields on SAP Business One forms)...) should not be underestimated!!!
    When starting development with SDK you - or the person who writes the specifications for an Add-On must IMHO be familiar with the application + the customization features + being trained with SDK to avoid unnecessary development or getting into trouble latest when the solution is shipped to a customer...
    Please again note that there's a lot of eLearning available in the education area in the SMB Portal on SAP Service Marketplace.
    Regards,
    Frank

  • Can someone verify the following regarding Find My Phone:  I assume the lost device (iPhone) and the device (ipad) one is using to find the lost item must have the identical Apple ID, Apple PW, and iCloud PW and username? Otherwise it won't work?

    Can someone verify the following regarding Find My Phone:
      I assume the lost device (iPhone) and the device (ipad) one uses to find the lost item must have identical Apple IDs , PWs as well as identical iCloud identification?

    Back now.  Are you saying that you entered you iCloud ID and password in the Find My iPhone app (see photo below), and it said you don't have an iCloud account?  Are you sure this is the ID for your iCloud account (check Settings>iCloud next to Account at the top on the device you are trying to track)?
    Also, did you try using this ID and password on icloud.com on your computer to try to track it, as explained here: http://help.apple.com/icloud/#mmfc0f2442?  Did that work?

  • How can we remove the following zeros from quantity field ?

    Hi All.
    how can we remove the following zeros from quantity field while populating ALV by using FM REUSE_ALV_GRID_DISPLAY ?
    eg:getting output zqty = 2.000
    but i need           zqty = 2.
    help me to reslove this issue.
    Regards.
    jay

    Hi,
      While populating the field catlog do the following thing to   avoid zeros.
      wa_fieldcat-tabname = 'I_OUTPUT'.    " Curr
      wa_fieldcat-fieldname = 'FWAER'.
      wa_fieldcat-seltext_l = text-023.
      wa_fieldcat-no_zero = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR  wa_fieldcat.
    Thanks,
    Khushbu.

  • Who can I automate the process of printing booklet?

    Who can I automate the process of printing booklet.
    I use a saved Print Preset named "A3 booklet"
    I supply page range 1-16 then print as pdf using PDFCreater.
    File Name as 01.pdf, then pages 17-32 as 02.pdf and so on.
    I am aware that InDesign provides printBooklet() method through scripting, but I have no clues how to use it.

    Thanks stephen0218 for the idimposer link.
    I'm aware of Print Booklet... functionality, and I am currently using it to manually print booklets from InDesign files.
    I want to automate the print booklet task itself.
    I make 01.pdf with page range of 1-16, then 02.pdf with page range 17-32 and so on.
    It is not that much tedious for small files of upto 160 pages, which generate 10 pdf files. But for larger projects of upto 600 pages, the manual work is very time consuming and error prone process.
    I tried to call "document.printBooklet" function in JavaScript, but got stuck in supplying dynamic page ranges.
    Here is the Documentation.
    It will be a great help if anyone can help me here.
    Thanks and regards.

  • Explain me the following replace statement

    Hi guys,
    Please explain me the following replace statement with an example :
    REPLACE ALL OCCURRENCES OF '''' IN materialgroup_desc WITH ''''''.
    Please explain me the purpose of the above statement by showing the input and output.
    Regards,
    Vishu.

    Hi Rob,
    It's working fine .Thank you.But I just want to know the purpose of it as the functionality in one of the programs I have seen is as below  :
    Requirement :
    Need to get all the material groups and description2 based on the material descriptions we enter in the selection-screen .
    The program is coded in such a way that all the single quotes are replaced with double quotes :
    The following 3 statements are written in the code  :
    REPLACE ALL OCCURRENCES OF '''' IN materialgroup_desc  WITH ''''''.
    REPLACE ALL OCCURRENCES OF '*'  IN materialgroup_desc WITH '%'.
    REPLACE ALL OCCURRENCES OF '''' IN materialgroup_desc  WITH ''''''.
    and finally the result string is concatenated between quotes again to query the data.
    For instance if we give MAT'ER*IAL as the input it is converted to 'MAT''''ER%IAL'
    and by querying with a select statement using
    materialgroup_desc LIKE 'MAT''''ER%IAL' we are getting the required data.
    Hope you understand mny question.Please explain me why we are replacing the single quotes with double quotes 2 times.Is it a way to skip the special characters.
    Regards,
    Vishu shetty.

  • Can u write the following query without using group by clause

    select sp.sid, p.pid, p.name from product p, supp_prod sp
    where sp.pid= p.pid and
    sp.sid = ( select sid from supp_prod group by sid
    having count(*) =(select count(*) from product));
    thru this, we retrieving all the products delivered by the supplier.
    Can you write the following query without using the group by clause

      select sp.sid, p.pid, p.name
        from product p, supp_prod sp
       where sp.pid= p.pid the above query will still retrieve all the products supplied by the supplier. sub-query is not necessary.
    maybe if you can post some sample data and output will help us understand what you want to achieve.

  • How to craete a user who can only browse the dashboard??

    Hi friends,
    How to create a test user who can only browse the dashboards and not able to modify any of the reports using answers??
    Please tell me the steps.
    Thanks

    @Alastair: I thought it'd be nice to start a new trend in the forum.
    @bob123: Depends on how you manage your user and groups in general. Everything created in the RPD? Read from some Oracle tables? LDAP/ADSI? You can do it in the RPD, in the web catalog (Edit Group -> Group Membership ==> The table below contains a list of the current members of this group. Users can join the group by entering the group's password from the Join Catalog Group screen, or you can manually add them by clicking Add New Member below.) or outside.

  • Who can tell me the mean of "tm" in J2EE(tm)???

    who can tell me the mean of "tm" in J2EE(tm)???

    Thank you very much!

  • Who can tell me the usage of TCode:OMFS?

    Who can tell me the usage of TCode:OMFS?
    When we need to configurate these?
    Thank in advance.

    Hi,
    By flagging a field on here, yes, that is what it is designed to do.
    If you change the delivery address for instance you would surely need to tell the vendor? So you would flag these fields so that the new PO (which can be a PO with ONLY the changes on it, or a full reprint of the PO, depending on which you want), is printed and sent to the vendor.
    If the Purchasing group is changed then you may decide that this should NOT trigger a print of the changes, so you don't flag that field.
    It is entirely up to you which fields you flag, all, some or none.
    There is a flag for each type of document (RFQ, PO, Contract and Scheduling agreement and so you can set different flags for each)
    You can also specify the text number to control what the change text is, such as "Delivery address changed" etc.
    You can even use special routines that can manage more complex actions for each change.
    As susual the SAP system is giving you many options that you CAN use if you want to, but you don't have to use them if you don't want to.
    Steve B

Maybe you are looking for

  • URGENT: Problem in printing Character Mode Report in Chinese Version

    Hello, I am working with Reports 6i. i have developed one Character mode report. This report is working and printing fine in Windows 2000 Server (English Version). But, this report is not working properly in Windows 2000 Professional (Traditional Chi

  • How do i get icloud onto my mac

    On my system preferences I have a MobileMe symbol but no icloud. My ipad and iphone are in sync with each other but calendar events from these are not transferring to my computer. I suspect this is because icloud is the missing link on my mac. I am r

  • Delete a free previously downloaded app from iTunes

    There is a free game "garden of times" that will no longer work for some users.  The developers are aware that their last version caused problems for some of the users, but they have elected to not do anything for the users that have the problem with

  • What is going on with the Adobe Revel app?

    The latest upgrade of Revel does not download. I cannot access my photos and there is no customer service. Adobe has dropped the ball here and I am upset that nothing can be done. Has anyone found a work around or a solution?

  • OWSM: SAML message protection policy question

    My web services are protected with SAML message protection policy. according to document: http://download.oracle.com/docs/cd/E15523_01/web.1111/b32511/setup_config.htm#BABJAIHD On the web service side, "+Needs the intermediary and root certificate co