Calling a Web Dynpo appl from POWL gives error

Hi,
I have created a custom webdynpro application integrating  with POWL using the document provided by Saurav Mago .Refer the link below
But I get the following error 'Parameter APPLID contains an invalid value.
'[Integrating POWL with WebDynpro ABAP|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60f1d5ee-84ab-2c10-ce97-97dfd89bc238?quicklink=index&overridelayout=true]
I have searched  SDN , debugged my application and checked the configuration and compared with the standard powl components, as well. But I am not able find out what the issue is.
I have tested the standard webdynpro apps and my app as well , services are active , the break point also stops in the window/view. But not sure what I am missing.
Can you please let me know if you got any idea regarding this. Appreciate your response.
Thanks
Saujanya

Hi Thomas,
Thanks for your response. Please find
How are you building the URL to test?
I am using the custom webdynpro application to test it . When I test it using the standard POWL, it works. But if I test from my custom webdynpro application , it gives the dump with this error message.
Are you sure you Application ID is correct?
If it works with the standard, I think the config is right
I have created POWL appli, type , , powl query , mapped the query to the powl applid, activated it, mapped query to the powl type.
Declared the powl_ui_component in the component usage , view container in the view and  an out bound plug to the view with parameters and code as mentioned below :
code :
wd_this->fire_out_plg(
    applid =  'ZTEST_APPLID'                         " string
    forallq =   ''                                   " powl_xflag_ty
    qname =  'ZPOWL_QUERY'                      " powl_query_ty
    qselpara =  ''                        " string
    refresha =  'X'                       " powl_xflag_ty
    refreshq =  ''                        " powl_xflag_ty
    srvgroup =  ''                       " powl_xflag_ty
    powldeltarendering = 'X'
Can you share the full URL you are testing with here?
http://cis0440.g2t1.XXXgen.com:8040/sap/bc/webdynpro/sap/ztest_applid
Please let me know if I am missing something.
Thanks
Saujanya

Similar Messages

  • Calling a Web Dynpro Application from POWL feeder class

    Hi,
    I know this question is asked before but never answered, but I try again......
    I have a own POWL feeder class where I defined a button in method IF_POWL_FEEDER~GET_ACTIONS.
    I know that this action can be handled in method IF_POWL_FEEDER~HANDLE_ACTION.
    When pressing the button I want do call another web dynpro application.
    How can I do this? -> Any Example Coding?
    Thank you and best regards, Edgar

    Hi Vineet,
    it works, thanks a lot!!!!  Best Regards, Eddy
    P.S.: Here is the coding for triggering the event and passing parameters for the selected POWL table line:
    METHOD if_powl_feeder~handle_action.
      DATA: ls_parameter TYPE powl_namevalue_sty.
      DATA: lt_flights TYPE ty_flights.
      DATA: ls_flight TYPE sflight.
      DATA: ls_selected TYPE rstabix.
      FIELD-SYMBOLS: <lt_fligts> TYPE STANDARD TABLE.
      IF i_actionid = 'EDIT'.
    *   Important: this triggers the event
        e_portal_actions-fire_wdevent = abap_true.
    *   Pass parameters to event
        ASSIGN c_result_tab TO <lt_fligts>.
        lt_flights = <lt_fligts>.
    *   Determine the first selected row
        READ TABLE c_selected INTO ls_selected INDEX 1.
    *   Read selected POWL data
        READ TABLE lt_flights INDEX ls_selected-TABIX INTO ls_flight.
        CHECK sy-subrc = 0.
    *   Pass parameters
        ls_parameter-key = 'ACTIONID'.
        ls_parameter-value = 'I_ACTIONID'.
        APPEND ls_parameter TO e_portal_actions-parameters.
        ls_parameter-key = 'CARRID'.
        ls_parameter-value = ls_flight-carrid.
        APPEND ls_parameter TO e_portal_actions-parameters.
        ls_parameter-key = 'CONNID'.
        ls_parameter-value = ls_flight-connid.
        APPEND ls_parameter TO e_portal_actions-parameters.
        ls_parameter-key = 'FLDATE'.
        ls_parameter-value = ls_flight-fldate.
        APPEND ls_parameter TO e_portal_actions-parameters.
      ENDIF.
    ENDMETHOD.

  • I am getting this message when trying to upload an album to Apple from iPhoto - An error occurred when trying to contact the Apple on-line Store. Please try again later!!!

    I am getting this message when trying to upload an album to Apple from iPhoto - An error occurred when trying to contact the Apple on-line Store. Please try again later!!!

    Do you mean trying to purchase an iPhoto book?  Try rebooting and ordering again.  If that fails Boot into Safe Mode, Mac OS X: Starting up in Safe Mode, and try ordering from there.
    OT

  • Calling a web service reference from PL/SQL

    Hello,
    could anyone give me a hint how to call a web service that is defined as web service reference from a PL/SQL page process (PL/SQL anonymous block).
    Many thanks in advance
    Lukasz

    >
    The problem is that I have a PL/SQL page process that processes the result that was returned by a web service (triggered by web-service page process (-; ) and <b>need to call it again transparently for the user</b>. If there is a way to execute a page process from this PL/SQL block the question would be answered as well.
    >
    Same parameters and repeating at pre-defined time intervals? If yes, use Javascript as described here.
    Regards,

  • Calling a Web Service in a SSRS Report - Error Converting String to Generic List of Strings

    Hello,
    I am using SSRS version 2005 and am trying to call a web service to retrieve data for a SSRS report.  I've looked on Google and MSDN for the past 2 days and have exhausted all options.  Here are the details...
    The web service method I am calling accepts 4 parameters...
    Parameter 1 = Generic list of strings
    Parameter 2 = DateTime
    Parameter 3 = Int
    Parameter 4 = Int
    I have created a function (on the CODE tab in report properties) in my report that gets passed a comma delimited string and returns a Generic List of Strings that I use to format Parameter 1.  The code for the function is as follows:
    Public Function GetIDs(ByVal IDList as String) As List(Of String)
       Dim stringArray() = IDList.Split(",")
       Dim genericList As New List(Of String)(stringArray)
       Return genericList
    End Function
    I am passing a string to the function that looks something like this:
    "1,2,3,4"
    When I try to PREVIEW the report, I get an error that reads:
    "There is an error on line 0 of custom code: [BC30002] Type 'List' is not defined"
    I've tried changing the function declaration to pass back a string array:
    Public Function GetIDs(ByVal IDList as String) As String()
        Return IDList.Split(","c)
    End Function
    This returned the error (from the web service): 
    "Error in line 5 position 22.  Expecting state 'Element'.. Encountered 'Text' with name ", namespace"
    I have also tried changing the function declaration to pass back an array: 
    Public Function GetIDs(ByVal IDList as String) As ARRAY
    This also produced the error:
    "Error in line 5 position 22.  Expecting state 'Element'.. Encountered 'Text' with name ", namespace"
    I know that this particular web service method DOES work because it is coded to accept nulls in the first parameter.  So... when I call the method with nulls, it returns a recordset of ALL data (this works fine).  Only when I pass a string to the function (which "filters" the recordset by the ID list), does the error occur.
    Is SRSS limited with respect to VB.NET code so that the List(Of String) statement is not recognized?  Has anyone done this before and if so, how did you convert a comma delimited string to a Generic List of Strings within a function in the SSRS report?
    Any info would be greatly appreciated.
    Thanks!
    Bob

    Hi Bob,
    By default, in custom code, in order to use a variable or function that is not in the "System" namespace, we need to provide the full name.
    In this case, the full name of the "List" is "System.Collections.Generic.List"
    So, to solve the issue, please use the following code:
    Public Function GetIDs(ByVal IDList as String) As System.Collections.Generic.List(Of String)
    Dim stringArray() = IDList.Split(",")
    Dim genericList As New System.Collections.Generic.List(Of String)(stringArray)
    Return genericList
    End Function
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • Just one needed particular GoDaddy web hosting account button link gives error in FF but ok in Pale Moon and IE

    Greetings:
    I've searched but am unable to find a clue. Using Win 7 Home Premium (updates current) on HP DV3T-2000 64-bit.
    Recently (possibly after upgrading to FF 14), on godaddy.com on my web hosting product page, clicking the 'Launch' button throws a godaddy error pg. All other launch buttons operate normally, as do 'all' the buttons (including the tricky one) in Pale Moon and IE.
    I have several times cleared the cache and deleted all g-d cookies through options - show cookies; then closed the browser and restarted the machine. I then disabled all add-ons, tried the above again, no difference so have reactivated the plugins (which were and are current as to updates).
    Here is the text from the godaddy error pg:
    "Error
    There was an error in the application. We apologize for the inconvenience. This error has been logged and reported.
    Click here to go back to your account list."
    The word above [Click] 'here' usually does not work either. Below is the url from the address bar: (When going to the url on a clean new tab, the error page pulls up without the 'Click here to go back to your acct list' ):
    https://hostingmanager.secureserver.net/error.aspx?aspxerrorpath=/AccountPanel2.aspx
    (However, people without a g-d acct will not be able to navigate to the web hosting product page.)
    Thank you very much for your help.
    PS:
    This list of Installed Plugins was auto-filled into the text box below the question text box. I do have more plug-ins than this in use which I can supply if needed. Thank you again!
    * Shockwave Flash 11.4 r402
    * Adobe PDF Plug-In For Firefox and Netscape "9.5.2"
    * Google Update
    * Shockwave Flash 11.3 r300
    * The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    * NPRuntime Script Plug-in Library for Java(TM) Deploy
    * Next Generation Java Plug-in 10.5.1 for Mozilla browsers
    * GEPlugin
    * 5.1.10411.0
    * NDS Player Plugin
    * npPCShow Plugin
    * Windows Activation Technologies Plugin for Mozilla
    * Logitech Device Detection
    * E-centives Coupon Activator
    * Coupons, Inc. Coupon Printer Plugin
    * Coupons, Inc. Coupon Printer DLL
    * Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    * np-mswmp

    Hi hedera, when you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first) using either of these. While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    If you can't access the relevant domain without it closing, you can edit the domain at the top of the dialog in order to call up a list of its cookies.
    Then try reloading the page. Does that help?

  • Call a dll with an activeX component gives error

    Hello all,
    My program consist of:
    - Main program
    - DLL's
    How it works:
    The main program is the interface for the user, this main program call's several dll's
    The problem:
    The main program runs withought problems, but when it call's a dll, which also call's an activeX component, I get an error.
    I then made a executable from the dll which then works ok, no problem.
    When I click the retry it runs ok, but when I call it again I get the message again.
    The message does allways accur, but still very often
    Conclusion:
    The error message only comes when I call it as a dll, when the dll is standalone executable no problems occur.
    Below you can see how I call the dll:
    Can someone please help me with this problem?
    greetz,
    Bart

    Hello Bas,
    I have included the vi which calls de dll(executedll.vi) en the dll in VI form(plugin.vi & plugin.lvproj).
    As you can see the dll calls the canconfigurator activex component.
    And closes the activex component when done.
    This plugin will be called several times in the test enviroment.
    gr,
    Message Edited by darkxceed on 02-12-2010 04:33 AM
    Message Edited by darkxceed on 02-12-2010 04:33 AM
    Attachments:
    ExecuteDLL.vi ‏12 KB
    plugin.lvproj ‏8 KB
    plugin.vi ‏31 KB

  • "iCloud Restore from Backup" gives error "Incorrect Apple ID or Password"

    I have an iPhone 5 (iOS 6.1.2) that was just replaced at the Genius Bar today due to some intermittent camera and home button issues.
    Everything was normal when starting up the newly exchanged phone that they gave me. It gets through the activation step in the startup process and when I get to the screen to select "Restore from iCloud Backup" and enter my Apple ID and password it instantly spits out an alert that says: 
    Incorrect Apple ID or Password
    Try another Apple ID
    (  OK  )
    I have entered, what I know to be, the correct username and password now 10+ times and it gives me the same message.  I know it's correct because I am able to login to icloud.com, appleid.apple.com, the app store on my iPad normally with the same login credentials and everything works.  But something about the startup screen is not accepting my username and password.  They fishy thing about it is that it doesnt seem to check for the server, it just seems to tell me its incorrect before even taking the time to check whether it's incorrect or not.
    Naturally, the next thing I did was a DFU restore of the phone to make sure it wasnt a software issue and that it had the lastest software update.  All the same results.  If I go down the path of "Set up as new iPhone" it activates normally and then I can even log into iCloud normally from inside the OS once I've gotten there.  That, however, does not help me get my backup text messages, photos, apps, app data, etc.
    Anyone else having this issue? I never usually have issues with my iPhone/iPad and this one is especially infuriating.
    Any help/information would be much appreciated.

    Freddie,
    I associated my Apple ID in their system as an Apple Reseller account because I was working for a third-party Apple Authorized Dealer a few months ago.  After that point, this is when I noticed this happened.
    Tier 2 of AppleCare told me they believe this is the reason I've been having problems being able to restore because Apple Reseller accounts are not "iCloud Eligible"
    I replied and told them it was ok for them to remove my account as reseller status and after multiple attempts to reach the advisor assigned to my case, he stopped responding.
    I fear I may be out of luck.  Are you by any chance an Apple reseller or associated with an Apple reseller?

  • Calling a Web Dynpro application from a web application

    Hi everyone, I've got a problem I hope someone can help me resolve.
    What I wanna do is to show a login form, which is part of a J2EE web application (contained in a SAP Web AS), an after the user submits the required information, I have to redirect the user to a Web Dynpro application, which is contained in the same Web AS, but I have to redirect this user using single sign on.
    I'm not sure about what I have to do, I'm new in these technologies, I think I need to use UMFactory, but I have made some investigation and I'm not so sure about what I have to do yet, can anyone give me a hand with this?

    Hi Joel,
    Please follow the documents below
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/80fbc690-0201-0010-1aba-93d5c8232b4a
    http://help.sap.com/saphelp_nw04s/helpdata/en/b0/4d2b418a3edb2be10000000a1550b0/content.htm
    Hope this helps.
    Regards,
    Kiran Kandepalli.

  • BOE XI 3.1 SP3 Webi on SAP BW Query gives errors

    Fri Sep 24 21:01:17.061 ThreadID<2844> SAPMODULE : RFC function call MDDataProviderBW.GetHierarchies returned E
    Fri Sep 24 21:01:17.061 ThreadID<2844> SAPMODULE : Error info:
         Message Class               BRAINOLAPAPI
         Message number               12
         Message                    Unknown error when executing MDX
         Application log number          
         Application log serial number     0
         Message 1               
         Message 2               
         Message 3               
         Message 4               
         Parameter Name                    
         Lines in parameter          0
         Field in parameter

    Hi Ingo,
    I'm Experiencing the same issue described here. My situation is the following. I have a webi report on top of an OLAP universe where the bex queries were running in BW 3.5. Later the client upgraded the system to BW 7.01 SP6 and when trying to re run the webi report it started to fail. I then activated to logging to see what the problem could be and found this error. It looks to me that a dimension is giving the error. Any tips to understand this log?
    Thu Nov 25 13:05:47.703: 5564: SAPMODULE: STRUCTURE: Error info:
         Message Class               BRAINOLAPAPI
         Message number               12
         Message                    Error desconocido en la ejecución MDX
         Application log number          
         Application log serial number     0
         Message 1               
         Message 2               
         Message 3               
         Message 4               
         Parameter Name                    
         Lines in parameter          0
         Field in parameter          
         System                    B03CLNT222
    Thu Nov 25 13:05:47.703: 5564: SAPMODULE: STRUCTURE: RFC function call MDDataProviderBW.GetHierarchies failed.  Error desconocido en la ejecución MDX
    Thu Nov 25 13:05:47.734: 5564: SAPMODULE: STRUCTURE: RFC function call MDDataProviderBW.GetHierarchies failed.  Error desconocido en la ejecución MDX
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Created
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount raised to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount raised to 3
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount lowered to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount lowered to 1
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Created
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Refcount raised to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount raised to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Refcount raised to 3
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount lowered to 1
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Refcount lowered to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Refcount lowered to 1
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 344 (7D1A68F0): Created
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 344 (7D1A68F0): Refcount raised to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount raised to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Refcount raised to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 344 (7D1A68F0): Refcount raised to 3
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount lowered to 1
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 343 (7D1A4370): Refcount lowered to 1
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 344 (7D1A68F0): Refcount lowered to 2
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 344 (7D1A68F0): Refcount lowered to 1
    Thu Nov 25 13:05:47.734: 5564: SAPMODULE: No Value: Error getting hierarchies for dimension (Cube ZDU_O06/QRY_VAR_PENDING): Error desconocido en la ejecución MDX
    Thu Nov 25 13:05:47.734: 5564: MEMORY: StringMessageInsert: Instance 342 (7D1A43F0): Refcount lowered to 0
    The BOE Platform is BOE XI 3.1 SP2 FP2.7
    Any ideas of what could be?
    Kind regards,
    xtian
    Edited by: xtianw on Nov 25, 2010 5:46 PM

  • Airplay from ipad gives error on AppleTV 2. Says "an error occured loading this content. Try again later"

    I have been unable to use our AppleTV 2 for a few weeks now. I can't figure out what is wrong. I am unable to play anything via Airplay when trying to play videos from our iPad. I get the error "An error occured loading this content. Try again later". This happens only when trying to play videos from our iPad, but not videos from my iPhone. I am also unable to stream videos from our Netflix instant queue. I've tested the network, which is fine. The iOS on the iPad is up to date, as is the AppleTV 2. Any other suggestions?
    update: i unplugged the apple tv for 60 seconds and its working now. 

    The video files are mostly M4V not MP4. I did find that if I start playback and select the ATV3 from inside iTunes, the movie will play fine. However, this is not optimal as the iMac is in another room.

  • Import from scanner give error message "This file already exists in this catalogue"

    I can import from the scanner occasionally, but often times get this error message.  " this file already exists in this catalogue" and the scanned picture is discarded.
        I see others have had it as well, but no solutions were posted. I'm running Photoshop elements 11 with all current updates.

    Thanks for the reply. My Image wasn't in a version set however.   I scanned a new photo which was successsful. I then scanned a second photo different from the first, which failed.  I think possibly the software for my HP scanner is at fault, since it always names the scans as image1.jpg. It doesn't give an option to increment successive scans to a different name which probably caused the problem.

  • Opening two workbooks from Menu gives error

    When ever i try to open a workbook from the Menu while another workbook is opened already.
    I get an Business Explorer error saying "<internal error> Calling in to BW server failed"
    I click on OK and then open it second time opens the workbook.
    BW 3.5 Version
    GUI 710
    Thanks,
    Kumar
    Edited by: kumar v on Nov 12, 2009 2:54 PM

    Hi,
    Can some one reply on this thread.
    When ever I try to open a second workbook from the Menu, I get the "<internal error> Calling in to BW server failed"
    Please advise.
    Thanks & Regards,
    Kumar

  • Jaas ( web.xml) login with uix gives error

    I configured a jaas login (web.xml) with my jheadstart project like the jsp example ( Secure BC4J Applications with Oracle9i VPD and Oracle 9iAS JAAS ) this works fine, I get a login box and after i log in, the oc4j server gives a error.
    Error in CreateMarlinUIXPage.createUITree: no protocol: /uix/HomePage.uix
    what can this be, the jsp example works fine

    here is my web.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <display-name>sicma</display-name>
    <description>sicma helpdesk applicatie</description>
    <servlet>
    <servlet-name>sicmaController</servlet-name>
    <servlet-class>oracle.jheadstart.process.controller.JhsHttpServletController</servlet-class>
    <init-param>
    <param-name>cle-service-descriptor</param-name>
    <param-value>sicmaService.xml</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>sicmaController</servlet-name>
    <url-pattern>/Startsicma</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>startController</servlet-name>
    <servlet-class>oracle.jheadstart.process.controller.JhsHttpServletController</servlet-class>
    <init-param>
    <param-name>cle-service-descriptor</param-name>
    <param-value>startService.xml</param-value>
    </init-param>
    <security-role-ref>
    <role-name>administrator</role-name>
    <role-link>administrators</role-link>
    </security-role-ref>
    </servlet>
    <servlet-mapping>
    <servlet-name>startController</servlet-name>
    <url-pattern>/Start</url-pattern>
    </servlet-mapping>
    <resource-ref>
    <res-ref-name>jaas</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Application</res-auth>
    </resource-ref>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>jaas</web-resource-name>
    <url-pattern>/</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>administrators</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>jazn.com</realm-name>
    </login-config>
    <security-role>
    <role-name>administrators</role-name>
    </security-role>
    </web-app>

  • Call ggsci using batch file from windows- get error

    i create a script to use ggsci, start manager, extract and replicat.
    i have success doing this in my linux.
    here is one of my script : start_ext1.sh
    cd /u01/app/oracle/ggs
    ./ggsci <<EOF
    start manager
    start ext_s
    exit
    EOF
    clear
    i have an error when i do this using batch file from windows.
    here is the batch file :
    @echo off
    cd C:\putty
    plink.exe -ssh -2 -P 22 [email protected] -pw oracle "./start_ext1.sh"
    every time i try to enter ggsci when i run that batch file, i get this error :
    ./ggsci: error while loading shared libraries: libnnz10.so: cannot open shared object file: No such file or directory
    i didn't get this error when i run the script in linux.
    is there anybody can help me?
    thanks a lot!

    problem solved!
    add : . ./.bash_profile before enter ggsci.
    it's worked! :)

Maybe you are looking for

  • Unable to view data in the InfoCube as well as in the query

    Hi all, I have done the Init Load into an InfoCube 0Pur_c01. The Monitoring status is Green. I checked the Qm status which is green. There is data in the PSA. However, I am unable to view data in the InfoCube. Also when I execute the report I am rece

  • Twist S230U, should I do Win 8.1 upgrade

    I read in these forums of all the problems people are having after doing the 8.1 upgrade.  Does every one who upgrades end with problems or are most upgrades successful? To upgrade or not to upgrade.

  • How do I get my iPhone4s back to iOS 5

    I updates my iPhobe4s to iOS6. Now my iPhone does not work correctly with my handsfree telephone in my ca (Mercedes-Benz W212). How ca i get back my old firmware (iOS) on my phone? Thanks fpr held!

  • How to run the procedure in SQL editor

    Schema Temp, Package Name = Pk_DRmanagement PROCEDURE LoadCardRefundRequests(v_streamer_batch_id IN NUMBER, vDebugLevel IN NUMBER DEFAULT 0, RowsProcessed OUT NUMBER ) I use the following in SQL editor to compile and encounter problem. Can you help m

  • Php / mysql discussion board recommendations

    Most of the discussion boards I've seen on the internet are 1. way more than I need function wise 2. severely bloated 3. difficult to integrate into existing design and database. Like most things, I find it easier 99% of the time to develop my own ap