Newly added field does not show in table genarator.

Hi,
     I have added one more field to my custom table.
When I make new entries in table maintanance, the new field does not show up.
Thank U for Ur time.
Cheers,
Sam

hai sam raj,
first activate your database table .
if any error occurs better you go to
se14(database utility) -
>give table name in object and select the table check box and click the edit push button.
and then click activate and adjust pushbutton.
surely you ll get some idea.
reward points if those idea helps.
thanks,
velu.

Similar Messages

  • Added fields does not show up in the RSA6

    Hello.
    Problem 1:
    I am enhancing 0bbp_td_sc_1. I added a field to the structure, but it does not show up in the rsa6. ( I double clicked on the extractor name).  If I go to the extractor structure (BBP_SC_BW_GET_TD_STRUC), I am able to see the append. The structure is activated. The append structure is also activated (Zabbp_sc_bw_get_td_struc).
    What can be wrong? I did not see the added the field in the ROOSFIELD table either.
    Problem 2:  What is the difference If I populated the field value from “RSU5_SAP_BADI” to the rsap001 user exit “EXIT_SAPLRSAP_001”?
    I am not able to run debug RSU5_SAP_BADI. STOP does not stop. While I debug, I am able to see the field ( The field I added from problem 1). But the value never populated.
    I am able to run the debug for EXIT_SAPLRSAP_001. I see the data populated for the field. But in RSA3 result, I am not able to see it.
    Thanks in advance.

    Hi
    1. this is usualy the case if the append struct is not active or you did not add the new fields in the append struct.
    I would suggest to remove the fields save activate and re do the process making sure you either use an existing append struct or create a new one.
    2. BADI are different then UE in the way they are implemented.  I will recommend using UE.
    You will not see the enhanced fields in the out put of RSA3 so I stop on the last line and check the values in the struct.
    to debug I would either go to the UE (in a different session) and put a break point there and run RSA3 or check the debug in RSA3 and then find the SAPEXIT that calls the UE.
    I hope this helps.
    Reg's
    Edan

  • Database Adapter Wizard does not show accessible table

    HI guys,
    in the wizard I am unable to see the tables which I need to use for database adapter.
    But I do have access to those tables, and able to select from them in SQL worksheet from with in Jdev.
    I dont own the tables, but my user id have readable access to those tables.
    Any help is appreciated.
    P.S. If I didnt explain it properly, plz let me know. It really creates lot of access issues if I can only create DB adapter on My owned tables.
    :)

    Hi there,
    please see the answer to your duplicate post on the BPEL forum:
    DB Adapter does not show selectable tables
    In general BPEL forum gets a lot more traffic but I will try to address questions on both equally.
    Thanks
    Steve

  • PI sheet does not show the table of materials to be consumed.

    Hello,
    Weu2019re trying to customize the pi-sheet on SAP 4.7 (SAP-APPL Release 470) and weu2019re having some problems.
    On transaction O12C (Define Process Instruction Categories), weu2019ve created an Instruction Category for Material Consumption using Type of the process data request equal to Repeated process data request. Doing this, when we create a Process Order, the PI sheet does not show the table of materials to be consumed.
    If we use Type of the process data request equal to Simple process data request instead of Repeated process data request, the PI Sheet works well (The table of materials to be consumed are showing).
    Thanks in advance.

    Hi,
    Is the issue resolved...? If yes then how...
    If not, then can you please elaborate more on the process instructions charateristics you have used. Just list first ten characteristic and there values.
    Regards
    Neeraj

  • My iCloud is set up and seems to work. However, a newly added contact does not sync from the Macbook to the iphone and iPad. What am I doing wrong?

    My iCloud is set up and seems to work. However, a newly added contact does not sync from the Macbook to the iphone and iPad. What am I doing wrong? Thanks, txstan

    Apparantly it is, On My Mac contacts don't appear in iCloud, anywhere.
    Put all your contacts on all of your devices in iCloud (assuming that's where you want them to be)
    Go to www.icloud.com, login and see what you actually have in the account.

  • Internal table field does not show data.

    hello experts,
    I am currently modifying a code in a report where it shows PO's and it amount, downpayment, Invoice, GR, payment and balance. Now the problem is, some of the PO amount(it gets the amount from ekpo-netwr) does not show on the report output. the field is t_amount-netwr. I really need help on this one guys. Thanks and take care!
    PERFORM process_with_budat.
    FORM process_with_budat.
      DELETE t_pohistory WHERE hist_type <> 'A'
                           AND hist_type <> 'E'
                           AND hist_type <> 'Q'.
      LOOP AT t_account.
        DELETE it_dtl WHERE ebeln = t_account-ebeln
                        AND psphi IS initial.
        DELETE t_ekpo WHERE ebeln = t_account-ebeln
                        AND ebelp = t_account-po_item.
        t_proj-ebelp = t_account-po_item.
        SELECT SINGLE psphi FROM prps INTO t_proj-psphi
              WHERE posid = t_account-wbs_elem_e.
        CHECK sy-subrc = 0.
        LOOP AT t_pohistory WHERE po_item = t_account-po_item
                              AND ebeln   = t_account-ebeln.
          t_amount-ebeln = t_account-ebeln.
          t_amount-psphi = t_proj-psphi.
          ON CHANGE OF t_pohistory-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
          ENDON.
          IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ELSEIF v_ebeln <> t_account-ebeln AND
                 v_ebelp <> t_account-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ELSEIF v_ebeln = t_account-ebeln AND
                 v_ebelp <> t_account-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ENDIF.
          CHECK NOT t_amount-psphi IS INITIAL.
          if t_pohistory-pstng_date LE pa_augdt.
         IF t_pohistory-pstng_date IN so_augdt.
            IF t_pohistory-db_cr_ind = 'H'.
              t_pohistory-val_loccur = - t_pohistory-val_loccur.
              t_pohistory-val_forcur = - t_pohistory-val_forcur.
              t_pohistory-cl_val_loc = - t_pohistory-cl_val_loc.
            ENDIF.
            IF t_pohistory-hist_type = 'A'.
              IF t_pohistory-currency <> 'PHP'.
                t_amount-dpamt = t_amount-dpamt + t_pohistory-val_forcur.
              ELSE.
                t_amount-dpamt = t_amount-dpamt + t_pohistory-val_loccur.
              ENDIF.
            ELSEIF t_pohistory-hist_type = 'E'.
              IF t_pohistory-currency <> 'PHP'.
                t_amount-gramt = t_amount-gramt + t_pohistory-val_forcur.
              ELSE.
        t_amount-gramt = t_amount-gramt + t_pohistory-val_loccur.
              ENDIF.
            ELSEIF t_pohistory-hist_type = 'Q'.
              IF t_pohistory-currency <> 'PHP'.
           t_amount-iramt = t_amount-iramt + t_pohistory-val_forcur.
              ELSE.
                t_amount-iramt = t_amount-iramt + t_pohistory-val_loccur.
              ENDIF.
            ENDIF.
            IF t_pohistory-currency <> 'PHP'.
              IF t_pohistory-val_loccur = 0 OR
                 t_pohistory-val_forcur = 0.
                t_amount-tramt = t_amount-iramt.
               t_amount-tramt = t_amount-dpamt.
              ELSE.
                t_amount-tramt = t_amount-iramt.
              ENDIF.
            ELSE.
              t_amount-tramt = t_amount-iramt.
             t_amount-tramt = t_pohistory-cl_val_loc + t_amount-dpamt.
            ENDIF.
            IF NOT t_pohistory-cl_val_loc IS INITIAL.
              CONCATENATE t_pohistory-mat_doc t_pohistory-doc_year
                    INTO bkpf-awkey.
             SELECT SINGLE * FROM bkpf
                   WHERE awkey = bkpf-awkey.
    *AVH - removed wrbtr and dmbtr from selection
              SELECT augdt augbl shkzg FROM bsak
                    INTO (bsak-augdt,bsak-augbl,bsak-shkzg)
                    WHERE bukrs = bkpf-bukrs
                      AND gjahr = bkpf-gjahr
                      AND belnr = bkpf-belnr.
    *AVH
                if not bsak-augbl is initial.
                  select belnr gjahr from bsak
                   into (bsak-belnr, bsak-gjahr)
                    where bukrs = bkpf-bukrs
                     and belnr = bkpf-belnr
                     and gjahr = bkpf-gjahr.
                    select awkey from bkpf
                     into v_bkpf_aw
                     where bukrs = 'GLOB'
                       and belnr = bsak-belnr
                       and gjahr = bsak-gjahr.
                      w_len = strlen( v_bkpf_aw ).
                      w_off = w_len - 4.
                      v_awkey_1 = v_bkpf_aw+0(10).
                      v_awkey_2 = v_bkpf_aw+w_off(4).
                      select single dmbtr wrbtr from ekbe
                        into (ekbe-dmbtr, ekbe-wrbtr)
                       where belnr = v_awkey_1
                         and gjahr = v_awkey_2.
    *AVH - Changed all bsak-wrbtr to ekbe-wrbtr and dmbtr to ekbe-dmbtr.
                      IF bsak-shkzg = 'H'.
                        ekbe-dmbtr = - ekbe-dmbtr.
                        ekbe-wrbtr = - ekbe-wrbtr.
                      ENDIF.
                      IF t_pohistory-currency <> 'PHP'.
                        IF bsak-augdt GT pa_augdt.
                 IF bsak-augdt IN so_augdt.
                          t_amount-tramt = t_amount-tramt + ekbe-wrbtr.
                        ENDIF.
                      ELSE.
                        IF bsak-augdt GT pa_augdt.
                 IF bsak-augdt IN so_augdt.
                          t_amount-tramt = t_amount-tramt + ekbe-dmbtr.
                        ENDIF.
                      ENDIF.
                    endselect.
                   endselect.
                  endselect.
                endif.
              ENDSELECT.
            ENDIF.
            IF t_account-distr_perc <> 0.
              t_amount-dpamt = ( t_account-distr_perc *
                                 t_amount-dpamt ) / 100.
              t_amount-gramt = ( t_account-distr_perc *
                                 t_amount-gramt ) / 100.
              t_amount-iramt = ( t_account-distr_perc *
                                 t_amount-iramt ) / 100.
              t_amount-tramt = ( t_account-distr_perc *
                                 t_amount-tramt ) / 100.
            ENDIF.
          ENDIF.
          IF t_amount-tramt < 0.
            t_amount-tramt = 0.
          ENDIF.
          t_amount-tramt = t_amount-iramt.
          t_amount-blamt = t_amount-netwr - t_amount-tramt.
          COLLECT t_amount. CLEAR t_amount.
          APPEND t_proj.
        ENDLOOP.
        IF sy-subrc <> 0.
          CLEAR v_netwr.
          SELECT SINGLE netwr FROM ekpo INTO v_netwr
                WHERE ebeln = t_account-ebeln
                  AND ebelp = t_account-po_item.
          t_amount-ebeln = t_account-ebeln.
          t_amount-psphi = t_proj-psphi.
          t_amount-tramt = t_amount-iramt.
          t_amount-blamt = t_amount-netwr - t_amount-tramt.
          COLLECT t_amount. CLEAR t_amount.
          APPEND t_proj.
        ENDIF.
      ENDLOOP.
    endform.
    **This is where it transfers the data**
    LOOP AT t_amount.
        it_dtl-netwr = t_amount-netwr.
        it_dtl-dpamt = t_amount-dpamt.
        it_dtl-gramt = t_amount-gramt.
        it_dtl-iramt = t_amount-iramt.
        it_dtl-tramt = t_amount-tramt.
        it_dtl-blamt = t_amount-blamt.
        MODIFY it_dtl TRANSPORTING netwr dpamt gramt
                                   iramt tramt blamt
              WHERE ebeln = t_amount-ebeln
                AND psphi = t_amount-psphi.
        CLEAR it_dtl.
      ENDLOOP.

    hi ,
    just place the code and check for a particular po if its there inthe ekpo table then it has to get it for ur select single query .
    but ur logic is build on if --- endif.check this option first of all.
    if in the debugging u see the value then as u say in the report output u r not able to see the value then the problem will be space alignment also.
    check the value in debugging and let us know first of all . okay
    vijay.
    IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.
    v_ebeln = t_account-ebeln.
    v_ebelp = t_account-po_item.
    ELSEIF v_ebeln <> t_account-ebeln AND
    v_ebelp <> t_account-po_item.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.
    v_ebeln = t_account-ebeln.
    v_ebelp = t_account-po_item.
    ELSEIF v_ebeln = t_account-ebeln AND
    v_ebelp <> t_account-po_item.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.

  • Newly added printer is not showing up in printer list in Acrobat 11.0.3

    Hello,
    We are using Acrobat Pro 11.0.3. We recently added a new printer and that printer does not show up for one user of the machine in Acrobat. It shows up in other applications and under Printers. Other users who log into the machine can see the printer in Acrobat. I have uninstalled Acrobat, rebooted, reinstalled. I have also removed referenced to Adobe under HKEY_CURRENT_USER as well as APPDATA to no avail. Any suggestions would be greatly appreciated.
    --mitch

    I have the same problem. Have you found any solution to this issue?

  • New field does not reflect in Table control

    Dear Experts,
    There is a requirement to add a new field in a table and gets it displayed in already created table control (with wizard). I have added a new field, I can see that in the final internal table (debugger). But the field is not getting reflected in the table control. Why? Should I delete the whole table control and create again (which I do not want to do) or is there any other way?
    As you can see in the below screenshot that there is already enough space but the last zzfield is not yet added.
    Regards
    Mani

    Hi,
    Either you use table control wizard and delete and create new table or try to understand how table control works and add the field on your own.
    Open the screen layout. Press F6 or click on Dictionary/Program fields window. Type field name here. It should be work area field in which table data is loaded by looping on the table. Click on Get from program button. Your field will be listed there. Select the line and click on OK button. Place the field at appropriate location in the table. You can change the attributes of the field by clicking on the attribute window F2.
    Thanks.
    Devendra

  • BOE 3.0 Designer does not show the table browser

    Hi,
    I am using BOE 3.0. I was able to view the table browser a few days back. After I changed the license key, the designer stopped showing me the table browser. I am logging into Designer with Administrator previleges. Although the Administrator has "Full control", but when I click on "Insert->Tables" in designer it does not do anything, not even display the table browser. I have created Oracle client connection and tested it. The server is responding, but the insert-> tables does not work.
    Any help would be appreciated.
    Thanks,
    SUS.

    1. When you invoke table browser using Insert->Tables do you see progress bar below the designer (task Bar)
    Sus: Yes I can see the progress bar. It exists for a few seconds and then disapperas,but does not do anything.
    2. Can you try invoking Table browser by double clicking on Universe designer pane.
    Sus: Yes I tried, but nothing happened. I mean I could not see the table browser
    3. Can you check if Designer can connect to your DB.
    Sus: Yes the designer is able to connect to the DB. I tested the connection and got the message "Server is responding". In fact when I am using the quick design wizard I can able to see the tables from my DB.
    4. How many tables do you have in DB, IF there are lot many table then it might table time to load those tables
    Sus: Currently my DB contains almost 40(20 tables and 20 views). I don't think it is concern. I worked with DB which contains more than this and that time I did not face this issue.
    5. Can you strategies tab in parameters (File->Parameters). What is the strategy for Tables. Try using built-in strategy.
    Sus: Yes it is built-in for tables. It is the default one and I did not change it.
    Is there a limit set to insert tables in designer?
    -Sus

  • DB Adapter does not show selectable tables

    HI guys,
    in the wizard I am unable to see the tables which I need to use for database adapter.
    But I do have access to those tables, and able to select from them in SQL worksheet from with in Jdev.
    I dont own the tables, but my user id have readable access to those tables.
    Any help is appreciated.
    P.S. If I didnt explain it properly, plz let me know. It really creates lot of access issues if I can only create DB adapter on My owned tables.
    :)

    Hi there,
    please make sure that the DB Connection you have created in JDev points to the expected database. It is generally safest to have the user name match the schema you are importing tables from, but the scenario you mention is perfectly fine too.
    One tricky thing in the import tables dialogue is that it initially shows you tables from the user/schema you logged in as. There is an easily overlooked drop down at the top that allows you to query the tables belonging to other visible schemas.
    Also once you enter your search criteria make sure you hit enter or click on the auto query check box to get the results.
    Thanks
    Steve

  • What object it colud be? column/field does not exists in table but shows values?

    Hi,
    I have a typical problem. Where is this column comming from??
    Below is the actual table column description where I don't have a field called "3rd_party_driver_home_phone"
    But when I run the query as select 3rd_party_driver_home_phone from
    additional_vehicle damage; it shows records with some value 3 for each of its row,
    This field is acting like a regular column but when I try to drop that
    column(Oracle 8.1.5) It says column doesn't exist.
    why this problem is occuring?
    Thanks,
    Ramana
    Table Description is as follows :
    SQL> desc additional_vehicle_damage;
    Name Null? Type
    AD_VEH_ID NOT NULL NUMBER(38)
    AD_ADJ_CLAIM_NU VARCHAR2(20)
    AD_ADJ_FNAME VARCHAR2(40)
    AD_ADJ_LNAME VARCHAR2(40)
    PARTY3RD_DRIV_HOME_PHONE VARCHAR2(30)
    null

    APC,
    Actually, Oracle objects can start with a number, but it's a really bad idea. When you create the object you just have to enclose it in double quotes, which also makes it case sensitive:
    "3rd_party_driver_home_phone"
    Your guess about the query sounds likely.
    Ramana,
    Did you figure it out yet? Was the query like APC suggested? If not, have you searched the user_objects table in the same manner as the user_synonyms table?
    Barbara
    null

  • Column/field does not exists in table but shows values?

    Hi,
    I have a typical problem. Where is this column comming from??
    Below is the actual table column description where I don't have a field called "3rd_party_driver_home_phone"
    But when I run the query as select 3rd_party_driver_home_phone from
    additional_vehicle damage; it shows records with some value 3 for each of its row,
    This field is acting like a regular column but when I try to drop that
    column(Oracle 8.1.5) It says column doesn't exist.
    why this problem is occuring?
    Thanks,
    Ramana
    Table Description is as follows :
    SQL> desc additional_vehicle_damage;
    Name Null? Type
    AD_VEH_ID NOT NULL NUMBER(38)
    AD_ADJ_CLAIM_NU VARCHAR2(20)
    AD_ADJ_FNAME VARCHAR2(40)
    AD_ADJ_LNAME VARCHAR2(40)
    PARTY3RD_DRIV_HOME_PHONE VARCHAR2(30)

    APC,
    Actually, Oracle objects can start with a number, but it's a really bad idea. When you create the object you just have to enclose it in double quotes, which also makes it case sensitive:
    "3rd_party_driver_home_phone"
    Your guess about the query sounds likely.
    Ramana,
    Did you figure it out yet? Was the query like APC suggested? If not, have you searched the user_objects table in the same manner as the user_synonyms table?
    Barbara
    null

  • Newly created task does NOT show up at SOLMAN project

    We have CHARM configured.
    However, the newly created task cannot be seen at SOLAMN's project. The existing tasks showed without issues.
    What could be the reason?  Thanks!!

    Hi Christy,
    Please refer to the spro configuration at following path:
    Scenario specific setting --> change request management -->extended config --> schedule manager
    Also refer to SAP note 927124.
    Hope this helps!
    Thanks & Regards,
    Kriti Bhalla

  • SQL Developer 3.1.07 does not show a Tables entry under the Navigator

    Installed SQL Developer 3.1.07. Under my Connections window, I log into the SYSTEM account. There is NO tables entry. SYSTEM has access to all tables in the database. It's the same behavior for other database users as well.
    I re-installed SQL Developer 3.0.04 and a Tables entry DOES appear for the same SYSTEM user connected to the same database.

    Hi J,
    I was under the impression that regardless of the Java version that my environment variables are setup to use,
    the installation of SQL Developer (when you install with a JDK), that the JDK version installed with SQL Developer
    is the one that is used.Exactly correct, unless you decide to override it in the conf file. I needed to be certain you did not.
    Anyway, trying to resolve the problem, let's go back to a possibility that something went wrong with the migration of your preference settings. Here is an old thread discussing a missing Tables node in the Connection view (sometimes called the navigator tree):
    Table node missing from navigator tree in 3.0.04
    The poster had to rename the system directory containing these settings, then ignore the offer to migrate settings upon starting up SQL Developer again. If you never migrated settings in the first place, then I'm not sure what more to say -- probably would require additional research here in the forum. But if you did migrate settings, then try the following:
    1. Export your connections (Connections node | right-click | Export Connections...)
    2. Exit SQL Developer
    3. Rename the directory to something else
    4. Restart SQL Developer
    5. Import your connections
    That directory on my Windows 7 machine for the current production release is something like:
    C:\Users\<username>\AppData\Roaming\SQL Developer\system3.1.07.42
    Hope this helps,
    Gary

  • Creating new ODBC connection does not show the tables

    Post Author: reemjacob
    CA Forum: Data Connectivity and SQL
    Hello
    I am creating a new ODBC Connection to SQL Server in Database Expert. Once I created the ODBC when I expand the Database I should be seeing the tables, views and stored procedures. But instead I am only seeing stored procedures. When I right click on the DB and go to options I see that Tables, Views and Stored Procedures are checked. How can I correct this so that I see the Tables and Views?
    Regards
    Reem

    Not an Oracle proble. Not an instant driver problem.
    If the ODBC tool and driver you use, fail to construct the proper SQL to interrogate the very rich Oracle data dictionary.. what is Oracle suppose to do? Fix the software from those vendors for the user? Not going to happen. Get Oracle Raptor instead and use a proper Oracle client.
    Simple test. Run the following SQLs via your ODBC connection.
    To see all your objects in your schema (i.e. the one you logged into via ODBC):
    SELECT * FROM user_objects
    To see a list of schemas:
    SELECT username FROM all_users ORDER BY 1
    To view other schemas' contents:
    SELECT * FROM all_objects
    Also note that historically ODBC has delivered poor performance. I recall many performance tests I've done during the 90's that showed ODBC up to 3x slower and generating more than 4x the network traffic, than native connections. Not too mention using ODBC introduces an additional software layer, which means more moving parts, more complexity, and more failures.
    I have not touched ODBC with the proverbial 10ft pole since - and today, I have even less need to use a clunky software layer like ODBC. And should I be forced to, it will be passthru all the way.

Maybe you are looking for