Reg.table and screen connectivities

Dear Experts
I want to save and retrieve some data like Emp Name,Emb No,Address and Cell number by creating new table and fields.
How to implement this, what are the steps,how to connect the table with the screen. Pls explain in greate details.
Thanks
Rajakumar.

Hi Nick,
Are you calling the screen in the same program. If yes, then in PAI you can check whether the field is marked X or not. If the field is marked X then you fill the internal table.

Similar Messages

  • Aditional field in standard table and screen

    Hi friends.
    I'd like to know how to add a new field in a table and make it visible in standard transaction.
    In this case, the table is EBAN and transaction is ME51N, ME52N and ME53N. This new field must be includded in transaction items grid.
    I've already added field to CI... include in EBAN but this new field does't appear in standard transaction.
    I've already saw variant and this new field doesn't appear there too.
    Any idea ? Any SAP Note (I hadn't find any sap note yet) ?
    thanks.
    Glauco

    Hi Raymond Giuseppi.
    Greate hint about this SAP NOTE. It solved my issue !!!
    P.S.: This note is to releases 46c and 47, BUT even I'm in release ECC 6.0 I must do the same: I've already created CMOD prject, includes and subscreen 0111 like SAP NOTE ask to do. This SAP NOTE has entire example on how to add this subscreen and encoding includes of TOP, PBO and PAI to read and save data of Zfields of EBAN. It's nice and easy to understand.
    thank you !!!
    Glauco
    Edited by: Glauco Kubrusly on Nov 22, 2010 11:53 AM

  • Different view in table and screen for field

    I need to display EKKN-PS_PSP_PNR in one of my purchasing reports. This is the WBS Element. the problem is it is displayed  different on the screen and in the database
    for eg: When i extract it from the database it appears as a number, but on the screen when you click on the record, it is a bunch of characters. And it is the characters that I need to display. How to do the conversion. thank you

    Hi,
    Use
    CONVERSION_EXIT_ABPSP_INPUT    Conversion External > Internal WBS Element Number  
    CONVERSION_EXIT_ABPSP_OUTPUT   Conversion Internal > External WBS Element Number  
    routines to convert the data as you see on the screen.
    Cheers
    VJ

  • How to export internal table and pass the internal table to another screen?

    Hi,
    I have a sql SELECT statement that select data from table into internal table. I would like to export out the internal table and pass to another screen and display the data in ALV list. How to export it out? I try but the error given was " The type of "OUT_SELECT_ITAB" cannot be converted to the type of  "itab_result".
    Another question is, how to pass the internal table that i export out from the function module to another screen?
    Here is the code
    ==============================================================
    FUNCTION ZNEW_SELECT_ZSTUD00.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(IN_SELECT_YEAR) TYPE  ZSTUD00-EYEAR
    *"  EXPORTING
    *"     REFERENCE(OUT_RESULT) TYPE  CHAR9
    *"     REFERENCE(OUT_SELECT_ITAB) TYPE  ZSTUD00
    *& Global Declarations
    DATA: itab TYPE ZSTUD00,
          itab_result TYPE TABLE OF ZSTUD00.
    *& Processing Blocks called by the Runtime Environment
    itab-eyear = IN_SELECT_YEAR.
    SELECT *
    FROM ZSTUD00
    INTO TABLE itab_result
    WHERE eyear = IN_SELECT_YEAR.
    IF sy-subrc = 0.
      out_result = 'Success'.
      OUT_SELECT_ITAB = itab_result.
    ELSE.
      out_result = 'Fail'.
    ENDIF.
    ENDFUNCTION.
    ===============================================================
    Please advise. Thanks
    Regards,
    Rayden

    Hi Nagaraj,
    I try to change it in Tables tab page but it state that TABLES parameters are obsolete. when i "Enter". I try to "Enter" again. it seem to be ok but it stil give me the same error.
    ================================================================
    FUNCTION ZNEW_SELECT_ZSTUD00.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(IN_SELECT_YEAR) TYPE  ZSTUD00-EYEAR
    *"  EXPORTING
    *"     REFERENCE(OUT_RESULT) TYPE  CHAR9
    *"  TABLES
    *"      OUT_SELECT_ITAB STRUCTURE  ZSTUD00
    *& Global Declarations
    DATA: itab TYPE ZSTUD00,
          itab_result TYPE TABLE OF ZSTUD00.
    *& Processing Blocks called by the Runtime Environment
    itab-eyear = IN_SELECT_YEAR.
    SELECT *
    FROM ZSTUD00
    INTO TABLE itab_result
    WHERE eyear = IN_SELECT_YEAR.
    IF sy-subrc = 0.
      out_result = 'Success'.
      OUT_SELECT_ITAB = itab_result.
    ELSE.
      out_result = 'Fail'.
    ENDIF.
    ENDFUNCTION.
    ===============================================================
    regards,
    Rayden

  • My iphone 5 fell down from the table and now I can't touch screen or do anything with it anymore. Please help me!!!

    My iphone 5 fell down from the table and now I can't touch screen or do anything with it anymore. I send it to Istudio in Thailand and they said it is non authorized so they will not fix for me. I search google and they said that my LCD has problem but people in here said the chip inside my phone have problem??? Please tell me what I need to do. And if I have to change the new, how can I know it is new or fake? Could you give me the price of it please? I'm not Thai people. I study in here so I dont know where to fix it. Please recommend me any truthly store in there if you know. Thank you so much!!!

    You will need to wait for Apple to rectify the issue. Do not make changes at your end.
    https://www.apple.com/support/systemstatus/

  • How to make the Page UP and down work on a table control screen?

    Dear all,
    Can some one suggest how to make the table control screen work with Page Up and Page down controls.
    when I press on Page down it works for the first time and after that i need to select the table to make it work the second time. it there a way I can make the index on the screen stay on the table control at all times.
    Regard,
    Vj

    Take this code as a referance:
    Sample code for vertical scrolling in PAI processing will look like this:
    MODULE user_command_XXXX INPUT. (XXXX is screen no.)
      CASE ok_code.
        WHEN 'P--'.
          CLEAR ok_code.
          PERFORM paging USING 'P--'.
        WHEN 'P-'.
          CLEAR ok_code.
          PERFORM paging USING 'P-'.
        WHEN 'P+'.
          CLEAR ok_code.
          PERFORM paging USING 'P+'.
        WHEN 'P++'.
          CLEAR ok_code.
          PERFORM paging USING 'P++'.
    *&      Form  PAGING
    *       Form to do scrolling for screen XXXX
    *      -->CODE   OKCODE value (P--, P-, P+, P++ )
    FORM paging USING code.
      DATA: i TYPE i,
            j TYPE i.
      CASE code.
        WHEN 'P--'. <table control name>-top_line = 1.
        WHEN 'P-'.
          <table control name>-top_line =
                  <table control name>-top_line - line_count.
          IF <table control name>-top_line LE 0.
            <table control name>-top_line = 1.
          ENDIF.
        WHEN 'P+'.
          i = <table control name>-top_line + line_count.
          j = <table control name>-lines - line_count + 1.
          IF j LE 0. j = 1. ENDIF.
          IF i LE j.
            <table control name>-top_line = i.
          ELSE.
            <table control name>-top_line = j.
          ENDIF.
        WHEN 'P++'.
          <table control name>-top_line =
                 <table control name>-lines - line_count + 1.
          IF <table control name>-top_line LE 0.
            <table control name>-top_line = 1.
          ENDIF.
      ENDCASE.
    ENDFORM.                               " PAGING
    Regards,
    Ravi

  • Problem with table maintenance and screen

    Hi,
    I modified the screen for a maintenance view table and added new fields. I went to SE11 to add the new fields in the table and then to SE51 to change the layout. My problem is when I edit the new field that I added, a message(Data was saved) at the bottom of the screen will appear but the value that I put in the field is gone. When i checked the contents of the table, the values were not also updated. Please let me know if there are other things that I forgot to activate or change.
    Thanks in advance,
    Eric

    Hi
    Its the other way.
    First you modify the table to add new fields. Goto sm30, delete the already generated maintenance screens and then regenerate them.
    Regards,
    Raj

  • I need help with my ipod touch 4, i hit it on my table and now the touch screen doesn't work at all

    i got mad and hit my ipod agaisnt the table and now the touch part of the screen doesn't work i need help, i don't want to send it to Apple because i have music that i downloaded for free and i'm worried all my songs, pics, videos will go away if i send it to them.

    Try:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Maybe just a loose connection they can fix.
    Apple Retail Store - Genius Bar
    Here is how to get your media off the iPod.
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • Creating Customized Table and Modify Table Maintenance Screen

    Hi,
    I have already created customized table and generate the table maintenance screen, however i encountered 1 problem which is i cannot add new PAI and PBO module in the flow logic. Every time i wanna add new module, i will be getting error message saying that my user currently editing the screen. Any suggestion ?
    Thanks.
    Jon

    Hi <b>Jonathan</b>,
    Please close all the windows and relogin
    For making PAI and PBO modules, Please activate all the Table and its maintainence view.
    Now first make emptu file with <main filename>_PAI and <main filename>_PBO save and activate them.
    Now put the logic in them and then activate now call these in the main prog.. it should work...
    While activation all the sub program modules should be activated already... i suggest select all the prog and sub progs and activate them all at once...so the system automatically takes care of inner activations first...
    If u have some more quereies... please feel free to contact me...
    Regards,,
    <b>Abhishek</b>

  • Hi , my sister got really mad and she banged her iPod touch 5th generation on a table and she banged it so hard that the screen didn't crack but inside the the iPod is damage as in like colors are popping out and the screen doesn't work, can i fixed this?

    Hi , my sister got really mad and she banged her iPod touch 5th generation on a table and she banged it so hard that the screen didn't crack but inside the the iPod is damage as in like colors are popping out and the screen doesn't work, can i fixed this?

    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price      
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • CU43 and the table settings screen

    We are on SAP ECC6.  On production CU43 is fine.  But on dev system and QA system when you use CU43 we have the following issue.
    On the "select configurable object" screen if you press the enter(return) key it always pops up the table settings screen.  No matter if you create a variant and save it or not.  If you select the Green check mark it goes to the correct screen for your selection.  Any ideas on how to get prevent this table settings screen from popping up every time you press enter?

    That icon you see in the top right-hand corner of a table is known by name Table control.
    Use the Table Settings function to change, in the table control, the individual basic table settings that are supplied with the system. This is particularly useful for tables where you do not need all the columns. You can use the mouse to drag & drop column positions and widths, or even make the column disappear.
    Save the changed table settings as a variant. The number of different variants you can create per table is not restricted.
    The first variant is called the basic setting; the SAP System defines this setting. You cannot delete the basic setting. you can delete the variants you define yourself.

  • Refreshing the value of a field in a table and displaying it on the screen.

    how do i mimimize calls to the database in the following scenario?
    I need to show the latest value of a field in a table in a database through a java program. in a concurrent access environment, there are chances of multiple users getting stale values. how do I overcome this problem through code?
    please advise.

    There are many ways of doing this. However its worth noting that RDBMS database are not messaging, event driven systems and are not best suited to do what you want to do. You should only consider doing this if you have a low rate of changes.
    You can
    - Poll the database table and look for changes.
    - Add a trigger to the table to record the keys which have changed. The have a query to find just the key which have changed.
    - When a field changes, also send a broadcast/topic message.
    - Add a trigger which sends a JMS message when a change occurs. (This is entirely DB/JMS specific, you need to find if this is possible)
    Again, databases are not ideally suited to event driven, real time updates. There is no simple, clean solution.

  • Reg: Fact table and Dimension table in Data Warehousing -

    Hi Experts,
    I'm not exactly getting the difference between the criteria which decide how to create a Fact table and Dimension table.
    This link http://stackoverflow.com/questions/9362854/database-fact-table-and-dimension-table states :
    Fact table contains data that can be aggregate.
    Measures are aggregated data expressions (e. Sum of costs, Count of calls, ...)
    Dimension contains data that is use to generate groups and filters.
    This's fine but how does one decide which columns to consider for Fact table and which columns for Dimension table?
    Any help is much appreciated.
    Pardon me if this's not the correct place for this question. My first question in the new forum.
    Thanks and Regards,
    Ranit Biswas

    ranitB wrote:
    But my main doubt was - what is the criteria to differentiate between columns for Fact tables and Dimension tables? How can one decide upon the design?
    Columns of a fact table will often be 'scalar' attributes of the 'fact' data item. A dimension table will often be 'compound' attributes of a 'fact'.
    Consider employee information. The EMPLOYEE table can be a fact table. It might have scalar attribute columns such as: DATE_HIRED, STATUS, EMPLOYEE_ID, and so on.
    Other related information that can't be specified as a single attribute value would often be stored in a 'dimension' table: ADDRESS, PHONE_NUMBER.
    Each address requires several columns to define it: ADDRESS1, ADDRESS2, CITY, STATE, ZIP, COUNTRY. And an employee might have several addresses: WORK_ADDRESS, HOME_ADDRESS. That address info would be stored in a 'dimension' table and only the primary key value of the address record would be stored in the EMPLOYEE 'fact' table.
    Same with PHONE_NUMBER. Several columns are required to define a phone number and each employee might have several of them. The dimension tables are used to help 'normalize' the data in the employee 'fact' table.
    And that EMPLOYEE table might also be a DIMENSION table for other FACT tables. A DEVELOPER table might have an EMPLOYEE_ID column with a value that points to a 'dimension' row in the EMPLOYEE dimension table.

  • Reg - dropdownlist  and Table

    hi all
    i have a requirement in my application
    i have view with two UI element one is a Table i.e., a Nested Tree Table which is on top and a DropDownKey list below the table.  The Dropdown contains Student, Employee, Faculty and so on.  When  i select a particular key element in dropdown corresponding data should be displayed in the table above.
    what i think for this i need to go for GridLayout Viewset
    and my problem should i make 3 different tables for different keys or else one table with 3 different java classes i.e., whenever i select a key that corresponding data should be loaded dynamically into the table at runtime.
    please guide me
    Thanks and Regards
    khaja

    hi Shubhadip
    thanks for your guidance but it did work out im getting Tab0 in my dropdown when i select Student and Tab1 in my dropdown when i select Employee but the tables are not changing accordingly . i will explain clearly what i did
    first ive created a TabStrip in my topview of Gridlayout viewset.  in that tabstrip ive create 2 Tabs named Tab0 and Tab1 which are tables and in the context of TabStrip ive two values nodes Std and Emp.and in the properties of Tabstrip view i have option selectedTab with Tab0 and Tab1 as options
    Next in the second view which is below the Tabstrip view
    i created a dropdownkey ui with Select as context value attribute.then event handler go
    could u please go through and find out what went wrong with me
    implementation of Dropdownkey listview
    public void onActiongo(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiongo(ServerEvent)
         String str1=wdContext.currentContextElement().getSelect();
                   if     (str1.equalsIgnoreCase("Student"))
                        wdContext.currentContextElement().setSelect("Tab0");
                   else
                        wdContext.currentContextElement().setSelect("Tab1");
    regards

  • Reg value table and check table

    Hi Friends,
        I have defined a value table(ZVALTAB) for a domain and defined the relation ship between check table(ZCHKTAB) and dependent table(ZDEPTAB). Here value table and check table both are different. My problem is while I am entering the values into check table, it is not restricting the values to enter into check table even those values are not in value table. And while I am entering values into the dependent table through the menu option Utilities->Create entries then also foreign key is not working. But when I use the SM30 then the foreign key is working. So can any body explain me when this value table restrict the values and why the option Utilities->Create entries is not validating the foreign key relation ship.
    Sathish Reddy

    Hi,
      Value Table will just provide you the possible set of values.  It won't restrict u for the wrong entries.  Moreover whenever u enter entries thru Create entries no user interface is available.  The constraints whatever we give is not at all stored in the Data Dictionary.  Only the user interface which takes care all about this.  Hence it wont restrict you.  For this u have to create table maintenance generator for your table.  Then it will restrict the values against check table.
    Both Value table and Check table will provide u possible set of values.  But only the check table will restrict the values.
    Hope this will help u.

Maybe you are looking for

  • Use of IPhone outside of US & Europe ?

    Can persons having a US or European iPhone, being used outside these areas on business, advise of their experience with AT&T i.e: compatability, 3G, speed, cost, etc. Also if you bought your iPhone over the counter at an Apple store, what were you to

  • Restriction on sending planned orders to SAP R/3

    Dear all, can anybody explain me the details as how can i control the transfer of transcation data to SAP R/3 either by timeline, or by PPDS production or SNP production horizon. Scenario: We are planning cycle for 1 year where in we use 6 months con

  • Imported files not showing up in folders

    I've imported .psd files into a folder of .dng images so I can stack them with their originals. They were all saved with Max Compatibility and LightRoom seems to import them ok, but they don't show up in the grid or filmstrip. Their folder listing ha

  • Permissions in user management fields

    Hi everybody, I would like to do not let end user modify their own email address in User Profile iview. Thanks for your help Regards

  • IPAM does not show all the dhcp scopes

    Hello, I have the following strange behavior. I've installed IPAM on a new server (2012 R2), all the acces rules are completed. But when i'm looking to the DHCP scope, not all off the scopes are included. For the moment its not possible to upload scr