How to map betwwen two custom table

Hi,
I have two custom table like GL1000 & GL1001 in HR(Should be same behavior HRP1000 & HRP10001). I need to pass the data webdynpro screen through BADI. The Method would be Create, FIND, READ, DELIMT, and UPADTE when i create BADI definition.
My Question How to map both custom table GL1000 & GL1001, How to create, how to read, how to update, How to maintain relationship.
Thx!
Achin

Hi,
Firstly you cannot create a custom table with the name GL1000 & GL1001... it has to start with y or z...
for example... ZGL1000 & ZGL1001... and you can create these table from SE11 and you can give the relationship whicle creating the table in SE11 itself... and to read or update the table either from SE16 or you can write code in your webdyn program to read and update the table...
Regards,
Siddarth

Similar Messages

  • How can i create a custom table in to my banking services server

    I am having product type and account type details for those things I need to create a table
    Product Id.                 Account Type
    DP_PYGO_P     21
    DP_BASIC     25
    DP_UNLIMIT     24
    DP_ADVANTG     17
    DP_SAV                     34
    DP_TBILL                     54
    DP_USDCHQ     19
    DP_FREEDOM     52
    For the above fields how can i create a custom table into banking services server

    Transaction SE11, maybe? I don't really see the problem, unless you have never created a transparant table before...

  • Data from a file need to be read and mapped  into a custom table of R/3

    Hello all,
    This is related to inbound to  SAP ECC via SAP PI.
    There is a requirement concerning PI part that data from a file need to be read and mapped  into a custom table of R/3.
    To have this scenario developed , do we have any other  option than the Proxy ?
    My understanding is as follows : File --> SAP PI --> Proxy
    You suggestions are welcome.
    Regards,
    Rachana

    Hi Ravi,
    As suggested by Inaki, you can use proxy communication in recever.
    but you can also use the below
    FILE -----> PI -------> PROXY
                                  RFC
                                  IDOC
    to communicate to ECC system.
    Regards
    srinivas

  • Error while running code template mapping between two oracle tables

    Hello All
    Iam getting the following error while running code template mapping between two oracle tables. Using OWB 11gR2 and oracle 11gR2 DB.
    java.sql.SQLException: ORA-20001: The active workspace is not valid as a target for this mapping
    c: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1065
    ORA-06512: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1087
    ORA-06512: at "SOURCE.FILENET_EX_UNIT_3", line 555
    ORA-06512: at line 4                                        
    Job 51 error: java.sql.SQLException: ORA-20001: The active workspace is not valid as a target for this mapping
    ORA-06512: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1065
    ORA-06512: at "OWBSYS.WB_RT_MAPAUDIT_UTIL", line 1087
    ORA-06512: at "SOURCE.FILENET_EX_UNIT_3", line 555
    ORA-06512: at line 4
    Quick help is highly appreciated.

    Dera Dallan
    its only a target user for the workspace where you are deploying the mapping from.
    I have two repositories for two different projects. each repositary has its own workspace.
    ex:-
    Project 1
    Work space bpms_rep_owner
    Repositary owner bpms_rep_owner
    Repositary user bpms_rep_user
    Project 2
    Work space dem_rep_owner
    Repositary owner dem_rep_owner
    Repositary user dem_rep_user
    Reg
    S.Gyazuddin

  • How can I update a customized table from a text document?

    Hi,
    I am one sample file. The file is an text document. From this .txt file how can I update a customized table in SAP.
    How can I Update the fields in the Customized table.
    Thanks & Regards,
    NManohar.

    use the Function module GUI_UPLOAD or WS_UPLOAD and give the path and the file name from where the data has to be uploaded. in table parameter give the iternal table
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      =
      FILETYPE                      = 'ASC'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      tables
        data_tab                      =
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    and finally use insert command to update the database table with the data

  • How do we secure a custom table?

    Hi
    How do we secure a custom table, custom program and a custom transaction code? What are the alternative  ?
    thank You

    Hello Subash
    Usually I define customer tables as "application data" table in the attributes. However. If you have very sensitive data in your customer table then you could set it as "customizing" table. In this case the same security measures that are valid for standard tables (e.g. no customizing allowed in production systems) will be valid for your table, too.
    Regards
      Uwe

  • One class map to two existing tables

    I have two existing tables, inventoryTbl and supplierTbl
    inventoryTbl has following columns:
    inventoryIdCol ( Primary Key )
    inventoryTypeCol
    inventoryAmountCol
    supplierIdCol ( Foreign key to supplierTbl )
    supplierTbl has following columns:
    supplierIdCol ( Primary Key )
    supplierNameCol
    supplierAddressCol
    I have on JDO Class called inventory which want to map to the above
    two tables.
    it has all these fields:
    inventoryId;
    inventoryType
    inventoryAmount
    supplierIdCol
    supplierName
    supplierAddress
    How do I implement it?
    Question 1:
    Notice Kodo DTD has fk and join extension. Can I use them to implement?
    If so, could you give us an example? there is no example in the Kodo
    package.
    Question 2:
    Notice Kodo Developer guide mention the key-column and ref-column.
    But by definition, they are only used for Collection/Map field type.
    My case is neither of them. they can not be used in my case?
    Question 3:
    Any other way? Kodo developer guide mention the 'custom-mapping'
    extension. How do I use it?
    thanks,
    John

    Answer 1: There are no fk and join extensions. They are used in our
    reversemapping process. Kodo 3.0 has more verbose extensions (if
    you want to look at that (beta) version's documentation).
    Answer 2: You won't need them to map your situation (see later)
    Answer 3: I would suggest against this... it is not a trivial task nor
    well documented and WILL change with our upcoming 3.0 release (which is
    far easier to customize and documentation-wise).
    All those things being said, short of trying out Kodo 3.0 which is in
    (early) beta form, the easiest way is to map the supplierTbl to its own
    class. Note that this class does not have to be exposed at the
    application level. For example:
    public class Inventory {
    private Supplier supplier;
    public String getSupplierName () {
    return supplier.getSupplierName ();
    public void setSupplierName (String name) {
    supplier.setSupplierName (name);
    One can do more funky stuff using javax.jdo.InstanceCallbacks (jdoPostLoad
    () and jdoPreStore ()), however, I find the above strategy to be the
    easiest as it doesn't require any JDO dependencies in your application
    classes as well as requiring a lower level of undestanding of the
    PersistenceCapable lifecycle.
    On Thu, 14 Aug 2003 20:19:54 +0000, w wrote:
    >
    I have two existing tables, inventoryTbl and supplierTbl
    inventoryTbl has following columns:
    inventoryIdCol ( Primary Key )
    inventoryTypeCol
    inventoryAmountCol
    supplierIdCol ( Foreign key to supplierTbl )
    supplierTbl has following columns:
    supplierIdCol ( Primary Key )
    supplierNameCol
    supplierAddressCol
    I have on JDO Class called inventory which want to map to the above
    two tables.
    it has all these fields:
    inventoryId;
    inventoryType
    inventoryAmount
    supplierIdCol
    supplierName
    supplierAddress
    How do I implement it?
    Question 1:
    Notice Kodo DTD has fk and join extension. Can I use them to implement?
    If so, could you give us an example? there is no example in the Kodo
    package.
    Question 2:
    Notice Kodo Developer guide mention the key-column and ref-column.
    But by definition, they are only used for Collection/Map field type.
    My case is neither of them. they can not be used in my case?
    Question 3:
    Any other way? Kodo developer guide mention the 'custom-mapping'
    extension. How do I use it?
    thanks,
    John--
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • How to insert into two differents tables at the same time

    Hi
    I'm newer using JDev, (version 3.1.1.2 cause the OAS seems to support just the JSP 1.0)
    and I want to insert into two differents tables at the same time using one view.
    How can I do that ?
    TIA
    Edgar

    Oracle 8i supports 'INSTEAD OF' triggers on object views so you could use a process similar to the following:
    1. Create an object view that joins your two tables. 'CREATE OR REPLACE VIEW test AS SELECT d.deptno, d.deptname, e.empname FROM DEPT d, EMP E'.
    2. Create an INSTEAD OF trigger on the view.
    3. Put code in the trigger that looks at the :NEW values being processed and determines which columns should be used to INSERT or UPDATE for each table. Crude pseudo-code might be:
    IF :NEW.deptno NOT IN (SELECT deptno FROM DEPT) THEN
    INSERT INTO dept VALUES(:NEW.deptno, :NEW.deptname);
    INSERT INTO emp VALUES (:NEW.deptno, :NEW.empname);
    ELSE
    IF :NEW.deptname IS NOT NULL THEN
    UPDATE dept SET deptname = :NEW.deptname
    WHERE deptno = :NEW.deptno;
    END IF;
    IF :NEW.empname IS NOT NULL THEN
    UPDATE emp SET empname = :NEW.empname
    WHERE deptno = :NEW.deptno;
    Try something along those lines.
    null

  • How can I place a custom table over an image?

    I have a graphic embedded in the Master Page at the start of every chapter like this.
    I created a borderless Custom Table without the data that I want to place over the image so it looks like the text is typed on the notebook paper. I apparently can't add this to the Master Page, but I can't seem to figure out how to do this on the Body Page either. The table is the same as in my previous question but included here again for reference. While the borders are evident here, I will turn them off when I get this placed. The merged cells are for graphics that will change every Lesson. Appreciating this forum as always. Someday I hope I have enough knowledge to help other people here...
    Thanks,
    Laurie

    Laurie,
    You need to have a text frame over the area that you want your table to appear. On the Master Page, use the graphics tools to draw the text frame (Body not Background type) where you need it. Then on the Body pages insert the table. You may need to play with the positioning of the graphic on the Master Page and perhaps use the Format > Page Layout > Line Layout > Baseline Synchronization option as well as the Table Row Height properties to get things to properly align.

  • How to transport records of custom table in SAP BI?

    Hello,
    I creeated a custom table and entered some records there. Now I would like to transport it to production.
    When I select the records and press 'transport records' the system doesnt allow me to save it under transport request.
    The following error message pops up :
    This is customization request but you need workbench one.
    But I dont see any workbench requests in this window.
    Thanks

    Go to SE09,
    Select Create Request
    It will ask for selection for type of request.
    Select 'Workbench Request' and try with this request.
    Sankar Kumar

  • How to show the two advance tables In a ROW

    Hi ALL,
    There is any Option to show the two advance tables In a ROW
    Thanks&Regards
    vinu

    I have responded to your other post. Kindly respond to that and close this one.
    Regards
    Sumit

  • How to get all the custom tables created in database

    Hi,
    Is there any sql query present to fetch the name of all the custom tables(Not the tabless inbuilt tables which is given by oracle) present in any module like iExp,iRec or anything.
    Thanks

    It is difficult to differentiate custom tables from the seeded ones if there is no naming conventions followed during their creation. The custom schema or owner name can be used to differentiate them.
    Thanks,
    Neeraj

  • How to take backup of custom table

    Hi,
    We have to take back-up of our custom table. There are 3 Laks entries in the table.
    Please suggest.
    Saurabh

    have a look at SAP note 130906. it uses program R3trans to export some tables, just adapt table names with the ones you need.

  • How to map column value (in table cell)

    Hi,
    My table, say product, has 'status' field (varchar(1))
    status = 0 -- unavailable product
    status = 1 -- avaialble product
    I want to map this value into readable 'available/unavailable'
    (a combo box cell editor) when I manipulate table cell (insert/search/modify)
    and status field correctly mapped into '0', '1'.
    Thanks,
    Tuan

    repost

  • How to deactivate postings to custom table YFAGLFLEXA

    Hi,
    We have generated custom YFAGLFLEXT table using FAGLFLEXT as a template. This caused table YFAGLFLEXA to be generated automatically by the system to store the Actual Line Items Postings.
    Since the YFAGLFLEXA table is not of any utlity to us, we would like to deactivate it or cause it to not have any updates while posting to YFAGLFLEXT table.
    Is there any way to deactivate postings to YFAGLFLEXA while keeping the rest of the functionality intact?
    Please respond.
    Thanks for your help.

    Hi,
    1. Use se11 in Tab "Delivery and Maintenance"
    2. Change "Data Browser/Table View Maint." to Display/Maintenance Allowed.
    If you don't have yet generate the Maintenance View, go to the menu "Utilities / Table Maintenance Generator" to generate one.
    Best regards,
    Mathieu
    <<removed_by_moderator>>
    Edited by: Vijay Babu Dudla on Jun 9, 2009 8:01 AM

Maybe you are looking for