Error in code of relative navigation

Hi Experts,
I am using relative navigation for the first time. Dont know why i am facing the following error while I am typing the method for relative navigation in the component controller of my project:
"The method navigateRelative(String, int, String[],WDPortalNavigationMode, String,String WDPortalNavigationHistroyMode, String, String, Boolean, Boolean) in the type WDPortalNvigationModenot applicable for the arguments (String)".
The method defined has return type "string".
Were m I going wrong here, can anyone help me with this??
The code I have keyed in the component controller is
WDPortalNavigation.navigateRelative("ROLES://portal_content/Kmaithani/java_local_testztestrfc_test_kmaithani_ztestrfc_ZtestrfcApp");
Moreover i read that we have two additional parameters "levelsUp" and "path" which we have to feed in the same code. can you please tell me how n what values we have to put in for these two parameters? Do we have to simply append these values in the above code?
Please help me out with the issue.
Regards,
Kaustubh

HI
May be bez of you are not passing correct parameters
follow this code which is running on my side
WDPortalNavigation.navigateAbsolute("ROLES://portal_content/com.yash.re.pocre/com.yash.re.portfoliomanagement/com.yash.re.overview", WDPortalNavigationMode.SHOW_INPLACE, WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,"");
Thanks

Similar Messages

  • Relative navigation code required

    Hi Experts,
    I posted earlier a query on how to integrate an ABAP aplication with JAVA appliacation. The solution suggested by many experts was to use "relative navigation" in order to integrate the applications.
    Now my JAVA application is a simple questionair which is called upon by an ID. When this questionair is saved, it gets saved corresponding to that ID. All together the ID plays an important role along with some other paramenters.
    The question here is that with this "relative navigation" method, how can I accept the parameters that are being passed to me by the ABAP application? Can you please help me with the code I have to type in order to accept the parameters? Right now I have the navigation plugs to switch over to my aplication(JAVA). Is it possible to accept parameters using a navigationplug??
    Regards,
    Kaustubh

    Got the code.
    Regards,
    KM

  • An Error Occurred While Processing Your Request We're sorry. While processing your request, we encountered a system-related error. Your request was not processed. Error ID Code: b7bc5afa-ce52-434b-bfb6-3fb086b77a23

    Every time i log out of my Bank email after getting a copy of transactions, I get the following:
    An Error Occurred While Processing Your Request
    We're sorry. While processing your request, we encountered a system-related error.
    Your request was not processed.
    Error ID Code: b7bc5afa-ce52-434b-bfb6-3fb086b77a23
    If the error continues or you need to contact support, please provide them with the Error ID Code above.
    That's what I am doing. contacting support.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • When i try to open itunes its showing error 7 code 193

    when i try to open itunes its showing error 7 code 193. it wont let me open it at all. i dont want to lose my music. i did the repair option already and it did not work.

    That article has been withdrawn.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If the advice above doesn't resolve things you could try this alternate version:
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    which is a 64-bit installer for the 32-bit version of the core application, similar to previous 64-bit releases.
    Or roll back to the previous build:
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    tt2

  • Mac OS Error Result Code 12082

    Can anyone at all shed some light on this? Recently have been getting an error message when burning DVDs that says "Could not record the disk because of a Mac OS Error: Result Code 12082". OS is 10.3.9, error occurs on a 20" G5 iMac.
    After searching through all the error code listings I can find none that have any info on that one, so would like to throw it out there for assistance.
    Thanks
    20" G5 iMac   Mac OS X (10.3.9)  

    Hello Precise,
    I found this on Roxio's support:
    Mac Os X Error 18775
    sorry if that is not related to your problem,
    littleshoulders

  • Error: Unable to find matching navigation case

    Hi all, after I wrote this thread:
    ui:include if I pass a variable, some one can tell me some tips?
    I do some step forward and now the application returns this error:
    Unable to find matching navigation case with from-view-id '/include.xhtml' for action '#{stiliPortaleController.prepareEdit}' with outcome 'logic.action(WEB-INF/jspf/stiliPortale/Edit.xhtml)'
    Can some one help me?
    The include.xhtml is on "web root" and the second page "Edit.xhtml" is on WEB-INF/jspf/stiliPortale/Edit.xhtml... the strange thing (for me that I'm newbie) is that I have these two method:
         public String include_page(){
    String value="WEB-INF/jspf/stiliPortale/List.xhtml";
         setPageIncluded(value);
         return "include";
    public String action(String value)
    setPageIncluded(value);
    return "include";
    and the first method works properly the second nope!
    The difference is that the first method is called in a JSF page, the second in a managed bean!
    What shoud I do?
    Thank you for your help!

    As usual I continued to search the solution of my problem and I find something about the Fluent navigation.
    Now I add in my faces-config.xml this code:
    <navigation-rule>
    <from-view-id>/include.xhtml</from-view-id>
    <navigation-case>
    <from-action>#{stiliPortaleController.prepareEdit}</from-action>
    <from-outcome>logic.action('WEB-INF/jspf/stiliPortale/Edit.xhtml')</from-outcome>
    <to-view-id>/include.xhtml</to-view-id>
    </navigation-case>
    </navigation-rule>
    ...and now the error disappeared but... the page doesn't change!
    The code is this, index.xhtml I have:
                        <h:commandLink action="#{ logic.action('WEB-INF/jspf/stiliPortale/List.xhtml') }" value="Show All StiliPortale Items"/>
    ...and it's work recalling this method in logic.class:
    public  void setPageIncluded(String pageIncluded)
    this.pageIncluded=pageIncluded;
    public  String action(String value)
            setPageIncluded(value);
        return "include";
    ...and in include.xhtml I have this code:
    <ui:include src="#{logic.pageIncluded}"/>
    ...and, as I said, It works properly because the application open the page include.xhtml included the List.xhtml.
    Now the problem is the in the List.xhtml I have this link:
                                <h:commandLink action="#{stiliPortaleController.prepareEdit}" value="#{bundle.ListStiliPortaleEditLink}"/>
    ...and in StiliPortaleController.java I have this method:
        public String prepareEdit() {
            current = (StiliPortale) getItems().getRowData();
            selectedItemIndex = pagination.getPageFirstItem() + getItems().getRowIndex();
    return "logic.action('WEB-INF/jspf/stiliPortale/Edit.xhtml')";
    ...I think the problem is that when I recall the method action the second time it initialize a new logic object and the include.xhtml take the variable from the first object! Could it be correct?
    If it is correct, how can I resolve this new problem?
    Thank you for your help!

  • Lightroom - Installation Error - Exit Code 7

    I was instructed to upgrade most apps to cc2014 editions.
    Most have been successful although for some reason Creative Cloud says I have no apps installed at all now, however, the main problem I am having is that lightroom will not install, I am only using Adobe Creative Cloud as an installer (not third party as it states).
    I get the following error:
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s)
    ----------- Payload: Adobe Photoshop Lightroom 5 5.5.0.0 Adobe_Lightroom_x64.msi_5.5 -----------
    ERROR: Error 1714.The older version of Adobe Photoshop Lightroom 5.5 64-bit cannot be removed. Contact your technical support group. 
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1714.The older version of Adobe Photoshop Lightroom 5.5 64-bit cannot be removed. Contact your technical support group. 
    ERROR: Third party payload installer Adobe_Lightroom_x64.msi failed with exit code: 1603
    I have searched through for some solutions including deleting temp files etc but the problem remains.
    Can anyone help?
    Thanks in advance
    Chris.

    I have fixed this issue, if it helps anyone in the future I used this:
    Microsoft FixIt utility at http://support.microsoft.com/mats/program_install_and_uninstall/en-us to remove the remaining entries for Photoshop Lightroom.
    Checked in Programs and Features (from the control panel) that there was nothing Lightroom related left, make sure you check under A for Adobe and L for Lightroom.
    Reinstall from Creative Cloud, hopefully this will work for you.

  • HT201210 iphone 4s stopped in middle of update (via wireless).  apple logo and usb picture appeared on phone. When i plugged in to computer, indidcated I would have to restore. in the middle of restoring, i got a "unknown Error" (1) code and the apple id

    iphone 4s stopped in middle of update (via wireless).  apple logo and usb picture appeared on phone. When i plugged in to computer, indidcated I would have to restore. in the middle of restoring, i got a "unknown Error" (1) code and the apple id and usb picture are frozen on screen. Anyonw know what to do? 

    Hello Maxayla,
    It sounds like you are getting error code 1 when you were attempting a restore. I would use these troubleshooting steps from the following article which mentions that error code:
    Resolve specific iTunes update and restore errors
    http://support.apple.com/kb/ts3694#1
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the error message when you update or restore, contact Apple support.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Error -5000 (No Description) Relating SAP Documents

    I have created a Purchase Order using the DI API and want to create and relate a Goods Receipt PO back to that Purchase Order.  I can create both docs without fail but as soon as I try to relate my GRPO line item back to the PO I receive an error -5000 with no description. 
    My code to relate the docs:
    docGRPO.Lines.BaseEntry = Convert.ToInt32(poEntry);
    docGRPO.Lines.BaseType = Convert.ToInt32(Constants.PURCHASE_ORDER_OBJ_TYPE);
    docGRPO.Lines.BaseLine = baseLine;
    I have made sure the items on both docs have the same code, currency, rate and quantity but still no luck.  The BP is also the same in both docs. Are there some other restrictions that are stopping me from relating my 2 docs to each other?

    Hi David,
    As a general rule: What you can do through DI API is the same or less than what you can do in the application.
    E.g. when you change the item code in the application, you loose the connection between that line and the base document (though the remark is not updated...).
    I found that currently you apparently can only set the item description to ""; I am not sure whether or not this is a bug.
    Still you could use the "Free text" field - or a UDF to store the information you would like to be in a particular line...
    If this does not help you, please post some more code so that we can find the problem.
    Regards,
    Frank

  • Error in code generation for deleting table BUT000_TD

    Hi,
    Did anyone encounter this error while working on EEWB ?
    I created the project extension via EEWB and completed the wizard setting with the package (dev. class) value as $temp as I wanted to test it locally.
    One of the errors, that I got is:
    Error in code generation for deleting table BUT000_TD
        Message no. DA464
    Diagnosis
        This error message indicates that internal inconsistencies exist.
    Procedure
        Please consult SAP.

    Hi,
    As I mentioned in my previous post kindly check the consistency of the structure BUT000_TD.
    Regards,
    Sudheer.

  • "Error Result code = -43" AND "Audio file not found"

    In Garageband I was trying to  click Join, but kept getting "Error Result code = -43"
    What does this mean?
    Also, I thought saving the file and restarting Garageband would help, but upon re-opening the program BIG problem: the file (just this one, others are opening fine) has this error message upon opening "Audio file “07 I See the Light.aif” not found!"

    mcgregorsgal wrote:
    so do I have to basically start over?
    for that one recording, it looks like it.
    the error -43 is a system level error, so i HIGHLY doubt this will help, however you can ctrl-click the project file, choose Show Package Contents, open the media folder and preview any audio files in there to see if the missing file is there, but in all likelihood, you will need to re-record it

  • Error : COmpany code does not exist or has not been fully maintained

    Hi ,
    I tried creating a material with industry sector : mechanical , material type : raw material.
    i selected basic data 1 and 2 view or MRP 1 view for views , i gave plant as SUJA and storage location value S001 ( plant and stor loc i have created in the company code 2001)
    but i get this error COmpany code 2001 does not exist or has not been fully maintained..
    I created COMPANY CODE using SPRO - Entreprise structure --definition -  financial accounting --define , copy , check , delete company code..
    kindly suggest me the solution for this error..

    Hi,
    Your company code not activated for material management. Few pre-requisites to create material and one is to activate company code for material management
    Please activate in T.code: OMSY,
    [For example: For Fiscal year variant K4]
    In OMSY steps, u have to enteru2026u2026u2026..
    Company Code (enter your company code name 2001)u2026u2026u2026u2026u2026.
    Company Name..
    Fiscal Year of Current Period 2009
    Current period (posting period) 03( )
    Fiscal year of previous period 2008( will come automatic)
    Month of previous period 02( will come automatic)
    Fiscal year of last period of previous year 2008
    Last month of previous year 12
    Allow Posting to Previous Period (Back posting)
    Disallow back posting after a change of period
    Now create material with T.code; MM01
    Regards,
    Biju K

  • Can you Ignore Error Response Code in HttpUrlConnection?

    I have a problem with a HttpUrlConnection object throwing an IOException when it gets an HTTP Error Response code. Especially when there is an actual response from the server sent back that has more details in it that are actually helpful.
    I would like to just tell the HttpUrlConnection ot ignore HTTP error responses and just pass along the page or data that was returned instead. I need to handle this myself.
    The reason if it matters, is I am sending SOAP Envelopes, and if the Web Service doesn't like it, it will send an HTTP 500 Response Code, but it also sends a response SOAP Envelope that tells me exactly what is wrong.
    Right now to get this response I have to use a Sniffer, or worse since it is HTTPS (ssl) i have to use the jvm's SSL debug mode, and pull the response out of the hex code.
    I couldn't find anything about this, so I am afraid I am SOL, just hoping that there might be an obscure "feature" or "property" that can deal with this, that I can't find.
    ** 10 Duke Dollars to first person to provide a solution that works **

    Just call the getErrorStream() method to read the error response. Eg.
    HttpURLConnection conn = null;
    try {
      conn = (HttpURLConnection)
        new URL("http://www.google.com/givemea404").openConnection();
    } catch (Exception e) {
      InputStream in = conn.getErrorStream();
      int i = in.read();
      while (i != -1) {
        System.out.print((char) i);
        i = in.read();
    }

  • Error- "Tax code B0 country IN does not exist in procedure TAXINN"

    Hi to All,
    I'm working on a Import PO. While doing MIRO for planned delivery cost, I'm getting an error "Tax code B0 country IN does not exist in procedure TAXINN"
    I've assigned the Tax code to company code, but still I'm not able to solve this problem. Could anybody tell me the areas in which I may have made the mistake?
    Thanks & Regards,
    Piyush

    Hi Piyush
    You assign your tax code to company code at IMG--> Logis General --> Tax on Goods Movemnt --> Basic Settings --> Calculation of excise duty -> Condition type excise determination --> Maintain Tax code to country code
    If still problem is not resolved you maintain the all rates to 0 in FTXP of this Tax code.
    Regard
    Vivek
    -- Reward if helpful !!

  • SQL Server Agent Log showing errors [298] SQLServer Error: 10061, A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL

    Hi All,
    I have started receiving this error in the logs for the last 10 days and the Schedules Jobs for the database have stopped running. My MS CRM application is working fine.
    Can anyone guide me what could be the problem.
    Date                      17/4/2014 2:04:20 PM
    Log                         SQL Server Agent (Current - 17/4/2014 2:01:00 PM)
    Message
    [298] SQLServer Error: 10061,
    A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct
    and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online. [SQLSTATE 08001]
    Date                      17/4/2014 2:11:55 PM
    Log                         SQL Server Agent (Current - 17/4/2014 2:01:00 PM)
    Message
    [298] SQLServer Error: 10061,
    A network-related or instance-specific error
    has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information
    see SQL Server Books Online. [SQLSTATE 08001]
    Date                      7/4/2014 11:00:31 AM
    Log                         SQL Server Agent (Current - 17/4/2014 2:01:00 PM)
    Message
    [298] SQLServer Error: 10061,
    A network-related or instance-specific error
    has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information
    see SQL Server Books Online. [SQLSTATE 08001]

    Check this link
    http://social.msdn.microsoft.com/Forums/en-US/906da9b5-2482-468c-a424-ae099da2d96b/sql-server-agent-service-account-error?forum=sqlsetupandupgrade
    Regards, RSingh

Maybe you are looking for