A little help! - Function K_KKB_FIELDCAT_MERGE - LINE_TOO_LONG

Hey my sdn's friends:
I've got the following problem.
We're now in finish step of the upgrade for a V. 4.6 to a ECC 6.0
My problem start when i start to check Programms Z, and i've got a Dump Whit the following Message.
Err.tmpo.ejec.         READ_REPORT_LINE_TOO_LONG
Excep.                 CX_SY_READ_SRC_LINE_TOO_LONG
Es wurde versucht, das Programm "ZCORL007R" von der Datenbank zu lesen.
Die Anweisung READ REPORT erlaubt es, einen Programmtext in eine
interne Tabelle zu kopieren. Die belegte Zeilenlänge im Programmtext
darf nicht größer sein als die Breite der internen Tabelle.
Die interne Tabelle "FUNCTION=K_KKB_FIELDCAT_MERGEDATA=L_ABAP_SOURCE[]" ist
72 Zeichen breit. Die Programmzeile
ist 73 Zeichen breit.
That measn that i've got a line with 73 chars, and the maximum alowed is 72...
so i start to check here, in sdn, and i found a many friends with the same problem, so, i read every one of the answers, and i've probes all of the possible solutions, but not result!
I've got the same Dump!
PLease woul u help me.. in my Z Development i've got it:
report zcorl007r no standard page heading.
...[CODE]
data: fieldtab  type slis_t_fieldcat_alv,
      heading   type slis_t_listheader,
      layout    type slis_layout_alv,
      sortinfo  type slis_t_sortinfo_alv, " Sort Table
      sp_group  type slis_t_sp_group_alv, " List Groups
      events    type slis_t_event,
      gs_grid   type lvc_s_glay,
      repname   like sy-repid,
      f2code    like sy-ucomm value  'PICK',
      f2code    like sy-ucomm value  '%_GC',
      refresh   type slis_selfield ,"value '&REFRESH',
      g_save(1) type c,
      g_exit(1) type c,
      g_variant like disvariant.
data: begin of reg occurs 0,
          cebe          like zco_planr-cebe,
          aufnr         like zco_planr-aufnr,
          racct         like glpcp-racct,
          text(40),
          waers         like glpcp-rtcur,
          sgtxt         like glpcp-sgtxt,
          hsl01         like glpcp-hsl01,
          hsl02         like glpcp-hsl02,
          hsl03         like glpcp-hsl03,
          hsl04         like glpcp-hsl04,
          hsl05         like glpcp-hsl05,
          hsl06         like glpcp-hsl06,
          hsl07         like glpcp-hsl07,
          hsl08         like glpcp-hsl08,
          hsl09         like glpcp-hsl09,
          hsl10         like glpcp-hsl10,
          hsl11         like glpcp-hsl11,
          hsl12         like glpcp-hsl12,
          hsl13         like glpcp-hsl13,
          rvers         like glpcp-rvers,
          correl        like zco_planr-correl,
          kokrs         like zco_planr-kokrs,
          ryear         like zco_planr-ryear,
          version       like zco_planr-version,
          version_orig  like zco_planr-version_orig,
          anual1        like cosp-wtg013,
          anual2        like cosp-wtg013,
          anual3        like cosp-wtg013,
          anual4        like cosp-wtg013,
          grord(15),
      end of reg.
...[CODE]
  repname = sy-repid.
  if syst-tfill > 0.
    if p_edit = ' '.
      perform initialize_fieldcat  using fieldtab[]. "Edit
    else.
      perform initialize_fieldcatt using fieldtab[]. "No Edit
    endif.
form initialize_fieldcat using    p_fieldtab type slis_t_fieldcat_alv.
  data: l_fieldcat type slis_fieldcat_alv.
  call function 'REUSE_ALV_FIELDCATALOG_MERGE'
       exporting
            i_program_name     = repname
            i_internal_tabname = 'REG'
            i_inclname         = repname
       changing
            ct_fieldcat        = fieldtab[].
So... can i do 4 got a solution to the dump....
please i pray 4 help
chau!

Hi Juan Carlos,
Have a look at the your dump description...doesn´t the dump points out this?
+
   361                                                                  
   362 *    class cx_sy_read_src_line_too_long definition load.         
   363 *    data: ex_too_long type ref to  cx_sy_read_src_line_too_long.
   364 *    try.                                                        
>>>>>     read report l_prog_tab_local into l_abap_source.             
   366 *      catch cx_sy_read_src_line_too_long into ex_too_long.      
   367 *    endtry.                                                     
   368     check sy-subrc eq 0.      
+
I simulate the same problem in my system... I know it is quite dificult the find the line in a program of 2749 lines...
Pay attention especially to comment lines.
There are also alternative solutions for your problem, but I think since your are on a upgrade project they would not be the nicest solution.
1. Create the fieldcatalog manually, like the post before
or
2. Create a DDIC struture of your internal table, and then you can use the name of the DDIC struture directly with the function you use to show the ALV.
But my suggestion really is to check again the program of a line that seemes to be too long. More than 72 caracters. Make a commet line of the maximum size or maybe less, like for example 70 caracters and than ajust the whole code on this line.
Let me know some news,
Regards,
Marcelo Moreira

Similar Messages

  • A little help needed in message mapping

    a little help needed in message mapping
    I have to map one of the idoc header segments as many times as it occurs to each Idoc when using the split message funcionality
    let us say we have the segment seg1 and there is a QUALF in it
    <seg1>
    <qualf>001</qualf>
    </seg1>
    <seg1>
    <qualf>002</qualf>
    </seg1>
    then we use the vbeln to split the idoc into 2.
    so if we have
    <vbeln> 1 </vbeln>
    and
    <vbeln>2 </vbeln>
    then 2 Idocs should be created like this
    <Idoc>
    <vbeln> 1 </vbeln>
    <seg1>
    <qualf>001</qualf>
    </seg1>
    <seg1>
    <qualf>002</qualf>
    </seg1>
    </Idoc>
    <Idoc>
    <vbeln> 2 </vbeln>
    <seg1>
    <qualf>001</qualf>
    </seg1>
    <seg1>
    <qualf>002</qualf>
    </seg1>
    </Idoc>
    it is easy to create the segment by using createif with the QUALF field but my problem how to map the qualf twice for each idoc
    Thanks.

    UseOneAsMany is the function you need to use.
    It takes three parameters:
    1 --- The node you want to duplicated
    2 --- How many times you want to duplicated
    3 --- The context you want to place for it.
    Regards
    Liang

  • Helper Function Module; one or many

    I have been doing all my function development in individual ps1 files for ease of testing. I.e. I have a Reg-Functions file, which contains all my Registry manipulation functions, and I have some script level code at the bottom to test the functions. I had
    planned to then put all the helper functions together in a single module, but smaller files are a little easier to get around in, so now I wonder if having 10 or 12 different modules is a better way to go?
    Also, I can see some of them having shared dependencies. So A.psm1 & B.psm1 both depend on Z.psm1. Can I load Z.psm1 in both without trouble when I then load both into script.ps1? Or is there bad juju there? I know, this is one I should just test rather
    than asking the question, but I am away from the Windows VM at the memento and just had the thought.
    Gordon

    Attempting to import a module that is already loaded a second time will not affect anything.
    As for one big module versus 12 smaller ones, I would really see that as personal preference on how you want to manage them.  How many functions are we talking about total?  I have seen some modules with hundreds of functions, I guess it can also
    come down to how long you want the import process to take especially if you have a large number of seldom used functions.

  • Little help with complex XML data as data provider for chart and adg

    Hi all,
    I've been trying to think through a problem and Im hoping for
    a little help. Here's the scenario:
    I have complex nested XML data that is wrapped by subsequent
    groupings for efficiency, but I need to determine if each inner
    item belongs in the data collection for view in a data grid and
    charts.
    I've posted an example at the bottom.
    So the goal here is to first be able to select a single
    inspector and then chart out their reports. I can get the data to
    filter from the XMLListCollection using a filter on the first layer
    (ie the name of the inspector) but then can't get a filter to go
    deeper into the structure in order to determine if the individual
    item should be contained inside the collection. In other words, I
    want to filter by inspector, then time and then tag name in order
    to be able to use this data as the basis for individual series
    inside my advanced data grid and column chart.
    I've made it work with creating a new collection and then
    looping through each time there is a change to the original
    collection and updating the new collection, but that just feels so
    bloated and inefficient. The user is going to have some buttons to
    allow them to change their view. I'm wondering if there is a
    cleaner way to approach this? I even tried chaining filter
    functions together, but that didn't work cause the collection is
    reset whenever the .refresh() is called.
    If anyone has experience in efficiently dealing with complex
    XML for charting purposes and tabular display purposes, I would
    greatly appreciate your assistance. I know I can get this to work
    with a bunch of overhead, but I'm seeking something elegant.
    Thank you.

    Hi,
    Please use the code similar to below:
    SELECT * FROM DO_NOT_LOAD INTO TABLE IT_DO_NOT_LOAD.
    SORT IT_DO_NOT_LOAD by WBS_Key.
        IF SOURCE_PACKAGE IS NOT INITIAL.
          IT_SOURCE_PACKAGE[] = SOURCE_PACKAGE[].
    LOOP AT IT_SOURCE_PACKAGE INTO WA_SOURCE_PACKAGE.
            V_SYTABIX = SY-TABIX.
            READ TABLE IT_DO_NOT_LOAD into WA_DO_NOT_LOAD
            WITH KEY WBS_Key = WA_SOURCE_PACKAGE-WBS_Key
            BINARY SEARCH.
            IF SY-SUBRC = 0.
              IF ( WA_DO_NOT_LOAD-WBS_EXT = 'A' or WA_DO_NOT_LOAD-WBS_EXT = 'B' )     
              DELETE IT_SOURCE_PACKAGE INDEX V_SYTABIX.
            ENDIF.
    ENDIF.
          ENDLOOP.
          SOURCE_PACKAGE[] = IT_SOURCE_PACKAGE[].
        ENDIF.
    -Vikram

  • My drive recently had to be replaced with a new one installed by Apple they reinstalled all my stuff from my time machine. Most my programs had to be updated which I managed with a little help from my friends, but the last one that I can't solve is

    My IMAC OSX 10.6.8   2.8 GHz intelcore  2Duo 4GB 800 Mhz DDR2 SDRam recently had to have its hard drive replaced by apple thy actually had to give me a larger one because mine was no longer available,They also reinstalled all my programs and data from my 2 terrabite time machine back up. I got my system home and found that I had to upgrade most of my programs which I managed with a little help from my friends, but I still have one problem that I can't solve I have a Nikon Coolpix S6 that I have Been Syncing with my Iphoto since I've got it 3 years ago and now when I place it in the cradle the program reconizes it and says that it is going to start to import the new photos the little white wheel in the center of the screen starts spinning but nothing else happens. I checked all my connections and they are goog plus I even downloaded a nikon progam just to double check the camera & cradle and it works there but it wont pair off with my IPhoto.

    First go to iPhoto Preferences, look in both General and Advanced tabs to make sure that things are set to import from camera into iPhoto.
    Then if that doesn't help, connect the camera and open Image Capture in your Applications > Utilities folder and see if you can use Image Capture to reset the import path from the camera to iPhoto.
    Image Capture: Free import tool on Mac OS X - Macgasm
    Message was edited by: den.thed
    Sorry John, I didn't see your post when I clicked the reply button. Dennis

  • Need a little help new to mac

    Need a little help I'm new to Mac.. i have had my ibook for over a year now and i like it a lot, but some times my usb post dies on my for a couple days maybe weeks. Ill have my ipod connected and when i go to plug in a flash drive. It doesn't detect my ipod anymore and my usb port don't work. it says that they were "removed improperly" and now they are not working again..i have tried to reinstall the whole os again and that doesn't work i don't have the hardware test disk so i don't know what could be the problem i know its not the logic board is there any test i can do to it to find out the problem its an ibook late 2001... there is no reset button on it. i tried to hold in the space bar and now when i boot up i get prompt to this screen that shows the world and then a folder with a ? mark but then after a few sec it boots right up im a mess need some help

    +it says that they were "removed improperly"+
    You have to go to the iPod's icon on your computer (or the flash drive's icon), select it and eject it there before removing it. Otherwise, data can be corrupted and/or lost. Repeatedly removing it without ejecting it from the desktop can cause it not to be recognized any longer.
    If your iBook is a "late 2001" model. It should have a reset button. Check out the chart here to make sure which model iBook you have:
    http://support.apple.com/kb/HT1772?viewlocale=en_US
    +i get prompt to this screen that shows the world and then a folder with a ? mark but then after a few sec it boots right up+
    It's trying to find a network volume from which to boot.
    Once it's booted up, go to System Preferences > Startup Disk, and select your Mac OS X startup volume. Then close System Preferences. The next time you start up, it should start up without looking for a network volume.

  • Little help needed on utl_file

    Hi
    I am trying to write a small stored procedure for recording some information to a text file, and I need a little help. However, beforehand, let me give you what I have done:
    procedure create_record (order_id IN VARCHAR2) IS
    l_dir VARCHAR2(10) 'c:/orders';
    l_filename VARCHAR2(25) := 'orderlist';
    l_datetime DATE := sysdate;
    l_output utl_file.file_type;
    begin
    l_output := utl_file.fopen(l_dir, l_filename, 'w');
    if !utl_file.fopen(l_output) THEN
    utl_file.put_line(l_output, l_datetime || order_id);
    utl_file.fclose(l_output);
    else
    utl_file.fclose(l_output);
    l_output := utl_file.fopen(l_dir, l_filename, 'a');
    end if;
    end;
    Now for questions, firstly, I am not entirely sure that the if statement for checking to see if an existing text file exists is the correct way, and would welcome some help on this, and correction.
    Secondly, I need to add a second statement to the if, which if the file exists and the date on that file is the same as the system date, then to open and append some information to it, else create a new file.
    Unfortunately, for me, I am not sure how to do this.
    Can anyone show me how this can be done?
    Thanks

    Hope you can read my coding correctly.
    ps: not tested
    DECLARE
    myFileExist BOOLEAN;
    myFileLength NUMBER;
    myFileBlockSize BINARY_INTEGER;
    myText VARCHAR2(1000):= NULL;
    myInstr NUMBER;
    l_dir VARCHAR2(10) 'c:/orders';
    l_filename VARCHAR2(25) := 'orderlist';
    l_datetime DATE := trunc(sysdate);
    l_output utl_file.file_type;
    BEGIN
    utl_file.fgetattr(l_dir, l_filename, myFileExist, myFileLength, myFileBlockSize);
    if not myFileExist then -- file not exist
    <ul>l_output := utl_file.fopen(l_dir, l_filename, 'w');
    utl_file.put_line(l_output, l_datetime || order_id);</ul>
    else --file exist
    <ul>
    l_output := utl_file.fopen(l_dir, l_filename, 'r');
    LOOP
    <ul>
    --------------------------------------------------------------------start loop
    UTL_FILE.GET_LINE(l_output,myText) ;
    SELECT instr(UPPER(myText),UPPER(trunc(SYSDATE))) into myInstr FROM dual;
    IF myText IS NULL THEN
    <ul>
    EXIT;
    </ul>
    END IF;
    if myInstr > 0 then
    <ul>
    utl_file.fclose(l_output);
    l_output := utl_file.fopen(l_dir, l_filename, 'a');
    </ul>
    else
    <ul>
    utl_file.fclose(l_output);
    l_filename:='newfilename';
    l_output := utl_file.fopen(l_dir, l_filename, 'w');
    </ul>
    end if;
    --------------------------------------------------------------------end loop
    </ul>
    END loop;
    utl_file.put_line(l_output, l_datetime || order_id);
    </ul>
    end if;
    utl_file.fclose(l_output);
    END;
    Edited by: Lie Ching Te on 12-Feb-2010 12:34 PM
    Edited by: Lie Ching Te on 12-Feb-2010 1:01 PM

  • Adobe Photoshop CS5.1 reinstalled because the Help functions gives an error message (7).

    Hi,
    When I tried to use the Help function in Adobe Prhotoshop CS5.1 a pop up message shows errorcode (7) advising to reinstall the product. So I did, but it did not work. What can I do more? Mind you, the Help function in Bridge is working as it should and both products are installed at the same time.
    Regards,
    Aad

    Have you manually launched the Communiuty Help client and verified, if the PS help is actualyl listed there? If not, you might wanna add it to the list. Also take care to install al lthe pertinent updates for the help client...
    Mylenium

  • Problems with Photoshop Elements 9 Help Function

    I recently installed Photoshop Organizer and Elements 9.  When I try to access any of the first six options in the help section of the menu at the top of the window I get an Adobe AIR error message stating that the installation of this application is damaged and to contact the publisher for assistance.  This also occurs when I access the help button in one of the Photoshop Editor image processing functions.  How do I repair the damaged help function of the software?  Any help would be appreciated.
    Thanks,
    Rick Davis

    Thanks for the quick reply.  I had again the problem and thanks to yr explanation problem is solved : whack the spacebar
    Bea

  • Hi i keep downloading the same song twice on different things, these collections and regular albums are confusing...i lost all my media and trying to get it back and now 2 of the same song is up...why cant support be a little helpful?

    is Apple going bankrupt again, they seem to not wanna be bothered, is there a way to EMAIL, im not into calling and it says my calls have expired....why cant Apple be a little helpful, im a little upset with them and wanna throw my ipod touch across the room -  i dont want 2 of the same songs anymore, i dont wanna be charged twice these bands are making it very difficult to remember the last album i had this stuff on....i dont know my music anymore it keeps changing

    Perhaps, if you stop ranting - and stop typing in capitals (which is regarded as shouting), then you may get somewhere. But since I'm so nice...
    A good place to start for help is here, in these discussions and then proceed by explaining the probelm clearly.
    Let's start by crossing out anything that isn't relevant:
    is Apple going bankrupt again, they seem to not wanna be bothered, is there a way to EMAIL, im not into calling and it says my calls have expired....why cant Apple be a little helpful, im a little upset with them and wanna throw my ipod touch across the room - i dont want 2 of the same songs anymore, i dont wanna be charged twice these bands are making it very difficult to remember the last album i had this stuff on....i dont know my music anymore it keeps changing
    So, are we to assume that a band you like, produce albums with songs on them that you already have, on other albums?
    If so, that's down to the band, not Apple. The only answer to that is that you should check for yourself whether you already have a particular song and if you do, don't buy it again. However, you should also consider that buying the full album (with a song you don't want) may be cheaper than buying the individual songs that you do want.

  • Little help please with forwarding traffic to proxy server!

    hi all, little help please with this error message
    i got this when i ran my code and requested only the home page of the google at my client side !!
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727)
    Host: www.google.com
    Connection: Keep-Alive
    Cookie: PREF=ID=a21457942a93fc67:TB=2:TM=1212883502:LM=1213187620:GM=1:S=H1BYeDQt9622ONKF
    HTTP/1.0 200 OK
    Cache-Control: private, max-age=0
    Date: Fri, 20 Jun 2008 22:43:15 GMT
    Expires: -1
    Content-Type: text/html; charset=UTF-8
    Content-Encoding: gzip
    Server: gws
    Content-Length: 2649
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: MISS from linux-e6p8:3128
    Via: 1.0
    Connection: keep-alive
    GET /8SE/11?MI=32d919696b43409cb90ec369fe7aab75&LV=3.1.0.146&AG=T14050&IS=0000&TE=1&TV=tmen-us%7Cts20080620224324%7Crf0%7Csq38%7Cwi133526%7Ceuhttp%3A%2F%2Fwww.google.com%2F HTTP/1.1
    User-Agent: MSN_SL/3.1 Microsoft-Windows/5.1
    Host: g.ceipmsn.com
    HTTP/1.0 403 Forbidden
    Server: squid/2.6.STABLE5
    Date: Sat, 21 Jun 2008 01:46:26 GMT
    Content-Type: text/html
    Content-Length: 1066
    Expires: Sat, 21 Jun 2008 01:46:26 GMT
    X-Squid-Error: ERR_ACCESS_DENIED 0
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: NONE from linux-e6p8:3128
    Via: 1.0
    Connection: close
    java.net.SocketException: Broken pipe // this is the error message
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:259)
    at SimpleHttpHandler.run(Test77.java:61)
    at java.lang.Thread.run(Thread.java:595)
    at Test77.main(Test77.java:13)

    please could just tell me what is wrong with my code ! this is the last idea in my G.p and am havin difficulties with that cuz this is the first time dealin with java :( the purpose of my code to forward the http traffic from client to Squid server ( proxy server ) then forward the response from squid server to the clients !
    thanx a lot,
    this is my code :
    import java.io.*;
    import java.net.*;
    public class Test7 {
    public static void main(String[] args) {
    try {
    ServerSocket serverSocket = new ServerSocket(1416);
    while(true){
    System.out.println("Waiting for request");
    Socket socket = serverSocket.accept();
    new Thread(new SimpleHttpHandler(socket)).run();
    socket.close();
    catch (Exception e) {
    e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private DataOutputStream writer;
    private DataOutputStream writer2;
    private BufferedReader reader;
    private BufferedReader reader2;
    public SimpleHttpHandler(Socket client){
    this.client = client;
    public void run(){
    try{
    this.reader = new BufferedReader(
    new InputStreamReader(
    this.client.getInputStream()
    InetAddress ipp=InetAddress.getByName("192.168.6.29"); \\ my squid server
    System.out.println(ipp);
    StringBuffer buffer = new StringBuffer();
    Socket ss=new Socket(ipp,3128);
    this.writer= new DataOutputStream(ss.getOutputStream());
    writer.writeBytes(this.read());
    this.reader2 = new BufferedReader(
    new InputStreamReader(
    ss.getInputStream()
    this.writer2= new DataOutputStream(this.client.getOutputStream());
    writer2.writeBytes(this.read2());
    this.writer2.close();
    this.writer.close();
    this.reader.close();
    this.reader2.close();
    this.client.close();
    catch(Exception e){
    e.printStackTrace();
    private String read() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    private String read2() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader2.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    Edited by: Tareq85 on Jun 20, 2008 5:22 PM

  • In your tutorial, having a problem linking the "Search the LabVIEW bookshelf" (on my D drive) help function with my Acrobat 4.0 reader(on my C drive)

    When I was using the temp system demo vi, I selected Help>>Search the LabVIEW bookshelf. I then had a pop up window display tell me that the manual file "D:\National Instruments\LabVIEW 6.1\manuals\lvlib.pdf" could not be opened. I then did a search for this file and found that the pdf file is where it should be. I also checked to see that my Acrobat 4.0 reader files were in tact and they are. I was able to open up this file in Acrobat 4.0 but only by double clicking the name of the pdf file while it is highlighted in my find files function box (It also works if I go directly to the pdf file itself in its folder location a
    nd double clicked on it). Nevertheless, for some reason when a vi is opened and when using the Help function in order to use "Search the LabVIEW bookshelf", it does not link to my Acrobat reader. Are my LabVIEW configuration settings wrong? I just recently had LabVIEW 6.1 installed. What do I need to do in order for LabVIEW to properly link up to my AcroRD32.exe file?

    In your LabVIEW 6.1\help directory, please replace the lvmanual.vi with the attached VI and try to select Help>Search the LabVIEW Bookshelf again.
    If it still does not work, please post a reply.
    Thank you,
    Kelly Holmes
    LV Documentation
    Kelly H
    LabVIEW Documentation
    National Instruments
    Attachments:
    lvmanual.vi ‏49 KB

  • Greetings,   I need a little help. I have a WRT54G Wirele...

    Greetings,
    I need a little help. I have a WRT54G Wireless Router, and it worked well for years with my Alcatel DSL Modem (Bellsouth/ATT).  The modem went out and it was replaced with Westell Modem.  When I bypass the router I have no problem connecting to the Internet, however when I connect the router--no connection.  I thought it would not be a problem swapping the modem out.  I am running XP with Norton Internet Security and Anti-virus.  I have disabled Norton and do not believe that to be the problem.  Do I have to reconfigure the router?  If so, can I do it with the original install CD?  (I am disabled and the original CD/instructions/box is in the attic and I cannot get it easily.)  I have read several different threads, but they do not specifically address my problem.  Any assistance is appreciated.  Eddy

    Many Westell modems are actually "modem-routers" and they use the same 192.168.1.1  address space as your WRT54G.  This is the root of your problems.
    Try the settings at this URL.
    http://www.dslreports.com/faq/6323
    Note that the "WAN" port on the BEFSR41 in the example is the same as the "Internet" port on your WRT54G.
    Please let me know whether or not this worked for you.

  • How can I get help function?

    My Mail help function is not working. After clicking on help, window appears, but stays empty. All other applications have properly working help function.

    Try rebuilding your spotlight index.
    1. Apple menu -> System Preferences -> Spotlight -> Privacy.
    2. Add the hard drive to the panel by dragging it in.
    3. Remove it by selecting it and hitting the minus sign in the bottom left corner of that panel.
    4. Wait until when you look at the Spotlight menu it no longer says that it is indexing. The Spotlight menu is in the upper right corner of the screen, and has a blue circle with a white magnifying glass.

  • Error When Trying to use SAP Help Function

    I receive the following Error while simply clicking on Help in SAP.  I put a ticket in and out IT support was by SAP the following highly intelligent and helpful info/advice This is an actual quote!!!!:
    “This option is not available if they are looking for training on how to use SAP, then need to request this from SAP support or an individual that is working with SAP in their departnemtn"
    I was of the opinion that software comes with the help function in most cases (I say most because I could imagine someone making it a separate module but it would not go over well at all).  I
    I found a folder on the corporate shared drive called SAP_Help and took the following screen shots and there was a notedpad doc that listed every chm file and what it covered. 
    Next I opened SAP from Windows Server 2008 Applications Portal and so after I RDP'd into the server help works...
    Anyone know why this is happening I went to school and got a degree in Accounting.

    It seems you are using wrong client ID. Make sure your logon pad has right details. You should verify this with your basis team.
    If the problem persists then try re-installing. But before you do that you can execute sapbexc.xla which is in the c:\program files\sap\bw. Type c:\ in cell c3 and click "start button". Any red flag means you have wrong version dll/ocx on your local drive, in that case you should reinstall with right patches.
    if this solution helps u then pls assign points

Maybe you are looking for

  • Voice memos has stopped working

    I've just tried to use my voice memos on my iPhone 4 and when trying to record, I've noticed it's not working. The sound is being picked up, as seen by the noise meter moving, but it isn't actually working. I hit record and exited the program. The re

  • Show multiple thumbnails / documents

    Hi, got a problem with Acrobat 8.12 / WinXP. When I open two (or more) PDFs in order to drag and drop pages from one doc to another, I can't get the program to show two thumbnails pages the same way as it worked previously. Now there is only one thum

  • Help with ABAP Routine

    Hello All! I am getting data from Oracle into BW. One of the tables has 7 Objects. I am creating Info Objects as data targets and using the update rules to map the description of each of the object. For example: Zip Code (With master data and no text

  • Aggregate

    How to create parent child relationship under Aggregate -or like a tree type in aggregate where couple of aggregates fall under/subset of one aggregate ?

  • Siebel 8.1.1.9 application won't come up

    Hello All, I recently upgraded from 7.8 to 8.1.1.9 and the upgrade was successful. I can bring the Web & Dedicated client with vanilla SRF. However, I cannot bring it up with customised fully compiled SRF. I get this error: SBL-DAT-00383: Field 'Acco