Laoding problem

hi experts,
  i created a function  module extractor in the R/3 side.
i checked in RSA3,the data is extracting properly.
but when i run the info package in BW side it is not extracting.
in the status tab,it is showing in one tab as TRANSACT rfc.
in the details tab only request process is ok, remaining all are red.
give me sujjestion.
regards
kumar

hi,
thanks for ur response.
i done the same thing, which u have mentioned.
it is saying the message as function module does not exist or exception raised.
regards
kumar

Similar Messages

  • I have OSX 10.7.5.  I loaded Powerschool, this sent me to oracle to load java 7, now powerschool won't laod, java 7 logo just spins.  I contacted orgacle live help, said it was a mac problem that they could fix for $75.  Any help would be wonderful.  MT

    I have OSX 10.7.5.  I loaded Powerschool, this sent me to oracle to load java 7, now powerschool won't laod, java 7 logo just spins.  I contacted orgacle live help, said it was a mac problem that they could fix for $75.  Any help would be wonderful.  MT

    Pearson put out a tech note on this today - the new versions of Java are what's causing the problem. If you can use Time Machine to rollback java prior to a java 7 or 1.6.0_37 version that will get you going again. I've been searching for hours for a place to download the older version but it seems Apple's site and Oracle all only have the latest release. Still trying to see if I have a copy downloaded on a system that hasn;t been updated to copy off to a network drive or usb and install the older version on to systems.
    PowerSchool Tech Notes
    PowerTeacher Gradebook and recent Mac OS X Java update
    An update to Java for Mac OS X was released on October 16, 2012. An issue has been identified with this Java update (Java for OS X 2012-006) which prevents teachers from launching PowerTeacher Gradebook.
    Teachers using PowerTeacher Gradebook should avoid taking this Java update to version 1.6.0_37 until notified that PowerTeacher Gradebook has been certified with this latest version of Java 1.6 for Mac OS X. PowerTeacher Gradebook will continue to work on Mac OS X workstations with Java version 1.6.0_35.
      Additional communication will be provided once a workaround is identified or an updated version of PowerTeacher Gradebook is available.

  • My mozilla firefox is no longer able to load any page; though my internet expoler can laod pages. what is the problem?

    i have a desktop, and have always been able to load pages using mozilla firefox. not it is not possible. however, i am able to load pages on internet explorer...

    See this: <br />
    https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can?s=won%27t+load+any+pages&as=s

  • Down laod file problem

    Hi Friends,
    I am using the below code downloading file
    but I am getting the short dump like 'Acess denied'.
    TYPES: BEGIN OF xml_line_dl,
            data(10000) TYPE c,
          END OF xml_line_dl.
    data:    gv_filename_dld     TYPE string value 'c:\abc.xml '.
    data:      xml_table_dld TYPE TABLE OF xml_line_dl.
       CALL FUNCTION 'GUI_DOWNLOAD'
             EXPORTING
                  filename = gv_filename_dld
                  filetype = 'ASC'
             TABLES
                  data_tab = xml_table_dld.
    Please suggest me  I need to avoid the short dump If I dont have the acess to 'C:\' drive
    Insted of short dump I need to populate the error message If I dont have the acess to C derive
    ThanX
    Sam

    Hi,
    Do like this...
    Call function GUI_DOWNLOAD using pattern button and uncomment the Exceptions parameters.
    Then use the Exception ACCESS_DENIED, you will get sy-subrc = 15, and you can populate your error/information message here only.
    For eg:
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    filename = filename
    FILETYPE = 'ASC'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = 'X'
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = 'X '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    IMPORTING
    FILELENGTH =
    tables
    data_tab = ITAB
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22
    Case sy-subrc.
    When 15.
    *Write your message here.
    endcase.

  • My Firefox is not working, but IE is. Every time I try to open Firefox, it says there is a problem laoding page. I have already tried uninstalling and reinstalling, and nothing. Help!

    I have also checked my internet settings and restarted the computer.

    See this - [[Cannot connect after upgrading Firefox]]

  • Solaris 8 Installation on Intel - PROBLEM

    Hi,
    I am trying to load Solaris 8 on Intel machine , 810 motherboard , 128MB SDRAM , 20GB HDD
    but whenever I try to load with CD-1 I have a problem like Webstart Installation 3.00 start and when he ask me language , after that message comes no hardisk foung and it stop immediately at # prompt.
    Whenevr I start with CD-2 , he ask me for Interactive / Jump Start , I choose Interactive , it start laoding KERNAL and machine automatically reboot , again reinstall , at that same point machine reboot.
    Tell me what to do , I cant go ahead , I want to load Solaris 8 , and see ..
    HELP MEEEEEEEEEEEEE.
    Regards,
    Mahen.

    I think the problem source is the BIOS ACPI Power Manager, many of motherboards ACPI always let the system auto-reboot during loaded the OS kernel.
    I had tried to install Windows2000 and Solaris8 10/01 on Intel 810 MB, the system always rebooted again and again, I suppose that may be some bugs on 810 chipset !!
    Try to reconfigure the BIOS ACPI function, such disable it.
    But, I'm not sure that is work for your case.....

  • Problem with "System.in.read()" read() method!

    import java.io.*;
    import java.lang.*;
    class Count {
    public static void main(String args[]) throws IOException
    int count = 0;
    while (System.in.read()!=-1)
    count++;
    System.out.println("Input has " + count + " chars.");
    in this code the loop stucks and it increments the count variable infinitely of course as long as i hit enter. I am trying to understand the problem with read() method of system class's in object. in its definition it says; when the inputstream ends it returns -1, but in this code it does not return -1 ever. another question of mine is that what args[] array do? what does it store??

    Java doesn't bother much with the dos console and it a bit limited and limiting - no pretty colours /graphics options - just text - that's because java graduates to GUI's where there is laods of power and object /component support to do everything and everything you could imagine and more. System.in.read() ??? - thats a fine start!
    what args[] array do? what does it store??
    Good question !
    It provides a means of passing a parameter argument from the command line to the program - consider this;-public class HelloWithArgs {
       public static void main(String[] args) {
          System.out.println("Hello I am " + args[0]);
    }What does it do and how does it work? Or this;-public class HelloWithArgs2 {
       public static void main(String[] args) {
          try{
             String myName = args[0];
          catch(ArrayIndexOutOfBoundsException aob){
              System.out.print("No names: program will end");
              System.exit(0);
          System.out.println("Hello I am " + myName);
    }Study them and have fun. Though to answer the question -
    " public static void main(String[] args) {" // or
    " public static void main(String[] parameters) {"
    is the 'entry point' of all java programs, in order to do something it has to have a main() method and if youre going to pass on parameters, then why not a String array? If you think about it anything else would be fairly useless.

  • Problem in loading data

    Hello All,
    I am using data source   2LIS_11_VAHDR in BI 7.0 to load data to ODS.
    I am using the full upload.
    When i schedule the infopackage i dont get any records.The request status is shown as running.
    So i check the job in the source system.But i Saw that Job status is Released and not active.
    There were some entries already present in the extraction queue.So I tried scheduling Job to move the entries from extraction queue.But this job too is showm as released and not active.
    Please let me know what can be the problem.

    Hi,
    Check in RSA3 if you are getting records then you should be able to get it to PSA and then ODS.
    If not then replicate the data source activaet the transfer structure and again laod . This will help.
    Regards,
    Amol

  • Problem in data loading

    Hello All,
    I am using data source 2LIS_11_VAHDR in BI 7.0 to load data to ODS.
    I am using the full upload.
    When i schedule the infopackage i dont get any records.The request status is shown as running.
    So i check the job in the source system.But i Saw that Job status is Released and not active.
    There were some entries already present in the extraction queue.So I tried scheduling Job to move the entries from extraction queue.But this job too is showm as released and not active.
    Please let me know what can be the problem.

    Hi,
    Check the same in extract checker.i.e RSA3 in source system. If you are geeting records then you should be able to laod the same to PSA and then to ODS. Else also you can check if the connection between 2 systems is up and running fine.
    hope this helps.
    Regards,
    Amol

  • SM 58 loading problem and slow system

    Hi 
    This is the problem
    I got to one of my old projects for a week of easy holiday cover ) and most internal BW loads are taking forever or not even finishing.
    I saw there were lots and lots of old entries in sm58 so I deleted them thinking this would help and it has a little but sm58 still seems to be taking a long time to do its thing.  I also extended the dialogue process time but it still seems Sm58 is taking too loand and causing missing messages in my laods.
    When records go in to SM58 it seems that it takes awhile to deal with them and I sometimes have to do it manually (F6) which is not ideal and obviously cannot continue.
    It now give the message when loading of missing messages and this always seems to be stuck on yellow on the update rules part of each data package in RSMON with message missing messages.
    I am hoping there is some logs or tables that maybe are full like idoc logs or something that is making everything go so slow????
    Maybe there is a table that is just so full and its not getting deleted and causing this to go slow and loading almost non existent. Maybe some indexes or something???
    Maybe it is something else as they have put in a few service packs lately I think 16 to 20.
    Any ideas??

    Your BASIS guy can help in clearing the iDocs and also check on performance.
    Cheers,
    Neel.

  • ODS data activation problem

    Hi,
    I have to load description from the flat file into the ODS since the ODS data needs to be a replica of the flat file.
    As the description is greater than 60 CHAR, I have split the description into 3 infoobjects in the transfer rule, using the individual line routine.
    After data is loaded into the ODS, the technical status as well as the total status is green, but when I activate the request for that corresponding load, the activation fails i.e. the data is present in the 'New Data' table, but it is not moving into the 'Active Data' table.
    Then, I tried a different method.
    I activated the setting in the ODS; 'Activate ODS object data automatically' and tried to load the same data with the same conditions to the ODS.
    This time the loading failed, giving multiple errors like;
    1) Value 'Absence Transactrion Dataload Failure ' (hex. '416273656E6365205472616E7361637472696F6E204461.
    2) Value 'ifying days ' (hex. '696679696E672064617973 ') of characteristic Z_LDES2 contains invalid cha.
    3) Activation of data records from ODS object DES3_ODS terminated.
    4) System error: RSDU_ANALYZE_TABLE_ORA/ ORACLE.
    5) Error getting SID for ODS object DES3_ODS.
    6) Error when assigning SID (details in long text).
    7) Error when assigning SID (details in long text).
    Please provide a solution for this.
    <b>*********Points will be rewarded*********</b>

    Hi Praveen,
    Thanks for the soltion.
    I checked in RSRV. There were no errors.
    So, I tried loading the data again. This time, I got the same error.
    But when I checked the contents of the Active table of ODS, the data was loaded, although in RSMO the status was RED.
    The laoding was successfull as of now, but lets hope this problem doesnt occur again.
    Please help, if you have any idea regarding this problem.

  • Problem with graphics cards in Windows 8.1

    My problem is to down laod window 8.1 to day in my laptop how it can be and is it can be downlaod through net ?

    Here is the document that explains all the preparation needed and steps to perform to update to Windows 8.1:
    http://windows.microsoft.com/en-in/windows-8/update-from-windows-8-tutorial
    I am an HP employee.
    Regards,
    Vidya
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.
    ***Click on "Thumbs up" button to the bottom right side of my post to say thanks!***

  • Logic Studio Install Problems

    Purchased Logic Studio a couple weeks ago.  The first set I recieved would not install correctly and it errored out several times regardless of how I went about installing it.  Contacted Apple Support and they indicated I may have a bad set of disks so I returned my set and recieved a new set yesterday.  Install problems continue but now different.  Orginal set woudl load a coiuple of disks then error out.  This set will laod the install disk then when asked to insert the Audio Content 1 disk the computer will spin th edisk around a few times the spit it out.  Tried several times and even tried inserting other content disks.  I've read some of the conent here and some mention a possibel bad DVD Drive but I do no think my DVD Drive is the problem since after trying the Logic Studio set I successfully installed FrameForge.
    When I attempted to install the first set of disks last week I was able to select all the options, SoundTrack Pro, Mainstage, etc.  On this set my SoundTrack Pro option is grayed out and I cannot select it to load.  I read here last week, when the first set would not load, to remove everything associated with Logic Studio and try again, which I did.  Is it possible there are remneants remaining somewhere on my system that is disallowing the SoundTrack install this time?
    My system config is:
    Processor: 3.4 GHz Intel Core i7
    Memory: 16GB 1333 MHz DDR3
    Graphics: AMD Radeon HD 6970M 2048MB
    Software: Mac OSX Lion 10.7.5 (11G63b)
    1TB Internal SATA Disk (This is the drive I am attempting to load on)
    256GB Flash Storage
    12TB (RAID 5 Configure to 6TB) Pegasus External
    This evening I will call Apple Support again, but any advice from the audience is much appreciated.
    Signed: Frustrated but Determined

    Purchased Logic Studio a couple weeks ago.  The first set I recieved would not install correctly and it errored out several times regardless of how I went about installing it.  Contacted Apple Support and they indicated I may have a bad set of disks so I returned my set and recieved a new set yesterday.  Install problems continue but now different.  Orginal set woudl load a coiuple of disks then error out.  This set will laod the install disk then when asked to insert the Audio Content 1 disk the computer will spin th edisk around a few times the spit it out.  Tried several times and even tried inserting other content disks.  I've read some of the conent here and some mention a possibel bad DVD Drive but I do no think my DVD Drive is the problem since after trying the Logic Studio set I successfully installed FrameForge.
    When I attempted to install the first set of disks last week I was able to select all the options, SoundTrack Pro, Mainstage, etc.  On this set my SoundTrack Pro option is grayed out and I cannot select it to load.  I read here last week, when the first set would not load, to remove everything associated with Logic Studio and try again, which I did.  Is it possible there are remneants remaining somewhere on my system that is disallowing the SoundTrack install this time?
    My system config is:
    Processor: 3.4 GHz Intel Core i7
    Memory: 16GB 1333 MHz DDR3
    Graphics: AMD Radeon HD 6970M 2048MB
    Software: Mac OSX Lion 10.7.5 (11G63b)
    1TB Internal SATA Disk (This is the drive I am attempting to load on)
    256GB Flash Storage
    12TB (RAID 5 Configure to 6TB) Pegasus External
    This evening I will call Apple Support again, but any advice from the audience is much appreciated.
    Signed: Frustrated but Determined

  • Problem in loading 0calday infoobject date format through Flatfile in cube

    Hi All,
    I am facing problem  in loading the 0calday infoobject  data through flat file( format - test.csv) in infocube..
    Suppose consider we are having two flat files(test1.csv,test2.csv).
    1.First file(test1.csv) has a proper date format (ie YYYYMMDD), while loading it is succesfully .
    2.Second file(test2.csv) has improper date format(ie DDMMYYYY), loading fails because of this format..
    Is it possible to write the Routine(Start Routine) in the Infopackage (External data-Tab) in such a way the if the flat file(test1.csv) is proper date format load calday data without any conversion, if the file is test2.csv convert the date field format from (DDMMYYYY) to (YYYYMMDD) and finally laod data in cube.
    With regards,
    Hari.
    +91 9323839017

    Hello Dinesh,Anil
    There is no distinguishing field between the two flat file loads.
    We are using only one infoobject(ie 0calday) for two loads.
    We are using two external source system(one system generate file as YYYYMMDD date format,and another system generate date formate as DDMMYYY, here two file names are unique.
    Here my requirement is i have to compare two file names using start routine of the package (tab:External data) .
    if(test1.csv)
    load as it is 0calday data (since it is in proper format YYYYMMDD)
    else if(test2.csv)
    then convert from DDMMYYYY to YYYYMMDD and load data to 0calday infoobject in cube.
    Is it possible to compare two files names using start routine.
    with regards,
    Hari

  • Having problem loading Aol mail with Firefox ver 4. Keep getting error 8 msg. Any ideas?.

    INstalled Firefox 4 and now cannot laod the aol mail website. I can use ms explore with no problem. Get error msg 8 Problem loading application. AOL itself loads fine, just not mail.

    INstalled Firefox 4 and now cannot laod the aol mail website. I can use ms explore with no problem. Get error msg 8 Problem loading application. AOL itself loads fine, just not mail.

Maybe you are looking for