Linkage between idoc fields with application tables

dear sir / madam  ,
i want to know the post the KASSIERER     1000000001
CSHNAME     Cash Customer  segment name E1WPB01 of basic type WPUBON01 message type WPUBON into the vbrk header table .as the fields of segments KUNDNR moves to kunrg of vbrk .where is the linking so that i need to update the rest of the fields when i processed the idoc into the system .
thnxs,varun

goto tcode : WE62 --> give the BASIC Type name & check the documentation.
In this documentation, you can see the table name & fields connections.
You can also see the mendatory & optional fields here.

Similar Messages

  • Difference between Information Field and Application Field

    Hi,
    Can anyone tell me the difference between information field and application field in ucm?
    Thanks

    Information fields are metadata fields that describe the content - by default they will appear on the interface and be searchable etc.
    Application fields are a special sort of meta field normally used behind the scenes to help with the logic of forms/templates. Application fields do not normally appear on the interface and are not searchable.
    More simply put if you just want to add content metadata just use Information Fields
    Tim
    Edited by: Tim Snell on 16-Sep-2010 06:51

  • How to map Idoc fields with external file

    Hi All,
    How to map Idoc fields with external file.
    I want to check the settings where Idoc fields are mapped with external file.
    Thanks in advance.
    Regards,
    Govind.

    If you have configured a fileport where on trigger of IDOC you are creating the file, you can look at the message type documentation and get the offset values for each field in each segment

  • How to find the table relationship between BSEG-BELNR with CE11000 table.

    Hi,
    Please help me to find out the table relationship between BSEG with CE11000 table.
    I have BSEG-BELNR value.
    Thanks in Advance
    Shankar

    Hello,
    BAsically the relationship can be foundon the basis of cost centre it will be good if you paste the structure ce11000.
    I have worked on it and as far i as i can recall it contain value fields right...like vv205,vv305 etc?
    Provide me more details.
    Are you preparing some reconcillation report for costing based COPA or Account based COPA..?
    Hopefully will help you out..
    Regards,
    Nabheet

  • AUTO Populate a Form's Field with MySQL Table Field(s) Data

    Hi,
    I can easily make forms that add, edit/update, delete.
    But I want to be able to populate a form field (usually a popup field) with a selection of records from a specific table.
    Say I have a table: CARS
    That has fields: MODEL, MANUFACTURER, PRICE
    I want to populate the form field named Model with all the CARS:MODEL values in the table.
    ...and some times...
    I want to populate the form field named Model with all the CARS:MODEL values in the table where CARS:PRICE < 20,000
    Now, I am fine with the whole HTML, MySQL, PHP programming and can do this all by long-hand coding.
    But I'd like to speed it all up and use Dreamweaver! :-)
    AND I'd like the edit/update forms to also selected the current records value and make it SELECTED whilst also holding all the other values..., using Dreamweaver.
    I can do this all by long-hand coding, but I'd like to speed up my development (and colleagues) and use Dreamweaver! :-)
    I hope all we need is a pointer to which menu items to use for this way of working within Dreamweaver...
    Thank you,

    Take a look at DW's Dynamic Form Elements server behaviors.

  • User defined field with Linked Table property

    Hi All,
    I know this has been posted several times but I cannot get this to work.  I am trying to add a user defined field and link it to a table. 
    I am getting the error "The field 'Related Table' should consist of 8 alphanumeric characters with no valid or default values " 
    Everything I check says that the code I am using is correct.  Is it possible the problem is that I am trying to connect to an SAP table instead of a user defined table.  Is it possible to link a user defined field to an SAP table?
    My code below:
                    oUserFieldsMD.TableName = "OITM"
                    oUserFieldsMD.Name = "SHP"
                    oUserFieldsMD.Description = "Must ship via"
                    oUserFieldsMD.LinkedTable = "OSHP"
                    oUserFieldsMD.Type = SAPbobsCOM.BoFieldTypes.db_Alpha
                    oUserFieldsMD.SubType = SAPbobsCOM.BoFldSubTypes.st_None
                    oUserFieldsMD.EditSize = 8
                    oUserFieldsMD.Size = 8
                    oUserFieldsMD.Mandatory = SAPbobsCOM.BoYesNoEnum.tNO
    Thanks
    Karen

    Hello  Karen,
    you cannot link a userfield to a system table. it has to be link to a user table.
    oUserFieldsMD.LinkedTable = "OSHP"
    when you have error, just try to do it using the same value in the application. If you cannot do it, it means you cannot do it neither with the DI
    Sebastien

  • Difference between the fields in the table.

    what is the difference between 'WERKS'  and  'UMWRK' in MSEG table.
    ALso what is the difference between LGORT and 'UMLMG in MSEG table.
    pls explain -
    WERKS has the description 'Plant'
    UMWRK - issuing/receiving plant
    Logft = Storage location
    UMLMG - Issuing/receiving storage location.

    Hi,
    Its like business between two companies say A and B.
    let us assume B is customer to A. and B has ordered some goods from A.
    and Every company will have plants and storage location in it right?
    so now A will have the data in his SAP system like from where he is sending the goods ( Form Which plant and which storage Location)
    similarly He wants to keep the data of  his customer (To Which plant and which storage Location).
    so here we have two plants( senders and receivers) and two storage location ( senders and receivers).
    some cases with in company itself there will be movement of goods form one plant of storage location to another plant of storage location.
    I am  not a functional guy . So I have explined you as per my understanding.
    Regards,
    Nageswar

  • IDoc field and SAP Table field

    I want to find out which SAP table field is populating the given IDoc segment without getting into ABAP code? Do we have something like "Where-used" list? On the reverse side, If I want to know which SAP Table field the incoming IDoc segement is posting to, how do I do that? Thanks in advance.

    Hi,
    This is very difficult without going into the ABAP code. Some time it is easy like if you see IDOC MATMAS05
    Segment  E1MARAM = MARA
    Segment  E1MAKTM = MAKT
    Segment  E1MARCM = MARC
    etc.... also you can judge from the name of a segment.
    Thanks,
    Mandar

  • Creating an auto incrementing field with CREATE TABLE from Java

    I'm using the "sun.jdbc.odbc.JdbcOdbcDriver" to get a connection towards an ODBC data source that's linked to a Access (.mdb) database.
    I've tried various combinations in my CREATE TABLE statement execution in order to create a table with an auto incrementing integer but neither of them work, not even the most obvious one:
    stmt.executeUpdate("CREATE TABLE mytable(uid integer AUTO_INCREMENT PRIMARY KEY);");
    I always get this runtime exception: *java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in field definition*; and AUTO_INCREMENT is the problem. I've tried all variations like AUTO, INCREMENT, AUTOINCREMENT and such, but nothing works.
    I've looked everywhere but couldn't find an answer to this. Thanks for the help.

    You used MySQL syntax. I think you agree with me that Access isn't a MySQL database. Either use MySQL with a real JDBC driver (recommended) or use Access syntax.
    That said, creating databases and tables using Java is a bad idea. The database and table must be already there. With Java you just do the usual table operations like select, insert, update and delete. Nothing more is needed.

  • Idoc field with Blank value

    Hi,
    I am sending data from one SAP system to other SAP system. I am using standard IDoc FIDCCP02 and sending this Idoc with the help of function module MASTER_IDOC_DISTRIBUTE.
    In this IDoc I want to send field 't_e1fiseg-prctr' with no value, can you please let me know how I can do this ?
    When I am trying to pass space then this field is not appearing in target system.
    Many Thanks.

    Hi,
    If there is no value in the field/segment, then the field/segment won't appear in the isoc, hence to make it appear you should pass the value '/' in the field.
    Note: when we do this we are indicating the system, it tells the SAP system that there is no data in the field, the same thing we do when we manually process IDOC by WE19 Transaction.
    Please validate the same at your end, please come back, if any more inputs from my end are required.
    BR/Thanks
    Pranav Agrawal

  • Relationship between DE/WM with Applications

    Hello guys,
    I am wondering if there is any comment on the relationship between your DE/WM and the applications installed in there. Let me explain my case.
    I want a light and fluid system where I can use my apps without worries and using only the necessary amount of resources from my machine. I end up choosing the i3WM, however I noticed that the Libreoffice suite usually freezes when I am using, such thing was really uncommon when I had my XFCE.
    This is possible to be happening due to the WM only?
    I think my concern is more about the curiosity of figuring this out, than any reportable bug because it is not consistently happening.
    Cheers,
    Bartuka!

    There are a few standards defining the interactions between WMs and client programs/windows.  Most important would be Xorg's ICCM.  This has been build upon byt the freedesktop's EWMH.  EWMH is and always was supposed to be a suppliment on top of the ICCM.  But, apparently, the most recent version of a popular toolkit has decided to ditch compatibility with the ICCM and only work through EWMH messaging systems.
    This is fine for that toolkit when the people who make that toolkit also make a very widely used and influential WM/DE/Borg-Collective.  All of their tools work together quite well, but if you use some of their tools, you may need to commit to using only their tools as they have decided to break ties with the rest of the X11 world (arguably this might not be an issue for long if Wayland gains as much traction as some seem to suspect it will).
    XFCE has bowed to the pressures from that one version of that one toolkit.  i3wm has not done so and instead remains compliant with existing standards.  So the problem is not with your WM, but with the toolkit used by recent versions of libreoffice.   Don't complain to the LO people, though - unless it's a suggestion that they use a different toolkit.  Complain to the GTK3 people ... if you want, they probably wont listen as you are not using GNOME.

  • Question on linkage of idoc with document number created in SAP R/3

    Hi all,
    I have a query related to IDOC.
    When inbound IDOC is posted into SAP R/3 it creates Material document number or billing document number is generated in SAP R/3.
    Question: <b>Do we have interface monitor in SAP R/3 Where I can see the linkage of Idoc number with the document number created in SAP R/3.</b>
    Need your help on this any suggestion will be greatly appreciated.
    Thanks & Regards
    Prabhat

    I'm not sure if this is what you are asking for, but you can look at the IDOC in WE02/WE05 and look at the header segments to get the document number.

  • Text Field with multiple lines

    I am trying to create a text field in the selection screen where it can insert a text with multiple lines for instance those text fields which you can see online where you can key in text lines after lines.
    How do you do that in ABAP?

    Hi
    See any Std program code for CREATING long Text lines
    See any application document HEADER or ITEM text and copy that code
    first declare a field with some table field
    like
    PARAMETERS: p_text like Tline-tdname.
    then keep a button (for Long text) and in the program write a code such that when you press on that line it will take you to text ediotr
    using the CREATE_TEXT fun module
    copy it from a std program text..
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Mapping Multiple Source fields to Single Target Fields with differnt Values

    Hello Friends,
    I am having a senario  where I have to mapped multiple fileds from source str. to same Idoc Fields with ( differnt default values )
    E.g Source Str.
    - ShopNO
    - OrderTyp
    Has to mapped to Idoc Str E1EDK14-Orgid.
    E.g Mapping:
    So when ShopNo will mapped to E1EDK14-Orgid the default value should be "MOP" & E1EDK14-Qualf should be 019
    and when OrderType will be mapped to E1EDK14-Orgid the default value should be "STD" & E1EDK14-Qualf should be 012
    So I tried of using node "UseOneAsMany".....but there I cant define the vaule of field orgid, and seconly how to specify the values of field Qualf?
    Do i need to write my own specify function ? or I can sovle this issue using standard avaiable functions ?
    Regards,

    Hi Ravi,
    Thanks for your reply....
    I am facing following problem... when I try to duplicate the segment and do mapping....... and then when I save, I got following error msg:
    The source or target structure has been changed or could not be found in the Integration Repository. The mapping definition contains elements or attributes that do not exist in the changed structure. The relevant entries will be deleted
    Target structure has no such path: /ZARVO_ORD/IDOC/E1EDK05[1]/KSCHL. Skipping mapping
    Target structure has no such path: /ZARVO_ORD/IDOC/E1EDK05[1]/KRATE. Skipping mapping
    Any suggestion ?
    in other words, when I do duplicate it creates me the segment, but when I save it, it gets disappered .........
    Regards,
    Edited by: Shah H on Oct 26, 2009 3:17 PM

  • How to fetch all fields with RFC_READ_TABLE ?

    I can use RFC_READ_TABLE to fetch specified fields with the TABLE parameter "FIELDS". If I want to fetch all fields of the table, I must specified each field name. However, I can not use "*" in FIELDS, and I can not left the table empty (Error will be generated).  Is there other method to fetch all fields ?
    language: VB.NET
    tblT = New TAB512Table
            tblTField = New RFC_DB_FLDTable
            tblTOption = New RFC_DB_OPTTable
            Dim stuTFieldRow As New RFC_DB_FLD
            Dim stuTOptionRow As New RFC_DB_OPT
            Sapproxy.Rfc_Read_Table("", "", strTN, 0, 0, tblT, tblTField, tblTOption)

    Hi:
    Do like this
    CALL FUNCTION 'RFC_READ_TABLE'
    EXPORTING
    query_table = Table
    delimiter = ''
    no_data = ''
    rowskips = 0
    rowcount = 0
    TABLES
    options = i_options
    fields = i_fields
    data = t_data.
    Regards
    Shashi

Maybe you are looking for

  • Playlists for new computer wont come up on itunes

    Got a new computer, my old playlists wont come up

  • LDAP Accept query for "catch all" domains

    I'm far from an LDAP expert so I'm posting this both as a "look what I did!" and an "is there a better way?" The query feels fairly typical until the end where I look for "absolute-catchall@[the domain]". Effectively this accepts "anything"@"domain."

  • Data storage for the T.codes

    hi , sap experts , If we maintain the data for the following t.code's in which tables the data will be stored: T.codes po13 ppoc_old ppoce ppsc Thanks in advance

  • Adobe reader wont open.pdf files

    trying to open .pdf files with latest version of abobe reader, but just get a blank Adobe reader screen and then the programme quits?

  • Mirroring results from two different tables

    I have one table where I have all my calculations and a total amount. I then have another table made up of just 1 cell in a different area. How do I mirror the sum of the table to this other 1 cell in the same document? I can also upload a picture so