Cannot resovle the Symbol error in UDF - Java mapping - RFC Lookup ?

Hi Friends ,
We are working on Java mapping  -  UDF for RFC Lookup . It is giving the Cannot resolve Symbol for all imported archive java class files even if we give again all imported files in import section of UDF we are still getting the same cannot resolve error  .
We are using SP 12 of XI 3.0 . What could be the reason ?
Thanks.,
V.Rangarajan

Hi,
Can you try to open imported archive in IR and check if the path(folder structure like com.abc.xyz.etc) for classes is same as in import statement in UDF.Since we had experienced the same problem.
Thanks.
Regards,
Shweta

Similar Messages

  • I upgrade my iPhone 4 to iOS 7, but cannot restore the backup "error when restoring iPhone (-1)", anyone know what should I do?

    I upgrade my iPhone 4 to iOS 7, but cannot restore the backup "error when restoring iPhone (-1)", anyone know what should I do?

    That error often indicates a hardware failure.Try restoring a few more times. If it consistently gives you that error, make an appointment at the genius bar to have it looked at.

  • I migrated all data from old PC to new and iTunes successfully transferred to new PC. When I click on a song it says it cannot locate the original. How does one map iTunes file to iMusic to enable play from original files ?

    Subject: Migration
    I migrated all data from old PC to new and iTunes successfully transferred to new PC. When I click on a song it says it cannot locate the original. How does one map iTunes file to iMusic to enable play from original files ?

    Subject: Migration
    I migrated all data from old PC to new and iTunes successfully transferred to new PC. When I click on a song it says it cannot locate the original. How does one map iTunes file to iMusic to enable play from original files ?

  • Error on load: System.IO.IOException: The process cannot access the file : error in event viewer when users want to view documents from this third party deployed scan solution

    Error on load: System.IO.IOException: The process cannot access the file
    '\\server1\SCANSHARED\.pdf' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.File.WriteAllBytes(String path, Byte[] bytes)
       at abc.Scan.Layouts.ICC.Scan.View.Page_Load(Object sender, EventArgs e)
    I faced this  error in event viewer  when users want to view documents from this third party deployed scan solution
    here I have two WFS servers  and they configured with load balancing in F5 .
    when I enable both servers in F5 I receive this error messages in 2nd server,
    when users want to view documents
    adil

    Do you have antiVirus installed on the sharepoint servers?
    These folders may have to be excluded from antivirus scanning when you use file-level antivirus software in SharePoint. If these folders are not excluded, you may see unexpected behavior. For example, you may receive "access denied" error messages when files
    are uploaded.
    Please follow this KB and exclude the folders from Scanning.
    http://support.microsoft.com/kb/952167
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Cannot find the path error

    I am trying to run a executable through a batch file. However, the batch file is never opened when the control reaches at that point of execution. The error message is:
    Cannot find the file 'c:\Program'(or one of its components). Make sure the path and the filename are correct and that all the required libraries are availableThe method where I am calling the batch file is:
    public void run_Fastran(int x)
           try
               File ftn07_i = new File( "C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07_" + x) ;
               File ftn07 = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07") ;
               ftn07_i.renameTo(ftn07) ;
               String path = "";
               path = "cmd /c start C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FCall.bat";
               Runtime rt = Runtime.getRuntime();
               Process proc = rt.exec(path);
               String nameNew = "C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FTN04-" + x + "-" + getPathValue();//change p12 with the crack path input by user.
               File file = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FTN04i");
               while (file.exists()==false)//until FTNO4i come into existence
               File file2 = new File(nameNew);
                // Rename file
               file.renameTo(file2);
               File ftn07Back = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07") ;
               File ftn07_iBack = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07_" + x) ;
               ftn07Back.renameTo(ftn07_iBack) ;
               File ftn07_i_del = new File("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\ftn07_" + x) ;
               ftn07_i_del.delete() ;
           catch(Exception e)
               e.printStackTrace();
        }my batch file is created with this method:
    public void writeBatch()
             try
    //            File user = new File("C:\\JBoss\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail() ) ;
    //            user.mkdir() ;
                BufferedWriter out = new BufferedWriter(new FileWriter("C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FCall.bat"));
                String one = "@echo off" ;
                String two = "cd  \"C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\"  + getUserEmail()+ getSessionId() + "\"" ;
                String three = "\"C:\\Program Files\\jboss-4.0.5.GA\\bin\\Fastran\\" + getUserEmail()+ getSessionId() + "\\FASTRAN.EXE\"" ;
                String four = "ren FTN04 FTN04i" ;
                String five = "EXIT" ;
                String six = ":finish" ;
                out.write(one + "\n");
                out.write(two + "\n");
                out.write(three + "\n");
                out.write(four + "\n");
                out.write(five + "\n");
                out.write(six + "\n");
                out.close();
            catch (IOException e)
        }It is running fine on my computer on application server. It is only when I am trying to deploy my application on the server I am facing this problem. I hope to get some help here.

    okay I can get to the batch file, but now another problem. My first command in the batch file is change directory, but for some reason it is not functioning right. To illustrate again my batch file created through writeBatch method listed above is:
    @echo off
    cd  "C:\Program Files\jboss-4.0.5.GA\bin\Fastran\email1176823047146"
    "C:\Program Files\jboss-4.0.5.GA\bin\Fastran\email176823047146\FASTRAN.EXE"
    ren FTN04 FTN04i
    EXIT
    :finishthe change directory command is only working till bin folder ie
    Microsoft Windows 2000 [Version 5.00.2195]
    (C) Copyright 1985-2000 Microsoft Corp.
    C:\Program Files\jboss-4.0.5.GA\bin>I can change the directory manually however but not through the batch file. I am at loss, need help.
    Message was edited by:
    NasirMunir
    Message was edited by:
    NasirMunir

  • Internet Explorer cannot display the webpage error urgent!

    Hi,
    I have created a OAF page. am displaying some report data in the page. The VO query is executing more thatn 20 min to get the records after tuning.
    Now my problem is, am getting the error "Internet Explorer cannot display the webpage" in 10 mins after the VO query execution started. However, the DB session for this query is still executing at the backend and I am unable to get the same OAF page until the DB session completes.
    Could you please help me in this?
    Thanks,
    Raja.

    Raja,
    There are two options here :
    1) The correct one is to go via concurrent program , because as per web standards a web page should not take max of 3-4 minutes to render.
    2) If you still wanna go via your present approach, you need to set profile ICX:Session Timeout which specifies Maximum idle time for the Oracle Applications user session(specified in minutes).
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Reporting IAC - Internet Explorer cannot display the webpage error

    Hello
    We are working on ECC 6, EHP 3, MSS Reports using LaunchPad.
    When we try to see the report results, it gives us following error at below URL:
    http://domain.com:50000/irj/servlet/prt/portal/prteventname/navigate/prtroot/pcd!3aportal_content!2fevery_user!2fgeneral!2fdefaultDesktop!2fframeworkPages!2fframeworkpage!2fcom.sap.portal.innerpage!2fcom.sap.portal.contentarea?NavigationTarget=ROLES%3A%2F%2Fportal_content%2Fcom.sap.pct%2Fline_manager%2Fcom.sap.pct.erp.mss.bp_folder%2Fcom.sap.pct.erp.mss.roles%2Fcom.sap.pct.erp.mss.manager_self_service%2Fcom.sap.pct.mss.hcm.rpt.iac&ApplicationParameter=S%3DMSS0%26F%3D*HISRETQTA++5%26B%3D20100329%26E%3D20100329%26V%5B1%5D%3DMSS_RPT_SEL_PD1%26OV%3DMSS_RPT_SEL_PD%26R%3D4365AF4B40472508E10000000A000326&CurrentWindowId=WID1269788098656&NavMode=1 
    Internet Explorer cannot display the webpage
    Most likely causes:
    You are not connected to the Internet.
    The website is encountering problems.
    There might be a typing error in the address.
    - I am connected to Net very well.
    - Not sure abt website problems
    - address shown in the address bar is mentioned above
    Any idea what is wrong? We were earlier getting IAC exception, and added the permissions to overcome it.
    Reagrds
    Yash

    HI Yash,
    Please follow this link http://help.sap.com/saphelp_erp2004/helpdata/en/0c/c28c4024d26e1de10000000a1550b0/frameset.htm.
    It will solve your problem. Also make sure that you will give READ access to the end user on this folder.
    In case you are still facing with issue, do let us know.
    Cheers,
    AB

  • "SharePoint Designer cannot display the item" error when edit workflow

    Hi
    I create workflow for sharepoint list in version 2007. Then upgrade sharepoint form version 2007 to 2010. Now when I want to edit this workflow, get this error:
    “SharePoint Designer cannot display the item.
    What you can try:
    Click the Refresh button or press F5 to refresh the content from your site.
    Go back to the previous page
    Most likely causes:
    The file has been deleted from the site.
    The site is encountering problems.”
    What is the problem?
    Thanks.

    Hi,
    Have you used custom activity in your workflow? We may come across this issue when we use custom activity. A workaournd is to modify the Workflows XOML file, and remove custom activity reference from it. And restart your SharePoint designer. See below blog.
    http://saiabhilash.blogspot.com/2011/11/sharepoint-designer-cannot-display-item.html
    Or a quick workaround is recreate the workflow in SharePoint Designer 2010.
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • "...file-format module cannot parse the file" Error

    I am using PS CS3 Extended on a PC
    I keep getting the error...file-format module cannot not parse the file" errors when attempting to open PNG or GIF files that were created using the same version of Photoshop.
    I used to have to reboot the machine to get rid of this error - but that is no longer working.
    The error is occuring more and more frequently.
    I really need to edit these files.
    Please tell me how to fix this.
    I have seen this error in the forum - but was unable to find a real solution. Rebooting the machine is not really a solution.
    Thanks
    JD

    Thanks for trying Chris but the files are not corrupted. They open sometimes in CS4, and always do in CS3 and Elements 6, as well as on another computer. I'm talking about all my PNG files. They work most of the time, just not all of the time. If I close down PS CS4 and open it again they open just fine for a while before the problem starts again.
    I reset all preferences to factory defaults and uninstalled/ re-installed again this morning so now I'll see what happens.
    Cheers
    Maggie

  • Win 7 upgrade causes intermitte​nt IE 8 "Cannot display the webpage" errors

    I upgraded my Touchsmart IQ846t from Vista Home Prem 64-bit to Win 7 Home prem 64-bit last week, 9/20/10.
    After the upgrade there were about 40 - 50 Windows Updates that I also installed.  About 2 days later I began having my problem.  When I first bootup I have full access to the Internet.  After 20 - 30 minutes, however, if I try to open, or reopen, IE8 I get the subject error.  My internet connection, using a wireless broadband MiFi card, is still connected to the internet but IE8 won't open (Firefox and AOL won't either).  The usual Microsoft diagnostics, FixIts, etc are no help.  The only way to get IE back is to reboot.
    Also, I have an HP laptop that was upgraded to Win 7 Home Prem 64-bit at the same time.  It uses the wireless card to connect to the internet and has had none of the IE issues I am experiencing with the Touchsmart.
    Any help will be greatly appreciated. 

    Hi Lizzyb,
    First, make sure you have the updated Win7 drivers for your wireless LAN.  If you update the drivers and find that there are still issues, I would try a System Restore and go back to 9/20 (before installing all the updates) and verify that the hardware works with Win7.
    -Chris
    I work for HP.
    Support Forums are now on your mobile phone: http://m.hp.com/supportforum

  • Help - "Server cannot validate the data" error

    I have been syncing with Nike.com successfully for months and then last night I received the above error while trying to sync.
    I have attempted to re-sync multiple times by putting the XML file back into the Latest folder, but keep getting the same error. I do not have any Ampersands in the playlist, and the XML seems to load fine into Excel and Firefox (i.e., no apparent parsing errors).
    Any ideas on what to try next? I really want this workout to sync. Also - does anyone know what the <Calibration> tag is for and what the long number might represent?
    I have emailed nikeplus support and even included the XML for the workout in question but no response.
    Any help would be appreciated...
    -- JM.

    Nike+ support emailed me back with this resopnse:
    Response (Russ) - 09/21/2006 07:45 AM
    Dear John,
    Thanks for contacting Nike regarding Nike+.
    We are aware of the situation and have a resolution in place that is being upgraded as you read this. Your data is not lost and will update once the resolution is completed. At that time your data should be able to update and load.
    Once again, thanks for contacting Nike. Let us know if you have further questions.
    Sincerely,
    Russ
    Nike Timing

  • Error while doing java mapping

    Hi,
    I have written a java mapping code .But i have a small doubt when i compile it it is showing errors that package com.sap.aii.mapping.api does not exist.How can i solve the problem.Please help me in this issue.
    Thanks,
    Bhargav

    Hi ,
    check this thread, it may help you.
    https://forums.sdn.sap.com/click.jspa?searchID=3558715&messageID=3229273
    Regards,
    Ramesh.

  • Linkage error while doing java mapping

    Hi,
    I Have written a java mapping but when i use it in xi.It is showing an error as linkage error
    LinkageError at JavaMapping.load(): Could not load class: com/satyam/nestle/JavaMap
    Can anyone explain what does this mean and how to overcome it.
    Thanks in advance,
    Bhargav

    Did you try testing the java mapping seperately....that it does not have any errors??? Also check the cahce update. Sometimes it happens that XI is not able to load the class file from the cache. Perform a CPA cache refresh (delta). This should solve the problem
    Reward if helpful.

  • XSLT Mapping : RFC Lookup using java helper class

    Hi All,
    I am doing RFC Lookup in xslt mapping using java helper class. I have found blog for the same (http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14) However this blog is very advanced.
    Can anybody help me with step by step approach for the same?
    My basic questions are not answered in the blog as:
    1) where to add the jar file of the java class used in xslt mapping.
    I have added zip file of XSLT mapping in imported archived and using that in mapping.
    Thanks in advace.
    Regards,
    Rohan

    Hi,
    Can u please have look at this in detail , u can easily point out yourself the problem...
    http://help.sap.com/saphelp_nw04/helpdata/en/55/7ef3003fc411d6b1f700508b5d5211/content.htm
    Please observe the line,
    xmlns:javamap="java:com.company.group.MappingClass
    in XSLT mapping..
    The packagename of class and class name and XSLT namespace should be matching...
    Babu
    Edited by: hlbabu123 on Sep 29, 2010 6:04 PM

  • Regarding Scanner Object -- Cannot Resolve the Symbol

    Hi,
    I am new to Java, as well as this Forum.
    Today I tried with Scanner object. But it shows Error.
    My Code:
    import java.util.Scanner;
    public class CourseGradeBookTest
    *     public static void main(String args[])*
    *          Scanner input=new Scanner(System.in);*
    *          CourseGradeBook CGB=new CourseGradeBook();*
    *          System.out.println("Course Grade Book");*
    *          String NameofCourse=input.nextLine();*
    *          System.out.println();*
    *          CGB.displayMessage(NameofCourse);*
    Errors:
    CourseGradeBookTest.java:1: cannot resolve symbol
    symbol  : class Scanner
    location: package util
    import java.util.Scanner;
    *^*
    CourseGradeBookTest.java:7: cannot resolve symbol
    symbol  : class Scanner
    location: class CourseGradeBookTest
    Scanner input=new Scanner(System.in);
    *^*
    CourseGradeBookTest.java:7: cannot resolve symbol
    symbol  : class Scanner
    location: class CourseGradeBookTest
    Scanner input=new Scanner(System.in);
    *^*
    *3 errors*
    I went through the Previous Questions which were related to My Question. I checked with My Java Version..its java version "1.6.0_02"
    Can You please help Me to get out of this problem.
    Regards
    Rajan.

    hi
    i think u didnt set path currectly.
    u can set path in two ways.
    1) By Using Environmen Varibles
    2) By Creating .bat file.
    for creating environmental variables
    right click on MyCompueter->properties->Advanced->Environment Variables->
    System vaibles.

Maybe you are looking for