Not able to open BSP application in Internet

Hi Everyone,
i have a BSP Application which i have put into a tab strip as a link.But users are not able to open the url though they are able to log on to the standard application (cProjects suit 3.1)
this is how i did.
<htmlb:link id        = "Link1000"
            text      = "Company cProjects"
            target    = "_blank"
            reference = "http://hxyz.corp.company.ad:8000/sap/bc/bsp/sap/zzzz_cprojects/default.htm?sap-client = <%=sy-mandt%> " >
</htmlb:link>
can anyone let me know what configurations i need to do so as to make it open in internet outside my company's network.
i checked SICF and application is active.
Regards,
Ajay

Hi Ajay,
This is sample application (overwrite column 7).
Page Attribute:
flights     TYPE     FLIGHTTAB
ovtab     TYPE     TABLEVIEWOVERWRITETAB
wa_ov     TYPE     TABLEVIEWOVERWRITE
Layout:
<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<htmlb:content design="design2003" >
  <htmlb:page title=" " >
    <htmlb:form>
      <%
  clear wa_ov .
  data: temp_bee type ref to IF_BSP_BEE .
  data: wf_text type string ,
  wf_url type string .
  wf_text = 'ABC' .
  CONCATENATE 'http://www.google.com/search?q=' wf_text INTO wf_url .
  CALL METHOD cl_htmlb_link=>factory
  EXPORTING
  id            = 'tv1_1_7'
  reference     = wf_url
  target        = '_blank'
  text          = wf_text
  RECEIVING
  element       = temp_bee .
  move: '7' to wa_ov-column_index ,
  '1' to wa_ov-row_index  ,
  temp_bee to wa_ov-display_bee .
  append wa_ov to ovtab .
      %>
      <htmlb:tableView id                   = "tv1"
                       table                = "<%= flights %>"
                       overWriteDefinitions = "<%= ovtab %>"
                       visibleRowCount      = "10"
                       columnHeaderVisible  = "true" />
    </htmlb:form>
  </htmlb:page>
</htmlb:content>
onInitialization Event:
SELECT * FROM sflight INTO TABLE flights.
Hope this helps.

Similar Messages

  • I have updated my ipad yestarday sicne then i am not able to open any application on my ipad2. some of the application able to open in the page and not able to open all the applications in the second page. Does any one got this type of issue? any sugg?

    i have updated my ipad yestarday sicne then i am not able to open any application on my ipad2. some of the application able to open in the page and not able to open all the applications in the second page. Does any one got this type of issue? any suggestions?

    This problem has been reported a few times. The solution is to install any new App say a free one. This seems to fix whatever has gone wrong.

  • 1st-I was able to log into my account but was not able to open any applications, tried another account and same thing.  was able to log out and restart but now am unable to use mouse.  g5 dual core

    1st-I was able to log into my account but was not able to open any applications, tried another account and same thing.  was able to log out and restart but now am unable to use mouse.  g5 dual core, can't remember the os without seeing it.

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Let us know how far you get, or results.

  • How do I reset Firefox if I am not able to open the application after ending it on the task manager?

    We changed the privacy options on firefox, closed the program, and now we are not able to open it. We have ended the process on the task manager, but it still will not open. We tried to uninstall it but it won't even let us do that. I've read lots of articles on how to reset firefox, but it isn't helpful when i can't get into firefox to try it.

    See:
    *http://kb.mozillazine.org/Browser_will_not_start_up
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    Can you bring up the Profile Manager to create a new profile?
    *http://kb.mozillazine.org/Profile_Manager
    *https://support.mozilla.org/kb/Managing+profiles

  • I am not able to enter the password and also can not able to open any application in my Mac Book Pro;to log in I have to force shutdown.

    Hi
    My Mac book pro is behaving strangely. I am not able to enter the Password and can't open any application/folder. To log-in I have to give forced shutdown. When ever I try to open any application the screen turns grey (some times) and the window pop up " --------- quit unexpectedly".
    I updated the OS too from the available updates but the problem persists. I have reasonable amont of data in it, which definitely I do not want to loose.
    Kindly let me know how can I come out of the above scenario?

    Hi Susan,
    In that case I will recommend that you consult a local technician/IT team and see if there is some network connectivity issue with your machine.
    - Abhishek Maurya

  • Portal not able to access BSP application in ECC?

    HI All,
    We have a BSP application on our ECC system and we have hosted it on Portal using the BSP iView.
    The ECC is behind the firewall and the Portal is available on internet.
    Now when a user tries to access that BSP application through Portal it shows 'Page cant be displayed' page.
    Please guide.
    Regards,
    Sumit Oberoi

    Issue resolved.
    It was a role issue, we assigned the correct role to the user and issue got resolved.

  • Not able to open windows application With Java Runtime .exec class

    Hi,
    We have created a folder with mkdir() function. The folder has some
    text and doc files and i want to open them using java runtime API.
    I am unable to open the files using the syntax
    try {
    Process p=Runtime.getRuntime().exec("cmd /c \ "" + file.getPath());
    p.exitValue();
    catch(Exception e)
    e.printStackTrace();
    This code works perfectly for folders created directly in Win XP without using
    mkdir.
    Also the return values of of class Process is 1 which we understood as illegal thread state. But I still havent got a clue how to fix it.
    Appreciate quick feedback :) Thanks ;)

    First off you're missing a quote (add '+ "\"" after file.getPath()). But the larger problem is that this will attempt to execute these files and they aren't directly executable (you said they're text and document files). Do you really want to execute them?
    If you just want to read them then something like
    BufferedReader ir = new BufferedReader(new FileReader(file))
    would be more appropriate.

  • Not able to connect the application.

    Hi DBA's
    PLease help me to resolve this issue, I am not able to connect the application.
    Actually i changed apps user before becuase of some reasons, now i changed as old to APPLSYS,APPS,APPLSYSPUB by following note.160337.1
    Now i am not able to open the application it is saying invalid username and password before it load the application.
    Kindly help me..
    Best Regards

    Hi Sawwan,
    After giving bellow commands, it was given error that invalid applsys user name provided.
    FNDCPASS apps/apps 0 Y system/clone SYSTEM APPLSYSPUB APPS
    Application Object Library: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    module:
    Current system time is 21-JAN-2009 17:01:30
    APP-FND-02700: Invalid APPLSYS user name provided.
    Concurrent request completed
    Current system time is 21-JAN-2009 17:01:30
    Best Regards,

  • Not able to open Citrix - java error

    Hi,
    When I try to open a citrix application i am getting below error and not able to open the application properly. Please help.
    OS : Ubuntu 11:04
    Firefox version : 6.0.2
    load: class com.citrix.JICA not found.
    java.lang.ClassNotFoundException: com.citrix.JICA
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Applet2ClassLoader.java:252)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Plugin2ClassLoader.java:250)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:180)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:161)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Plugin2ClassLoader.java:687)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Plugin2Manager.java:3025)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Plugin2Manager.java:1498)
    at java.lang.Thread.run(Thread.java:662)
    Exception: java.lang.ClassNotFoundException: com.citrix.JICA
    Regards,
    Deena

    the Java Runtime is not able to open Mozilla browserHow exactly? Do you try to execute Mozilla from Java? Exactly how?

  • Not able to open XML file in the application server..........

    Hi,
    I have downloaded a XML file to the application server.....
    File is created but i am not able to open the file there....
    Plz advice ....how to open it.....
    Regards.

    Use Notepad. Drag and drop in notepad.
    Aman

  • I'm not able to open documents saved from the internet.

    I'm not able to open documents saved from the internet. I'm using a macbook pro en Adobe Acrobat X 10.1.10. I tried: file - export als PDF and save as PDF, none of this works. I always receive a message stating an error and saying that I need to go back to the original file what I did without result. Does anyone have (or had) the same problem?

    What they mean is iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html

  • I not able to open any links in the emails I receive and get an "Error: No associated application could be found" when I click on it. HELP!! What's going on? This happened after I downloaded Chrome and then

    I not able to open any links in the emails I receive and get an "Error: No associated application could be found" when I click on a link. HELP!! What's going on? This happened after I downloaded Chrome and then decided to delete it. 

    I have Lion and I just came across this link and it took care of the problem.
    Jose Antonio Solis
    Re: Lion: Delete google chrome completely include user profile?
    Try deleting:
    ~Library/Application Support/Google
    and
    ~Library/Caches/Google/Chrome

  • Not able to open files through any Application in Mavericks

    HI, Since upgrading to Mavericks, I am not able to open the files/folders through any applications (Photoshop, Open office) or attach any files in Mail or web sites, as these files/folders appear greyed out. I could access those files either by locating them in the Finder and right click 'Open with' or drag and drop those files on to the Application icon on the dock. I could not even attach screen shots for this query. Thanks for your help.

    This occurred only to my login. Apple Support advised me to delete the Finder preference list (
    ~/Library/Preferences/com.apple.finder.plist)  and restart. Since then, it is working fine.

  • Java.lang.OutOfMemoryError: PermGen space Not able to open applications

    Hi ,
    I am facing issue in running the application when I deploy 10 applications successfully to the Integrated weblogic server [in jdev].
    Then after some time I am not able to open any of the application.
    Thanks and Regards,
    Vivek Pemawat

    Set MaxPermSize to a higher value.
    export JVM_ARGS="-Xmx1024m -XX:MaxPermSize=256m"
    https://forums.oracle.com/thread/1140785

  • I am not able to open pdf files from any web through Firefox. Internet explorer opens those pdf files

    I am not able to open pdf files from any web when I use FireFox.
    I am able to open pdf files when I use internet explorer.

    For the settings to check, see the [[opening PDF files within Firefox]] article.

Maybe you are looking for

  • How do you combine two separate paths into one?

    I have two two separate paths that overlap and I want to combine into one path. How do I do that?

  • ITunes 11 does not see my iPhone

    I installed iTunes 11 with software-update and got an error-message (see screenshot, german), nevertheless it was updated. It works fine, but it does not see either my iPhone or my iPad in the list on the left side. There are no devices ... Thanks fo

  • ASSET_MASTER_RECORD_UPDATE

    Hi, We have a requirement to add an additional field in the asset master data. We were able to succesfully add it using a user exit. Unfortunately, when this new field is changed, it is not monitored in the asset history change screen. Our ABAP perso

  • OAMessageRichTextEditor Icons are not rendering

    Hi All, I am using 11.5.10.6RUP and I added an OAMessageRichTextEditor to a messageComponentLayout. I don't see the icons when I run it from JDeveloper. What could be wrong? I see a standard screen with MRTE properly rendered in the same instance tha

  • RedHat AS4 and Oracle 10R2 upgrade - performance issue

    Hi all, As part of our database upgrade project (from Oracle 10.2.0.1 to 10.2.0.3), we decided to upgrade our OS as well (RedHat AS4 from Update 2 to Update 4, 64-bit). We are in testing phase now and having some serious performance issues. These bel