Webdynpro ABAP- Reference Links- Articals are not opening

hi all
in SDN-Webdynpro abap
Webdynpro ABAP->Reference Links->Articals are not opening any another way to open all these articals??
thank u
krishna.

hi,
Try this one :
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdabap/referencesandLinks
Thanx.

Similar Messages

  • Post upgrade from 11.5.10.2 to 12.1.3 Forms are not opening

    Hi,
    After upgrade from 11.5.10.2 to 12.1.3, When we click on any of the form link, forms are not opening.
    No error detected in $LOG_HOME/logs/ora/10.1.3/j2ee/ folder.
    Please help as we are stuck here.
    Regards,
    Shrikant

    Shrikant P Y wrote:
    Hi,
    We are using Linux X86 server for front end and UP-UX for database.
    There were no issues during upgrade.
    Source and target both are same.
    When we click on any forms instead of form launcher servlet system is using /dev60cgi/f60cgi. Checked the profile value and it is form/servlet.
    Do you meet the minimum requirements as per (Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1])?
    please check apache log files?
    What is the browser you use and the client OS?
    Can you reproduce the issue from other clients and/or using different browser?
    Did AutoConfig complete successfully?
    Do you have all the application services up and running?
    Please check the application.log file for details about the error.
    Running a Trace on a Form [ID 148143.1]
    what do you see when you enable java console trace?
    :) ApPsMasti ;)
    sharing is caring

  • Skype chat links are not opening in firefox on Mac

    Hello,
    I have Mac book pro running OS 10.6.8 "Snow Leopard", skype 6.15 (335), and my default browser is Firefox version 32.0.3.
    Recently I experience a problem when someone send me a link it dose not open in Firefox, actually it switch to Firefox when I click on the link on Skype chat but no new tab is opening. I have to right click the link and then choose "Open URL" to get the link.
    If you have any suggestions please help.
    Thank You

    I had a similar problem on a website when a particular page was writing on the screen. This particular page later discovered contained a code that disabled anything from being clicked on or selected etc. It was as though there was an invisible windows in front (literally there was). I removed the code and everything went back to normal.
    Nothing wrong with Firfefox, Windows or Ubuntu. Incidentally, windows Internet Explorer v8 didn't have a problem since it was not up to date to handle the new CSS code. :)
    Here's the code that prevented anything on the page from being clicked:
    <div id="FirebombOverlay" style="display: block; position: fixed; left: 0pt; top: 0pt; width: 100%; height: 100%; margin: 0pt; padding: 0pt; outline: medium none; background: none repeat scroll 0% 0% transparent; z-index: 999999;"></div>
    Most likely it got injected there without the user being aware of it. This was injected back in march 2012 so since then the browsers did not pick it up and just plainly ignored the code until new browser updates got installed to handle the css code.
    I have no idea how it got there but my best guess would be a silent plugin of which I have no idea which one.
    The above code is some form of style sheet code that puts a layer in front of the page. It would be put into good use in stopping people from selected the page contents or to do damage to there site. You can perhaps put it over images from stopping people downloading using browser right click save image command.
    I hope this would help those who are having the problem.

  • Links in my email are not opening in web browser. They are bringing the browser up, but not taking me to sites.

    Links in my email are not opening in web browser. They are bringing the browser up, but not taking me to sites. What do I need to do?

    Me too but it's happening on my iMac after I did a software update this morning which included fixes in Mail it said. My Mail was fine before the update!

  • In webdynpro abap , the ui layout is not visible. please read query fully

    hi , in webdynpro abap , the UI Layout is not visible. 
    I did some settings .
    1) in SICF  t-code , i actvate the all services realted to http . i dont know which services properly need to webdynpro ui layout.
            after activating those services, ui elements are coming . but when i am tryin to drag ui elemetns in to UILayout , it showing some error message. I am not able to drag ui elemetns to ui layout.
    Please tell how to solve this problem.
    1)  if the solution is regarding ip address in host file, please guide me in depth step by step.
    2) if the solution is realted to browser settings , please guide me in depth each step by step for settings   in browser .

    Hi sujana,
    I had a similar problem..
    if u hav a look at ur url you will come to know the following things:
    <schema>://<host>.<domain>.<extension>:<port>/sap/bc/webdynpro/<namespace>/<application name>
    the same url can be traced in SICF.
    Also u need to add the server ip/domain name in the advanced tab in lan settings so that it does go through the proxy..
    You can check the following link: http://help.sap.com/saphelp_nw04s/helpdata/EN/8c/780741375cf16fe10000000a1550b0/content.htm
    Best Regards,
    navin fernandes.

  • Java.lang.IllegalArgumentException: References to entities are not allowed

    Hi,
    I am using Berkely DB(native edition) 5.0.21 version. I have a couple classes as defined below:
    Class - 1:
    package bdb.test;
    import java.util.List;
    import com.sleepycat.persist.model.Entity;
    import com.sleepycat.persist.model.PrimaryKey;
    @Entity
    public class Employee {
         @PrimaryKey
         private String id ;
         private String name;
         private List<Employee> reportingManagers ;
         public String getId() {
              return id;
         public void setId(String id) {
              this.id = id;
         public String getName() {
              return name;
         public void setName(String name) {
              this.name = name;
         public List<Employee> getReportingManagers() {
              return reportingManagers;
         public void setReportingManagers(List<Employee> managers) {
              this.reportingManagers = managers;
    Class - 2 :
    package bdb.test;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.util.ArrayList;
    import java.util.List;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Environment;
    import com.sleepycat.db.EnvironmentConfig;
    import com.sleepycat.persist.EntityStore;
    import com.sleepycat.persist.PrimaryIndex;
    import com.sleepycat.persist.StoreConfig;
         public class BDBTest{
              public static void main(String agrs[]){
                   Environment myEnv;
                   EntityStore store;
                   try {
                        EnvironmentConfig myEnvConfig = new EnvironmentConfig();
                        myEnvConfig.setCacheSize(30000);
                        StoreConfig storeConfig = new StoreConfig();
                        myEnvConfig.setAllowCreate(true);
                        myEnvConfig.setInitializeCache(true);
                        storeConfig.setAllowCreate(true);
                        try {
                        // Open the environment and entity store
                        myEnv = new Environment(new File("c:\\BDBTEST\\"), myEnvConfig);
                        store = new EntityStore(myEnv, "MyStore", storeConfig);
                        PrimaryIndex<String, Employee> primaryIndex = store.getPrimaryIndex(String.class, Employee.class);
                        // write Employee
                        Employee employee = buildEmployee("E1", "EMP1");
                        primaryIndex.putNoReturn(employee);
                   } catch (FileNotFoundException fnfe) {
                        System.err.println(fnfe.toString());
                        System.exit(-1);
                   } catch(DatabaseException dbe) {
                        System.err.println("Error opening environment and store: " +
                        dbe.toString());
                        System.exit(-1);
              public static Employee buildEmployee(String id,String name){
                   Employee employee = new Employee();
                   employee.setId(id);
                   employee.setName(name);
                   employee.setManagers(buildManager());
                   return employee;
              public static List<Employee> buildManager(){
                   List <Employee> managers = new ArrayList<Employee>();
                   Employee manager1 = new Employee();
                   manager1.setId("M111");
                   manager1.setName("Manager1");
                   Employee manager2 = new Employee();
                   manager2.setId("M222");
                   manager2.setName("Manager2");
                   managers.add(manager2);
                   return managers;
    While running the Class 2, I am getting the following exception :
    Exception in thread "main" java.lang.IllegalArgumentException: References to entities are not allowed: bdb.test.Employee
         at com.sleepycat.persist.impl.RecordOutput.writeObject(RecordOutput.java:94)
         at com.sleepycat.persist.impl.ObjectArrayFormat.writeObject(ObjectArrayFormat.java:137)
         at com.sleepycat.persist.impl.RecordOutput.writeObject(RecordOutput.java:114)
         at com.sleepycat.persist.impl.ReflectionAccessor$ObjectAccess.write(ReflectionAccessor.java:398)
         at com.sleepycat.persist.impl.ReflectionAccessor.writeNonKeyFields(ReflectionAccessor.java:258)
         at com.sleepycat.persist.impl.ReflectionAccessor.writeNonKeyFields(ReflectionAccessor.java:255)
         at com.sleepycat.persist.impl.ComplexFormat.writeObject(ComplexFormat.java:528)
         at com.sleepycat.persist.impl.ProxiedFormat.writeObject(ProxiedFormat.java:116)
         at com.sleepycat.persist.impl.RecordOutput.writeObject(RecordOutput.java:114)
         at com.sleepycat.persist.impl.ReflectionAccessor$ObjectAccess.write(ReflectionAccessor.java:398)
         at com.sleepycat.persist.impl.ReflectionAccessor.writeNonKeyFields(ReflectionAccessor.java:258)
         at com.sleepycat.persist.impl.ComplexFormat.writeObject(ComplexFormat.java:528)
         at com.sleepycat.persist.impl.PersistEntityBinding.writeEntity(PersistEntityBinding.java:103)
         at com.sleepycat.persist.impl.PersistEntityBinding.objectToData(PersistEntityBinding.java:83)
         at com.sleepycat.persist.PrimaryIndex.putNoOverwrite(PrimaryIndex.java:474)
         at com.sleepycat.persist.PrimaryIndex.putNoOverwrite(PrimaryIndex.java:449)
         at bdb.test.BDBTest.main(BDBTest.java:42)
    Question : In the above example reportingManagers is also a list of Employee classes. Can't I self reference a object with in the same object ? How do I store list of reportingManagers in this example? Any help is highly appreciated.
    Thanks,
    Bibhu

    Hi Sandra,
    Thanks for the reply.
    Is there any restrictions in Berkeley DB to store cyclic referencing objects?
    API documentation for Entity annotation talks about cyclic references in one of section but contradicts the same in another section. Please refer the link below:
    [ http://download.oracle.com/docs/cd/E17076_02/html/java/com/sleepycat/persist/model/Entity.html]
    Following sections of this documentation contradicts each other. I have highlighted both of them in bold.
    Other Type Restrictions:
    Entity classes and subclasses may not be used in field declarations for persistent types. Fields of entity classes and subclasses must be simple types or non-entity persistent types (annotated with Persistent not with Entity).
    If a field of an Entity needs to reference an object, the referenced object should be marked with @Persistent and not with @Entity. So, self referencing is not possible as the main class would have been marked with @Entity.
    Embedded Objects
    As stated above, the embedded (or member) non-transient non-static fields of an entity class are themselves persistent and are stored along with their parent entity object. This allows embedded objects to be stored in an entity to an arbitrary depth.
    There is no arbitrary limit to the nesting depth of embedded objects within an entity; however, there is a practical limit. When an entity is marshalled, each level of nesting is implemented internally via recursive method calls. If the nesting depth is large enough, a StackOverflowError can occur. In practice, this has been observed with a nesting depth of 12,000, using the default Java stack size. This restriction on the nesting depth of embedded objects does not apply to cyclic references, since these are handled specially as described below.
    Self referencing is possible.
    Object Graphs
    When an entity instance is stored, the graph of objects referenced via its fields is stored and retrieved as a graph. In other words, if a single instance is referenced by two or more fields when the entity is stored, the same will be true when the entity is retrieved. When a reference to a particular object is stored as a member field inside that object or one of its embedded objects, this is called a cyclic reference. Because multiple references to a single object are stored as such, cycles are also represented correctly and do not cause infinite recursion or infinite processing loops. If an entity containing a cyclic reference is stored, the cyclic reference will be present when the entity is retrieved.
    My question:
    In the above first highlighted section says to store a referenced/embedded object it needs be marked with @Persistent and not with @Entity annotation. That rules out storage of cyclic referencing object since the main object would have been already marked with @Entity annotation. The second section indicates having support for cyclic references.
    So, Is it possible to store cyclic referencing objects in BDB? if yes, how it should be done?
    Thanks,
    Bibhu
    Edited by: user12848956 on Jan 20, 2011 7:19 AM

  • Links in Mail not opening

    Links in Mail messages are not opening. I switched to Firefox and they open but not in Safari, which I prefer. What could the problem be?

    It is as you said, firefox incompatibility with its latest update.
    Does reinstalling firefox help?
    I do recommend launching the links using safari so we can isolate it to just firefox alone

  • Planning web forms are not opening in EPM11..

    Hi Gurus,
    Planning web forms are not opening in EPM11..
    What logs i need to check in these case, what should be the path of the logs.
    Here i am accesing web forms on my local system through workspace web link
    We have 2 essbase server and three application server..
    PLease suggest...

    In Windows the apth that u have maentioned there are two log files :
    HyS9RaFrameworkAgentErr and HyS9RaFrameworkAgentOut
    In application unix servr i tried at the following path :
    /xxxxxx/xxxxxx/hyperion/Oracle/Middleware/user_projects/epmsystem1/diagnostics/logs/planning :
    there are following files there :
    calcmgrdeploy.log calcmgrexecution.log calcmgrlaunch.log

  • CS3 Hyperlinks are not opening properly

    Hyperlinks that have I created to some "File" URLs are not opening in a browser with a computer (Acrobat 7.0), while working on others (Acrobat 8.0). The Acrobat 7.0 computer, opens a browser window that goes to the default home page.  I am at a loss as to what it can be. 
    Any known bugs for opening the links properly with 7.0?  Or could I be missing a setting somewhere, either with the IE browser or 7.0?
    Thanks,
    Jo

    Oh! and the network drive mappings point to the same location on all computers... 

  • Compliants from Inbox result list are not opening

    Hi all,
         when i click on compliants from inbox search result ,   compliants are not opening.    tasks, and interaction records are opening properly.
    plz suggest
    ram

    The Navigation in IC Web works using 'Navigation Links'.  In this Case , there is one to one link for a Business Object and Naviagation Link in the Standard Code
    for Complaints , Business Object BUS2000120  , the Navigational Link is AuiItemsEvComplaint
    Make Sure in your Design Time Repository  used in your Runtime Profile ( the Standard is CRM_IC_DT_REP )  , File AuiNavigationalLink.xml should have ...
    <NavigationalLink name="AuiItemsEvComplaint">
      <Source viewRef="AuiItems" outboundPlugRef="default"/>
      <Targets>
        <Target viewRef="ComplHeader" inboundPlugRef="inboundPlug"/>
      </Targets>
    </NavigationalLink>
    Hope this helps.

  • How can I install plugins? my files are not opening because some are missing after updating my OS

    How can I install plugins? my files are not opening because some are missing after updating my OS
    I can´t update the software because it crashes
    Thanks

    Casiii which Adobe software or service is your inquiry in reference too?

  • The variety tools within the type tool, rectangle tool, pencil tool, etc. etc are not opening in my CS4 Illustrator

    I recently re-installed my CS4 and am trying to reacquaint myself with the various applications.
    Where I was previously able to access the various tool options, i.e. under the Text Tool, Rectangle Tool, Pencil Tool, etc. they are not opening now.
    Any suggestions out there as to what could be the problem?
    Thanx.
    Illustrator

    Bergi4roses,
    Are you saying that they do not fly out when you ClickHold hovering over the main tools (that is the Illy way)?
    If that be the case, you may start looking at the list, maybe going straight to 6).
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Pls help me to unstall mackeeper,the link given is not opening in my mac

    pls pls help me to uninstall mackeeper...the link given is not opening in my mac..i am scared really

    Not sure which link you are referring to.
    Try here >  Uninstalling MacKeeper

  • EML files are not opened in the browser

    EML files opened from a SharePoint 2010 document libraries are not opened in the browser. Instead, a dialog box is opened and prompts to save the file.  
    Since there's no standard application that knows how to handle EML files, and since the EML format is built into SP (send emails to document libraries), I think this behavior is unacceptable.
    EML files should be opened in the browser, similar to SP 2007.  

    Seems the solution is in the client side configuration.
    If eml files (as all other file types) are not configured to open by default in Outlook 2007 (or Windows Live Mail), they will be prompted for download or open.
    The registry change link I provided earlier did not work for me. I tried this:
    http://webcache.googleusercontent.com/search?q=cache:-hgG6T55trAJ:john-h-selnes.spaces.live.com/blog/cns!6C7F16530F119E8D!3092.entry+how+to+configure+sharepoint+to+opem+eml+file+in+outlook+2007%3F&cd=1&hl=en&ct=clnk&gl=us&source=www.google.com and
    solved my problem. Seems by default eml file set to MIME message/rfc822 and associated with windows live mail - SharePoint team hates Outlook team, right?
    If you do not have such assoication, it opens in browser!
    My settings: MOSS 2007, windows 7, outlook 2007.

  • Please help! I defragged my hard drive and now Illustrator CS6 is trying to open all of my complex Illustrator files with a "Text Import Options" box as if they are text files, and they are not opening!

    Please help! Illustrator CS6 started trying to open all of my complex.ai files with a "Text Import Options" box as if they were text files, and they are not opening!  Help!

    Hi Monika,
    I have spent the last two or three days trying to do what you suggested.  I uninstalled Adobe 6 from Windows.  Some files that CS6 placed on my system during installation remained, including fonts and .dll files.
    I had to abandon the Cleaner Tool you suggested because in one screen it allowed me to specify removing CS6 only, but on the following screen it only gave on option to remove ALL Adobe programs.  I could not do that because I didn't have the serial number handy for CS3 in case I want to reinstall it at some point.
    I tried to get technical help with the Cleaner Tool problem but no definitive help was available, so I reinstalled CS6 again without having the benefit of the Cleaner Tool.  I tried to get the serial number for CS3 so I could use the Cleaner Tool but spent 2 wasted hours in chat.  Even though I had a customer number, order number, order date, place of purchase, the email address used AND 16 digits of the serial number, in two hours the agent couldn't give me the serial number.  After two hours I had nothing but instructions to wait another 20 minutes for a case number.
    Illustrator CS6 is still trying to open some backups as Text and otherNone of the problems have been fixed.  I have tried to open/use the .ai files in CS6 installed on another system and am getting the same result, so I don't think the software was damaged by the cleaner.  The hard drive cleaner is well-known and I've run it many times without any problem to previous versions of Illustrator or any other programs.
    When I ordered, the sale rep promised good technical support and gave me an 800 number, but after I paid the $2000, I learned that the 800 number she gave me doesn't support CS6 and hangs up on me.  Adobe doesn't call it a current product even though they just sold it to me about 3 weeks ago.
    Would appreciate any help you experts can offer.  If I can't solve this, the last backup I can use was from June and I will have lost HUNDREDS of hours of work and assets that I cannot replace.
    Exhausted and still desperately in need of help...

Maybe you are looking for

  • Jabber clients and phone control

    Hello All This may be a stupid question but I was speaking with a Cisco pre-sales engineer about a POC. Basically the client wants to try out unified comms with jabber. The currently have a cucm cluster and are going to connect to a new POC cluster c

  • Migrating SQL Script to stored procedure...

    I created a SQL script file to run in SQLPlus to generate a fixed-format text file (See EDI_PrepForSend below) How do i do the same thing in a stored package/procedure? Can I utilize the script I already have working? I need to do it in a stored proc

  • Knowledge Warehouse Installation

    Hello Experts, I am a beginner to KM/KW. I have a few very basic questions which i am not able to understand. Firstly, what is the difference between KW and KM. is KW a Subset of KM. basic difference.. Secondly,  Is there any document available which

  • Greyed out apple id in settings hence unable to switch between ID's

    hi all, I have just murchased my second ipad and after seiiting up i have decided to create a seperate account for the kids,however my issue is that when i go to the ID in the settings menu it is greyed out. its not blocked via restrictions hence uns

  • Organizing photo library by picture date (iPhone 3G)

    When ever I sync a folder into my iPhones photo library it automatically organizes the pictures by name. Is there a way the change this so it is organized by picture date instead.