Problem when creating list box in table control

Hi every body ,
                  I am placing a list box in table control ,  the list box is coming perfectly but
when I am scrolling  or pressing enter the data in that field is clearing.
   if I remove the list box , and i enter the data directly and scrolling or press enter
the data is not clearing.
But only for list box only it is be having like that
what is the problem?
  the code is as follows
*{   INSERT         DEVK935807                                        1
*&      Module  glaccuontlist  INPUT
      text
module glaccuontlist input.
type-pools vrm.
tables: zglaccount.
data:
        name  type vrm_id,
        list  type vrm_values,
        value like line of list.
       clear:value.
       refresh: list.
        name = 'ACGL_ITEM-HKONT'.
        select * from zglaccount.
         value-key = sy-dbcnt.
         value-text = zglaccount-hkont.
         append value to list.
         clear value.
        endselect.
      call function 'VRM_SET_VALUES'
        exporting
          id                    = name
          values                = list
      EXCEPTIONS
        ID_ILLEGAL_NAME       = 1
        OTHERS                = 2
      if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
endmodule.                 " glaccuontlist  INPUT
*}   INSERT
thanks in advance.\
srinivas.

Hi srinivasa,
try it.
select * from zglaccount.
<b>value-key = zglaccount-hkont.</b>
value-text = zglaccount-hkont.
append value to list.
clear value.
endselect.
Regards
Allan Cristian

Similar Messages

  • Problem with list box in table control (Module pool) .

    Hi,
    I'm facing a problem while populating values in List Box..
    While I'm clicking a value from the list box it is not being hold in that box...box got blanked.
    Please help me to solve this.

    process before output.
    module pop_drop_down.
    module pop_drop_down output.
      name1 = 'IO5'.
      REFRESH list1.
      LOOP AT it_zpoitshead INTO wa_zpoitshead.
        value1-key = wa_zpoitshead-createdt.
        value1-key = wa_zpoitshead-its_ebeln.
        APPEND value1 to list1.
      ENDLOOP.
      CLEAR value1.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id                    = name1
          values                = list1
       EXCEPTIONS
         ID_ILLEGAL_NAME       = 1
         OTHERS                = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endmodule.                 " pop_drop_down  OUTPUT

  • List box for table control

    Hi,
    I need a list box for an input field in table control.
    In brief. I have 5 fields in table control out of which i have to enter values manually for 1 field and for 1 field i need a list box or drop down and then when i press enter the remaining fields should be populated.
    i got the code working but now they need the drop down list for the second input field.
    If anybody could provide with the code it would be real helpful and  iwas confused whether i need to write code in pov or some where else.
    the field for which i need list box is taken from dictionary .
    any help would be geatly appreciated.
    suchitra

    Refer this link:
    table control Drop down list
    Regards,
    ravi

  • Problem when creating a transparent ddic table in a report

    Hi!
    I have a problem creating a transparent table dynamical in a report. I tried both function modules that I could find (DDIF_TABL_PUT and RPY_TABLE_INSERT) but I wasn't able to get a table created.
    Now I'm trying it with RPY_TABLE_INSERT (seems easier) but I'm getting an error (i think IX008) after running the report that the name is not proper for a view... I don't even want to create an view... I want to create a transparent table.
    Here is the coding passage:
    lv_tabname = 'ZD000000_0000000'.
    CLEAR: lt_tabl_fields.
    lt_tabl_fields-tablname = lv_tabname.
    lt_tabl_fields-fieldname = 'GUID'.
    lt_tabl_fields-dtelname = 'ZMODULE_GUID'.
    lt_tabl_fields-checktable = ''.
    lt_tabl_fields-keyflag = 'X'.
    lt_tabl_fields-position = 1.
    lt_tabl_fields-reftable = ''.
    lt_tabl_fields-reffield = ''.
    lt_tabl_fields-inclname = ''.
    lt_tabl_fields-notnull = 'X'.
    APPEND lt_tabl_fields.
    CLEAR: lt_tabl_fields.
    lt_tabl_fields-tablname = lv_tabname.
    lt_tabl_fields-fieldname = 'TIMESTAMP'.
    lt_tabl_fields-dtelname = 'ZCREATION_TSTMP'.
    lt_tabl_fields-checktable = ''.
    lt_tabl_fields-keyflag = ''.
    lt_tabl_fields-position = 2.
    lt_tabl_fields-reftable = ''.
    lt_tabl_fields-reffield = ''.
    lt_tabl_fields-inclname = ''.
    lt_tabl_fields-notnull = 'X'.
    APPEND lt_tabl_fields.
    j = 3.
    *& Get structure of current module
    CALL METHOD lr_analysis_module->get_field_list
      IMPORTING
        er_field_list = lr_field_list.
    *& Get first field
    i = 1.
    CALL METHOD lr_field_list->get_field
      EXPORTING
        index = i
      RECEIVING
        field = lr_field.
    WHILE lr_field IS NOT INITIAL.
      CLEAR: lt_tabl_fields.
      lt_tabl_fields-tablname = lv_tabname.
      lt_tabl_fields-fieldname = lr_field->get_name( ). "fieldname in module
      lt_tabl_fields-dtelname = lr_field->get_reference_type( ). "fieldtype for current field
      IF lt_tabl_fields-dtelname IS INITIAL.
        lt_tabl_fields-dtelname = lr_field->get_type( ).
      ENDIF.
      lt_tabl_fields-checktable = ''.
      lt_tabl_fields-keyflag = ''.
      lt_tabl_fields-position = j.
      lt_tabl_fields-reftable = ''.
      lt_tabl_fields-reffield = ''.
      lt_tabl_fields-inclname = ''.
      lt_tabl_fields-notnull = 'X'.
      APPEND lt_tabl_fields.
      j = j + 1.
      i = i + 1.
      CALL METHOD lr_field_list->get_field
        EXPORTING
          index = i
        RECEIVING
          field = lr_field.
    ENDWHILE.
    CLEAR: ls_tabl_inf.
    ls_tabl_inf-tablname = lv_tabname.
    ls_tabl_inf-language = sy-langu.
    ls_tabl_inf-tablclass = 'TRANSP'.
    ls_tabl_inf-sqltab = ''.
    ls_tabl_inf-buffered = ''.
    ls_tabl_inf-shorttext = lv_comment.
    ls_tabl_inf-acttype = '00'.
    ls_tabl_inf-inclexist = ''.
    ls_tabl_inf-masterlang = sy-langu.
    ls_tabl_inf-maintflag = 'X'.
    ls_tabl_inf-deliverycl = 'A'.
    ls_tabl_inf-mod_user = sy-uname.
    ls_tabl_inf-mod_date = sy-datum.
    ls_tabl_inf-mod_time = sy-uzeit.
    CLEAR: ls_tabl_technics.
    ls_tabl_technics-tablname = lv_tabname.
    ls_tabl_technics-language = sy-langu.
    ls_tabl_technics-tablcat = 4.
    ls_tabl_technics-tablclass = 'APPL0'.
    ls_tabl_technics-buffering = ''.
    ls_tabl_technics-keyfieldno = ''.
    ls_tabl_technics-logging = ''.
    ls_tabl_technics-storetype = ''.
    ls_tabl_technics-moduser = sy-uname.
    ls_tabl_technics-moddate = sy-datum.
    ls_tabl_technics-modtime = sy-uzeit.
    ls_tabl_technics-transpflag = 'X'.
    ls_tabl_technics-translate = ''.
    CALL FUNCTION 'RPY_TABLE_INSERT'
      EXPORTING
    *   LANGUAGE                = SY-LANGU
        table_name              = lv_tabname
    *   WITH_DOCU               = ' '
    *   DOCUTYPE                = 'T'
    *   TRANSPORT_NUMBER        = ' '
       DEVELOPMENT_CLASS       = 'ZD000000'
        tabl_inf                = ls_tabl_inf
       tabl_technics            = ls_tabl_technics
      TABLES
        tabl_fields             = lt_tabl_fields
    *   DOCU_TABLE_USER         =
    *   DOCU_TABLE_TECH         =
    * EXCEPTIONS
    *   CANCELLED               = 1
    *   ALREADY_EXIST           = 2
    *   PERMISSION_ERROR        = 3
    *   NAME_NOT_ALLOWED        = 4
    *   NAME_CONFLICT           = 5
    *   DB_ACCESS_ERROR         = 6
    *   OTHERS                  = 7
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Any ideas?
    Thanks and best regards.

    thanks for the quick response Volker.
    When I use the DB_CREATE_TABLE fm I only can create fields with datatype declaration (ddfield-datatype), but I need a fm where I can also create a field with a data element, because I'm generating the fields dynamically in the report based on the datatype/data element for a field.
    edit: I'll use the datatype/length/decimal of the corresponding data element. this should work...
    Edited by: Toni Fabijancic on Feb 10, 2009 3:42 PM

  • Bullet problem when creating text frames and tables in InDesign CS5

    Every time I create a new text frame or table in InDesign CS5 and paste information there, the first row in the table or several lines of text come out with bullet points. I'm sure this is a setting or style at some point I created and now am unsure of how to delete. I would like the new text frames and tables to not include bullet points as a default when imported or pasted. Any thoughts? Thanks!

    Defaults for text in the current document are made with no text selected. Turn off bullets and they should stay off (but check the styles, too, you might have accidentally set a bulleted style as the defualt and you should change the default style instead). If this is happening in all files, you need to do it with nothing open to reset the default for all new documents (existing files, unfortunately, need to be fixed one at a time).

  • Problem when creating Database (Database, OS and hardware Configuraiton included)

    Problem when creating Database:
    Below are the problems, which I faced during creation of database. I have mentioned both the problem separately. Plus the log file maintained by Oracle during installation. It might help in diagnosing the error. Plus a little conclusion with I turned up to.
    There are two problems, when creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Log File Showing Error :
    Result code for launching of configuration tool is 0
    Launched configuration tool Oracle Database Configuration Assistant
    Command which is being spawned is C:\Program Files\Oracle\jre\1.1.7\bin/jrew.exe -Duser.dir=d:\oracle\ora81\assistants\dbca\jlib -classpath ";C:\Program Files\Oracle\jre\1.1.7\lib\rt.jar;C:\Program Files\Oracle\jre\1.1.7\lib\i18n.jar;d:\oracle\ora81\jlib\ewt-3_3_6.jar;d:\oracle\ora81\jlib\share-1_0_8.jar;d:\oracle\ora81\jlib\swingall-1_1_1.jar;d:\oracle\ora81\assistants\dbca\jlib\dbassist.jar;d:\oracle\ora81\assistants\jlib\jnls.jar;d:\oracle\ora81\assistants\jlib\acc.jar;d:\oracle\ora81\jlib\help-3_1_8.jar;d:\oracle\ora81\jlib\ice-4_06_6.jar;d:\oracle\ora81\jlib\netcfg.jar;" DBCreateWizard -progress_only -responseFile NO_VALUE -createtype seed -numusers NO_VALUE -apptype NO_VALUE -cartridges NO_VALUE -options NO_VALUE -demos NO_VALUE -seedloc d:\oracle\ora81\starterdb -sid ora8i -orabase d:\oracle -clususer NO_VALUE -cluspswd Protected value, not to be logged -nodeinfo NO_VALUE -gdbName ora8i
    Invalid Exit Code. The following result code will be used for configuration tool: 1
    Configuration tool Oracle Database Configuration Assistant failed
    The datafiles will be copied from the CD to d:\oracle\oradata\ora8i. The Oracle Database Configuration Assistant will begin creating the database.
    An Oracle database will be created for you. The database name will be ora8i. The system identifier for the database will be ora8i. The password for the INTERNAL account will be ******, the SYS account will be change_on_install and the SYSTEM account will be manager.
    Log File of Installation:
    The above code is a part of the log file, which is generated by Oracle installer at C:\Program Files\Oracle\Inventory\Log\..
    I just pasted the part of code, highlighted is the code showing error with Oracle Database Configuration Assistant.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    Dont't worry about that. Before you
    create a table(or view), it is wise to
    drop the table(or view) with the same name.
    If the name doesn't exist, of course there
    is an error message. See the following script:
    -------------------begin-----------
    drop table students cascade constraints;
    create table students (
    sid varchar2(5),
    fname varchar2(20),
    lname varchar2(20) not null,
    minit char,
    primary key (sid));
    --------------end-----------------
    Good day!
    null

  • Problem when creating contract  with foreign trade / customs

    Hi,
    I encountered a problem when creating contract / outline agreement.
    I used ME31K to create a contract with a vendor outside of our country. I suppose that I should be able to see "Foreign Trade / Customs" in "Header" menu, but this entry is gray, I cannot enter it.
    I tried to create a scheduling agreement using ME31L with the same vendor and material, I can see "Foreign Trade / Customs" information. I suppose these two process are similar, aren't they?
    Btw., I checked the master data according to this thread:
    http://help.sap.com/saphelp_46c/helpdata/en/ed/3b6cc697e711d1b4e20000e82d81b0/content.htm
    Can anyone give me some hint?
    Thanks!
    Charlie

    These two processes are different:
    The Contract agreement or the Outline Agreement is that create the centrally contract (cross-plant) where it can maintain different pricing conditions for each and every plant. It creates the Release Order with reference to Outline Agreement. No detailed delivery schedule can be made in the Release Order. No Release documentation is created. Only time-dependent conditions can be created, Some Item Category 'M' and 'W' can be used.
    Whereas the Scheduling Agreement is the Plant Location what must be entered in the Scheduling Agreement. Its no need to create any other purchasing document except for delivery schedule line via Transaction ME38 or MRP running (with the appropriate setting of Source List). Delivery Schedule line items are created subject to your specific requirement. It can create both Scheduling Agreement with or without release of Documentation (subject to the Document Type LP or LPA) with the selection of either FRC or JIT delivery schedule. Either time-dependent or time-independent conditions can be created subject to the customizing in the Document Type of the Scheduling Agreement. Item Category 'M' and 'W' can not be used.

  • "Problem when creating project"

    Hi,
    I am trying to create a new Composite Application Services project using Netweaver studio 7.011. When it came to the final step of the Project creation wizard, an error message pop-up saying "Problem when creating project".
    I have tried the methods posted in the forums, but its doesn't work for me.
    "Problem when creating project"
    Problem creating a composite applications project
    Can advise on how to resolve this?
    I am currently using Java 1.4.10 and NW2004s SP11.
    Thanks a lot.
    Regards,
    aiwei

    Hi Chandan,
    I still encounter the error message and this time, it only create the ejbmodule folder. In mine previous creation, I have dictionary, ejbmodule, metadata and webdynpro.
    I realised that there is some different in the .plugin folder and the previous .plugin folder of the .metadata.
    Not sure whether is it affected by the .plugin folder. Is there a list of .plugin required?
    can advise?
    Thanks again.

  • How to add check box in table control?

    Dear frnds,
    In our requirement i am used tablec ontrol for dialog programming, but i am confused about addition of check box as fields in table control.
    Any help are welcome from your side.

    Hi,
    Chk this demo program: DEMO_DYNPRO_TABCONT_LOOP_AT
    & RSDEMO02.
    Another way:
    Go to the edit mode of the screen select the table control column you want to make it as check box and follow the menu EDIT->CONVERT->check box.
    (make sure that column definition in itab/ddtab is of size 1 char)
    Also chek out this link:
    Add Check box in Table control
    Hope these help you.
    Regards,
    Anjali

  • Syntax error when creating a user-defined table type in SQL Server 2012

    Why am I getting a syntax error when creating a user-defined table type in SQL Server 2014?
    CREATE TYPE ReportsTableType AS TABLE 
    ( reportId INT
    , questionId INT
    , questionOrder INT );
    Results:
    Msg 156, Level 15, State 1, Line 1
    Incorrect syntax near the keyword 'AS'.

    Hope these posts could help, 
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/37a45a9a-ed8c-4655-be93-f6e6d5ef44be/getting-incorrect-syntax-while-creating-a-table-type-in-sql-server-2008-r2?forum=transactsql
    Regards, Dineshkumar,
    Please Mark as Answer if my post answers your question and
    Vote as Helpful if it helps you

  • Problem when creating a sales order with reference by BAPI

    I am facing one problem when creating Sales Order.
    <b>The scenario is like this while creating SO With reference to an Order type, a new SO will be automatically created with a diff order Type</b>.
    I am using "BAPI_SALESORDER_CREATEFROMDAT2".
    I am calling this BAPI in USEREXIT_REFRESH_DOCUMENT.
    Am I using the right exit to call this Bapi ?
    <b>Problems are like :
    1. Ref Sales Order creating without Sales Unit .
    2. "Object Status does not exist" error msg is coming for Header and Item level(when clicking the status tab and then object status pushbutton).</b> But if testing the bapi from SE37 in test sequence....no such problem persists.
    As for example in case of sales unit,in the debugging mode i have seen that BAPI uses a perform to fill the values in the VBAP structure.But after that when it come back to the main program VBAP remains blank.This ocuurs when the BAPI is called from the exit whereas  if tested from SE37, VBAP retains the value.
    Can u suggest in this ? This is very very urgent............
    Thx in Adv.........................

    Thanks........
    Your suggestion was a great help to me.I have used a custom FM and called it in <b>starting new task</b>.
    Since i am a university fresher working in SAP for nearly 1 year.....can you please explain me the difference between <b>in update task</b> and <b>starting new task</b>.Why the problem was occuring for which you have suggested to call a custom function module.
    what is V1 update and V2 update?Is it attached with asynchronous ans synchronous update.It would be a great help to me if you kindly clear my confusions....
    thanks in advance.

  • How do I execute some code when a line of a table control is selected?

    Hi,
    I would like to execute some code when a line of a table control is selected.  At the moment I have to select one or multiple rows and then press enter, this forces a screen refresh and my code is executed but I would like the code to be executed as soon as any line is selected.
    I've done something like this using ALV grids and object orientated code but is there a way of doing this in a normal non-OO table control?
    Thanks in advance.
    Gill

    Hi,
    U need to declare a char1 field for marking (mark field).  This will reflect with value 'X' in your tcontrol internal table for all the selected rows. 
    Now u need to handle the okcode for enter in your PAI.
    There u need to loop through the table for all marked fields.
    There after u can do what ever u want.
    Venkat.

  • Problem when creating CAF Entity Service finder Methods

    Guys,
    Can any one please suggest me appropriatly to the below problem.
    I am using NWDS 7.06. I have no problem when creating CAF project, Application Service and Entity Service even.
    But in the Entity Service:
    1. Add a string or longtext attribute.
    2. try to create a custom finder method in operations tab, during that operation i am  not finding the attribute which i have created in step1.
    That means i am not able to create the my own finder methods with parameters.
    I was able to do that in some version long ago but i have forgotten that NWDS version.
    summary of Problem Is: " Cannot create custom methods with custom parameters in Entity Service"
    Can you please suggest me the right version or a solution to this problem on urgent basis please.
    I promise you that i will give you full points to you who ever gives me the right solution.
    Please mail your suggestions to [email protected]

    Guys,
    I have solved the problem successfully. Thanks for your attention.

  • Problem when Creating Project (Composite Application Services) in NWDS

    I've seen a few posts regarding this but I don't feel as if any real solution was given.
    I just installed Netweaver Developer Studio (7.0.15) with the current JDK/JRE (1.6.0_07).  When trying to create a new Composite Application Services project within the Studio, using the new project wizard, I get an error: Problem when Creating Project.
    I get the EJB Module and Dictionary to create within my navigator with no problems, however, during the creation of the metadata, the error occurs.  I do have the metadata folder appear within the navigator, but nothing in it.  None of the other three items are created.
    I have tried the attempt at deleting the metadata folder within my workspace directory and trying again but the same exact result occurs.
    Is there any other solution out there for this problem besides attempting to find older versions of NWDS, etc. that are more "stable"?
    Thank you!

    Durga,
    Very simple but effective solution.
    I had tried uninstalling / re-installing NWDS with no effect but uninstalling / re-installing NWDS AND all java related products on my machine did work.
    Note: For anyone else with this issue in the future.  I installed the Java SDK / JRE 1.4.2_18 with NWDS 7.0.15 in case this is also a possible issue with versions.
    Thanks, Durga!

  • Problem when creating Database with Database, OS and hardware Configuraiton

    Problem when creating Database:
    There are two problems, which I faced during creation of database. When creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    user563502 wrote:
    I am working on Solaris 8. What is Alert_SID.log? where can I find it?
    ThanksFor the responsible of the upgrade of Oracle database, not even know what Alert log is?
    to be honest with you, this is not your work.

Maybe you are looking for

  • Integration of SAP R/3 system with BOXI3.0 and SAP EP

    Hi experts,      I have a requirement like getting data from SAP R/3 system and make it as Xcelsius Dashboard. So i have installed BOXI3.0, SAP Integration Kit, Live Office, Crystal Report and Xcelsius. Then i have followed this blog /people/ingo.hil

  • HT204365 i can't open a pdf in my library

    I have opened several pdfs in iBooks.  I would like to view them again, but also they appear in the library, there does not appear to be any means to open them.  Double-tapping, holding the icon down, nothing. What good is this app? i

  • Formatting with partition by?

    scott@ntw>with tbl as   2      (select '01' as c1, 'Q012004' as c2, 5 as c3 from dual union all   3       select '01', 'Q022004', 2 from dual union all   4       select '01', 'Q032004', 10 from dual union all   5       select '02', 'Q012004', 8 from

  • Question about migrating dreamweaver to new computer

    I'm somewhat of a novice when it comes to dreamweaver and I recently had to go out and get a new computer after cracking the screen of my old laptop.  Now I need to migrate dreamweaver onto my new system but also want to retain the directory structur

  • Configuring usb modem in Solaris 10

    Hi All, I have Solaris 10 3/05 installed , I have connected a usb modem to the box and on executing cfgadm -l , I am able to see usb0/2 as configured . I donot know how to dial out to my isp using the modem . Please do let me know the procedure or so