Need field names

hi,
In sales order create screen, i need the table/structure name and field names for shipping point, and ship to.
for shipping point it think it is vbap-vstel ??
thks

Hi,
As you said the field for shipping point is VBAP-VSTEL.
You can find the ship-to party information in VBPA by providing the sales order number and the partner function as 'WE' ('WE' is for ship-to party. VBPA-KUNNR will give you the ship-to party).
if you also want the sold-to party then hit VBPA with the sales order number and the partner function as 'AG'(VBPA-KUNNR will give you the sold-to party).
Thanks.

Similar Messages

  • Need field name

    Dear All,
    What is the field name for date of change delivery document.

    Hello,
    The field name is LIKP-AEDAT, This field will be having the date of change.
    If you want the details about the changes done query the table CDHDR with the date, objectid(sales document nr.) and transaction code.
    Reward if helps.
    Regards
    Krishna
    Message was edited by:
            Krishnakumar

  • What is the field name for item serial number

    hi all
    i am doing dispatch report .... i need field name and table name for [item serial number (min) from batch number of that delivery material,item serial number (max) from batch number of that delivery material] ... actually this was the exact term given in the spec. can any one help me out
    regards
    aswin

    some more tables :
    SER00 .. SER08 , or type SER* in SE11 and press F4, you will get some more.
    and <a href="http://www.erpgenie.com/sap/sapfunc/serialnumbers.htm">Check this</a>

  • Need Table name for some fields..

    Dear Friends
    Please help me to find Table names for for the following fields :
    1. Document Currency
    2. Cleared / Open Item Symbol
    3. Transaction
    4. Fixed
    5. Payment Date
    6. Payment Order
    7. Payment Sent
    thanx in advance..

    Hi,
    Press F1 on the screen where you have seen the fileds.You will get techncail information.click on that button.It will show you the table and field names.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • Need to Add Field Name to the Downloaded XLS file

    Im using the function SAP_CONVERT_TO_TXT_FORMAT
    and downloading the contents by sending them as attachements in email.
    I need to add field names(column name) to excel fields.
    So that when fields are displayed in excel file they are displayed by their column names..
    How do I do this.? Any ideas.
    Answers will be rewarded with points..

    Hi
    You can manually insert the column names as the first row in your internal table to have them in .xls file as headers.
    Regards,
    Raj

  • Need billing text field name for IDoc mapping

    Hi Friends,
    our users use CRM web application to send orders to SAP via IDocs. They want to have billing text (In German it is called Rechnungstext or Faktura text) so that they can enter some text here if they want to enter something. My question is, what is the field name and IDoc segment for billing text? We need this information to map in XI.
    Br, Sats.

    The solution is:
    The standard Idoc text segment can be used for the text in sales order. From SD side the text types have to be customized. This is necessary for the XI mapping.
    Regards,
    Sats.

  • Table name  and  field name needed for delivery note

    Hi  Experts
    I need to extract the following fields for Delivery.
    company code
    Sales organization
    plant code
    shipping point
    DDL No (VBELN)
    Sales order
    Customer PO
    Customer request date
    planned GI date
    sold to code
    ship to code
    ship to name1
    ship to name 2
    ship to address1
    ship to address2
    ship to address3
    DDL Line item(posnr)
    matnr
    DDL Doc. date
    DDL Doc. Created by
    anybody knows the field name and table name for above fileds pls help me.

    Hi,
    It is possible to get the data ship-to adress of delivery.
    step1:
             Go to LIKP table which is header data.Select the record from DB for delivery you want into one field string.
    step2:
           Get the customer number of the ship-to party (in field KUNNR IN LIKP Table) into one variable.
    step3:
           Using that customer number you can get the address of ship-to party of particular delivery in KNA1 table.
      Here is some peice of code.
      TABLES: kna1 , likp.
    PARAMETERS: p_del TYPE likp-vbeln.
    DATA:
         w_ship_to_num TYPE likp-kunnr.
    SELECT SINGLE * FROM likp
    WHERE vbeln EQ p_del.
    w_ship_to_num = likp-kunnr.
    SELECT SINGLE * FROM kna1 WHERE kunnr EQ w_ship_to_num.
    WRITE : 'Name :' ,  kna1-name1,
              'City   :'  , kna1-ort01,
              'State :'   ,kna1-regio.

  • Need infotype along with field name

    Dear Experts,
    Can anyone please tell me the Infotype & Field name from where the following fields can be fetched.
    Location
    Designation
    Department
    Division
    company
    Date of joining
    date of confirmation
    gross salary(if yes which salary type i have to select).
    Please tell me soon as i need to finish the development.
    Kind Regards
    Sajid

    Hi Sajid,
    Requested information is found in IT0001 and IT0041.
    Location  :    PA0001-WERSK or PA0001-BTRTL
    Designation  : PA0001-PLANS
    Department  : PA0001-ORGEH
    Division       :  May be PA0001-WERKS
    company    : PA0001-BUKRS
    Date of joining     : PA00041
    date of confirmation : PA0041
    gross salary(if yes which salary type i have to select).
    Get the confirmation from your Functional consultant.. He is the best person to give you the accurate information.
    Regards,
    Narendra.

  • I have a form that has multiple fields but has 5 sections. I have used mail merge to insert information but I can't get Excel to recognize that I need different names and addresses for each section. Please help.

    I have a form that has multiple fields but has 5 sections. I have used mail merge to insert information but I can't get Excel to recognize that I need different names and addresses for each section. Please help.

    Thanks for your response. I do believe I have the information needed for each form on a separate line in Excel. There is a first name, middle name, last name, city, and zip column. And field is entered on a different line for all the information. I'm really stuck.

  • Need to display Long Text as field Name in ALV

    Hi,
    I am using an ALV Grid Display. Even though i have kept the output field length to be 30 char, the Column header that is being selected is the short name. I would like the Column header to display the long name.
    For example: Field "MAKTX"
    l_seltext_l = "Description"
    L_seltext_s = "Descr"
    I want to display "Description" as the field name but it is displaying the short length even though the field is 30 characters wide.
    Please help.
    Thanks,
    Urmila

    Hi,
    along with <b>fieldcat-SELTEXT_L  = 'long text'.</b>
       try to pass this also..
    <b>fieldcat-DDICTXT = 'L'.</b>
    so this will allow only long text.
    Regards
    vijay

  • Field NAme and Table Name

    Hi All,
    I got some output values from the legacy system with me but need to know whats the actual field name and table name to which i need to transfer these values. How can i do it, since which theres is not field name or despcription given for the data.
    Is there any way i can do it.
    Points will be rewarded for all useful answers.
    Regards
    AB

    if you know the transaction code you use to post the uploaded data in SAP, you just need to do BDC recording in using transation SM35. Record the whole process and create a program from the recording... and you wont even need to know the tables and field names-- almost everything will be done for you....
    All you need to do is replace record data with upload data.
    You can also try to look for a standard Function Module / BAPI which can do the processing for you and provide it with a table containing the upload data ...
    Reward points if useful

  • Schedule line- Delivery Qty Field Name

    Hi All,
             I need to know the Delivery Qty Field Name in Schedule Line in Order .from the system I took rv45a stru name. But I want to know exact table name and Field Name .
            If it is not stored Directly, then I need to Know how to calculate Delivery Qty.
    With Regards,
    Neptune.M

    Hi,
    LIPS-LFIMG - Actual quantity delivered (in sales units)
    It is in LIPS table pass VBELN AND POSNN to obtain
    SELECT SINGLE * FROM LIPS
                               WHERE VBELN = DTAB-VBELN
                                    AND POSNR = DTAB-POSNN.
        IF SY-SUBRC EQ 0.
          MOVE : LIPS-LFIMG   TO    DTAB-LFIMG.
          MODIFY DTAB.
        ENDIF.
    Reward points if useful
    Lakshmiraj

  • Address Book field names changing for "imported" data

    I'm migrating from a thousand year old Palm Pilot that has served me so well to an iPhone. So it's time to get my contacts into OSX Address Book.
    I have tried moving the data a couple of ways - exporting vCards and text files from the Palm Desktop software.
    I did extensive editing of the text file in MS Excel to get the data into good order.
    I have set up a template in the Address Book preferences to create fields that I want/need. Some are generic default field names, some have custom names. eg. I want to see a field called "Bus. Phone" not one called "work". Call me picky.
    I get the same basic result no matter if I import the vCard file or a text file - The names of the fields just show up with very generic names in the imported data. I should note that creating a NEW record seems to use the field names that I have specified in the preferences.
    Also, when importing the text file, Address Book asks me to assign the field names for certain fields (while it seems smart enough to know what labels to use for other fields all on it's own). However, the Field Names available in the drop down menu ARE NOT the ones that I have set up in the prefs. I seem limited to the generic default field names only.
    Can anybody tell me how to get the field names to be what I want them to be for address data that is being imported like this?
    Thanks for any suggestions - this has been driving me crazy as it would seem to me to be a pretty basic process. (I mean, the Address Book has this import functionality and custom field name functionality built in so it should work right?!)
    Allen

    No sooner do I ask than I notice that other people have asked the same question. In one of the reply's I saw mention of a product called "Abee".
    I tracked it down and it did the job for me! Custom Field names live on!
    It's at:
    http://www.sillybit.com/abee/

  • Is there a way to rename multiple form field names with a "b" at the end?

    I have a two page form, both are identical.  I need to rename all the field names on page 2 with a "b" at the end of the file name so they dont conflict with that of the first page.  Is there any fast way of doing this without renaming each individual one at at time?  I have a LOT to do!

    It's not possible with JavaScript. The name property of a field is read-only.
    I would suggest making a template from the first page and then spawn a new page from it.
    If you do it from a script make sure you set the bRename property to true and the form fields will be automatically renamed, but you can't specify the name, it will be in following pattern:
    P<Page Number>.<Template Name>.<Original Field Name>

  • XML Schema Collection (SQL Server 2012): How to create an XML Schema Collection that can be used to Validate a field name (column title) of an existing dbo Table of a Database in SSMS2012?

    Hi all,
    I used the following code to create a new Database (ScottChangDB) and a new Table (marvel) in my SQL Server 2012 Management Studio (SSMS2012) successfully:
    -- ScottChangDB.sql saved in C://Documents/SQL Server XQuery_MacLochlainns Weblog_code
    -- 14 April 2015 09:15 AM
    USE master
    IF EXISTS
    (SELECT 1
    FROM sys.databases
    WHERE name = 'ScottChangDB')
    DROP DATABASE ScottChangDB
    GO
    CREATE DATABASE ScottChangDB
    GO
    USE ScottChangDB
    CREATE TABLE [dbo].[marvel] (
    [avenger_name] [char] (30) NULL, [ID] INT NULL)
    INSERT INTO marvel
    (avenger_name,ID)
    VALUES
    ('Hulk', 1),
    ('Iron Man', 2),
    ('Black Widow', 3),
    ('Thor', 4),
    ('Captain America', 5),
    ('Hawkeye', 6),
    ('Winter Soldier', 7),
    ('Iron Patriot', 8);
    SELECT avenger_name FROM marvel ORDER BY ID For XML PATH('')
    DECLARE @x XML
    SELECT @x=(SELECT avenger_name FROM marvel ORDER BY ID FOR XML PATH('Marvel'))--,ROOT('root'))
    SELECT
    person.value('Marvel[4]', 'varchar(100)') AS NAME
    FROM @x.nodes('.') AS Tbl(person)
    ORDER BY NAME DESC
    --Or if you want the completed element
    SELECT @x.query('/Marvel[4]/avenger_name')
    DROP TABLE [marvel]
    Now I am trying to create my first XML Schema Collection to do the Validation on the Field Name (Column Title) of the "marvel" Table. I have studied Chapter 4 XML SCHEMA COLLECTIONS of the book "Pro SQL Server 2008 XML" written by
    Michael Coles (published by Apress) and some beginning pages of XQuery Language Reference, SQL Server 2012 Books ONline (published by Microsoft). I mimicked  Coles' Listing 04-05 and I wanted to execute the following first-drafted sql in
    my SSMS2012:
    -- Reference [Scott Chang modified Listing04-05.sql of Pro SQL Server 2008 XML by Michael Coles (Apress)]
    -- [shcColes04-05.sql saved in C:\\Documents\XML_SQL_Server2008_code_Coles_Apress]
    -- [executed: 2 April 2015 15:04 PM]
    -- shcXMLschemaTableValidate1.sql in ScottChangDB of SQL Server 2012 Management Studio (SSMS2012)
    -- saved in C:\Documents\XQuery-SQLServer2012
    tried to run: 15 April 2015 ??? AM
    USE ScottChangDB;
    GO
    CREATE XML SCHEMA COLLECTION dbo. ComplexTestSchemaCollection_all
    AS
    N'<?xml version="1.0"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="marvel">
    <xsd:complexType>
    <xsd:all>
    <xsd:element name="avenger_name" />
    <xsd:element name="ID" />
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>';
    GO
    DECLARE @x XML (dbo. ComplexTestSchemaCollection_all);
    SET @x = N'<?xml version="1.0"?>
    <marvel>
    <avenger_name>Thor</name>
    <ID>4</ID>
    </marvel>';
    SELECT @x;
    GO
    DROP XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_all;
    GO
    I feel that drafted sql is very shaky and it needs the SQL Server XML experts to modify to make it work for me. Please kindly help, exam the coding of my shcXMLTableValidate1.sql and modify it to work.
    Thanks in advance,
    Scott Chang

    Hi Scott,
    2) Yes, FOR XML PATH clause converts relational data to XML format with a specific structure for the "marvel" Table. Regarding validate all the avenger_names, please see below
    sample.
    DECLARE @x XML
    SELECT @x=(SELECT ID ,avenger_name FROM marvel FOR XML PATH('Marvel'))
    SELECT @x
    SELECT
    n.value('avenger_name[1]','VARCHAR(99)') avenger_name,
    n.value('ID[1]','INT') ID
    FROM @x.nodes('//Marvel') Tab(n)
    WHERE n.value('ID[1]','INT') = 1 -- specify the ID here
    --FOR XML PATH('Marvel')  --uncommented this line if you want the result as element type
    3)i.check the xml schema content
    --find xml schema collection
    SELECT ss.name,xsc.name collection_name FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    select * from sys.schemas
    --check the schema content,use the name,collection_name from the above query
    SELECT xml_schema_namespace(N'name',N'collection_name')
    3)ii. View can be viewed as virtual table. Use a view to list the XML schema content.
    CREATE VIEW XSDContentView
    AS
    SELECT ss.name,xsc.name collection_name,cat.content
    FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    CROSS APPLY(
    SELECT xml_schema_namespace(ss.name,xsc.name) AS content
    ) AS cat
    WHERE xsc.name<>'sys'
    GO
    SELECT * FROM XSDContentView
    By the way, it would be appreciated if you can spread your questions into posts. For any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

Maybe you are looking for

  • ATB report on portal

    Hi, One of the user wants ATB report to be posted on portal. Has specified the requirement like sales office, customer, etc. Can anyone tell me what does it mean and what I need to do. thanks

  • SQL Developer 3.1.07 Conn Err: Invalid Conn Info Specified

    Hi, I have been using SQL Developer for a while but out of the blue I'm now getting a connection error: Message box says: "An error was encountered performing the requested operation: Invalid connection information specified. Verify the URL format fo

  • Automatic start/stop streaming on FMLE 3

    Hi. Do exists a mode that I can program the time to start and stop automatically a live streaming? Thanks.

  • Building and deploying petstore

    I've made a change to the petstore example (in CatalogDAO.java) and I'd like to rebuild and deploy it. Can you tell me how I can do it. I've tried a few different things but I continue to get the original version. Thanks

  • With ios 8.3 ipad mini apps sometimes do not respond when touched

    a new problem occurred with ios 8.3 ipad mini applications sometimes do not respond when touched Fix it in ios 8.4