Field name DUMMY is reserved (Do not use structure as include in DB table)

We are trying to add a custom field, e.g., called ZZZ in LIS Communication structure MCEKKO (Purchasing Document Header) by creating a new custom append structure and add the field ZZZ into it, then activate the new append structure, but get warning msg like "Field name DUMMY is reserved (Do not use structure as include in DB table)".
We do find a field called DUMMY in the structure MCEKKO. How to get rid of the warning msg and successfully activate the new custom append structure with the new field ZZZ?
We will give you reward points for correct solutions for the above problem!
Thanks

hi Dinesh,
But we wonder why this new custom field appended can not be seen from the right frame of the extraction structure in LBWE?
Any idea?
Thanks

Similar Messages

  • Is there a way to get a drop down field in a muse form? (Not using a third party like jot or Wufoo)

    Is there a way to get a drop down field in a muse form? (Not using a third party like jot or Wufoo) if not then it needs to be a priority for the developers (also radio buttons) as whay should we have to use third party form generators !!
    Thanx

    LOL..... No guru's or employees/staff can answer this simple question ?????
    20+ years in the Advertising Design industry, and would think a simple answer to this would be easy ?

  • Field names for data element are not displayed in selection box

    Hallo zusammen,
    ich habe ein Selektionsfeld definiert und einen Parameter erzeugt, der auf ein Tabellenfeld verweist. Der Feldbezeichner für das Datenelement aus der Tabelle wird nun aber nicht angezeigt, sondern ausschließlich der Variablenname.
    Woran kanndas liegen?
    Danke!
    Edited by: Matt on Feb 9, 2010 1:41 PM - translated subject

    I created data elements and use them in a db table. I've added this data elements as parameters of a selection screen in a function group top include but when I test my function module with this selection screen I see only the field names and not my field captions of my data elements.
    While editing report choose Goto->Text elements->Selection Texts-> select Dictionary checkebox next to your parameters ->activate. The caption will be used then.
    And another question: I have defined and activated a search helper which I can call in my selection screen with F4 but I don't see the symbol behind the text-field. What is the reason?
    Refer standard program DEMO_DYNPRO_F4_HELP_DICTIONARY to see various techniques of attaching input help to screen field, together with search help
    Regards
    Marcin

  • Field names with spaces in target file using fcc

    Hello Friends,
    My target structure fields:
    MT_Target
    ItemNo, ItemName, ItemQuantity, AmountValue, TotalAmount
    My requirement here is - In the target file - these fields should be generated with space. Shown as below:
    Item No, Item Name, Item Quantity, Amount Value, Total Amount
    How can i achieve this.
    Thanx
    S.

    if i understood u correctly u want to have a header line in ut target file same as that ur field names but with a space in between??
    if yes  the use :
    NameA.addHeaderLine=3
    NameA.headerLine =Item No, Item Name, Item Quantity, Amount Value, Total Amount
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm

  • HT204053 Changed Apple ID names and no Apps will not use those changes

    Hello
    I was cleaning up a bunch of old history and renamed 4 of 5 apple accounts cleaning up family chaos over the last years.  Now my Apps updates ask for old Apple IDs and will not use renamed ones for same accounts or old passwords.  Please help.
    Thanks

    I was cleaning up a bunch of old history and renamed 4 of 5 apple accounts cleaning up family chaos over the last years.
    Please explain what that means. What was it that you actually did? It sounds more like you created new Apple IDs or something. What process did you use to change these names? Where did you find the instructions?

  • Why Oracle not using the correct indexes after running table stats

    I created an index on the table and ran the a sql statement. I found that via the explain plan that index is being used and is cheaper which I wanted.
    Latter I ran all tables stats and found out again via explain plan that the same sql is now using different index and more costly plan. I don't know what is going on. Why this is happening. Any suggestions.
    Thx

    I just wanted to know the cost using the index.
    To gather histograms use (method_opt is the one that causes the package to collect histograms)
    DBMS_STATS.GATHER_SCHEMA_STATS (
    ownname => 'SCHEMA',
    estimate_percent => DBMS_STATS.AUTO_SAMPLE_SIZE,
    block_sample => TRUE,
    method_opt => 'FOR ALL COLUMNS SIZE AUTO',
    degree => 4,
    granularity => 'ALL',
    cascade => TRUE,
    options => 'GATHER'
    );

  • 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

  • Map Field names to target side

    Hi Gurus,
    I have a critical Requiremnet where in i need to map the field names from Source structute to the target structure..
    For Example:
    My Source structure:                                                       
    <matnr> 123</matnr>                                                          
    <maktn>XYZ</maktn>
    Expected Target structure:
    <Node>
    <Fieldname>matnr </DFieldname>
    <Fieldvalue>123</Fieldvalue>
    </Node>
    <Node>
    <Fieldname>maktn </DFieldname>
    <Fieldvalue>XYZ</Fieldvalue>
    </Node>
    Any Blog on this is highly Appreciated.
    Best regards,
    Sainath Chutke
    Edited by: Sainath Chutke on Feb 23, 2009 8:42 PM

    Hi Sainath,
    This is possible using graphical mapping with the help of UDF.
    A simplified mapping will look like this:
    For Fieldname
    constant: MATNR --> useOneAsMany --> 1. UDF -
    > Fieldname
    MATNR --> removeContext --> /
    MATNR --> removeContext --> /
    constant: MAKTN --> useOneAsMany --> 2.
    MATNR --> removeContext --> /
    MATNR --> removeContext --> /
    where 1 and 2 are the inputs to the UDF.
    For Fieldvalue
    MATNR --> removeContext --> 1. UDF --> Fieldvalue
    MAKTN --> removeContext --> 2.
    Note that you can eliminate the node removeContext just make sure that you set the context to the topmost level of the hierarchy.
    The UDF that will be used is of context type: There are two input arguments, input1 and input2:
    Here is the code:
    StringBuffer e = new StringBuffer();
    String b = null;
    for (int a = 0; a<input1.length; a++){ e = e.append( "/" + input1[a]);}
    for (int a = 0; a<input2.length; a++){ e = e.append( "/" + input2[a]);}
    e = new StringBuffer(e.substring(1,e.length())); b = e.toString();
    String c[] = b.split("/");
    for (int a = 0; a<c.length; a++){result.addValue(c[a]);}
    What this UDF does is to add the contexts of the input, it is also taken into consideration multiple occurrences of the MATNR and MAKTN e.g.
    MATNR = 12,1234
    MAKTN = XYW,XYZ
    The output for Fieldname is MATNR,MATNR,MAKTN,MAKTN
    The output for Fieldvalue is 12, 1234, XYW, XYZ
    Hope this helps,

  • Cfpdfform issue with field name

    We have a pdf that is filled out by ColdFusion using <cfpdfform>.  A field in the pdf was named incorrectly so there are 2 fields named the same thing (let's say "field1").  As the system has populated (many) copies of the pdf the same value has gone into both fields named "field1" when really two different values should have gone into a "field1" and "field2".
    I need to get the information correctly entered into "field2" so I had two ideas...
    I researched was renaming the field in all the pdfs using ColdFusion (so I could repopulate the new field) but that does not appear to be possible.  But to confirm... Can you rename a field in a pdf using ColdFusion?
    If I couldn't rename it I just wanted to change what was in the second occurrence of "field1".  I tried using the index attribute of <cfpdfformparam> but that only applies to forms created in LiveCycle.  Does anyone know how to populate only one occurrence of a field name in a pdf using <cfpdfform>?
    As an aside I have corrected the field name in the pdf for future use.

    No, it is why advance users do not use the wizard.
    Have a look at OpenOffice.org and its form creation. Once you add your fields in OpenOffice.org, just export to PDF and the form fields will be named just like you named in them in OpenOffice.org and the drop down values carry over.

  • Finding field name

    Hi friends,
    I have to add two fields in a customer based report , i know only the description of field name 'Customer comments' and 'contact notes'.
    in which table i have to search for getting SAP database field. i have searched in customer master data but  unable to get the data.
    could any one help on this please.

    Hi Kumar,
          Here is the other method to get the field name with description.
          Go to se11 &#61664; select the Data type radio button &#61664; place your cursor in the text box and press F4 &#61664; choose search for data elements &#61664; enter your description short description box press enter &#61664; then double click on the data element &#61664; then click on where used list.
            Then you will get in which table you are using the data element and field names.
    Regards,
    Ramakrishna kotha.

  • Why Inner join or Outer join is not used for Pool or Cluster tables  ?

    Hi SAP-ABAP Experts .
    With Due Regards .
    May u explain me why Inner join or Outer join is not useful for Pool or Cluster tables  ?
    because peoples advised not use Joins for Pool and Cluster tables , What harm will take place , If we do this ?
    Best Regards to all : Rajneesh

    Both Pooled and Cluster Tables are stored as tables within the database. Only the structures of the two table types which represent a single logical view of the data are defined within the ABAP/4 Data Dictionary. The data is actually stored in bulk storage in a different structure. These tables are commonly loaded into memory (i.e., 'buffered') due to the fact they are typically used for storing internal control information and other types of data with little or no external (business) relevance.
    Pooled and cluster tables are usually used only by SAP and not used by customers, probably because of the proprietary format of these tables within the database and because of technical restrictions placed upon their use within ABAP/4 programs. On a pooled or cluster table:
    Secondary indexes cannot be created.
    You cannot use the ABAP/4 constructs select distinct or group by.
    You cannot use native SQL.
    You cannot specify field names after the order by clause. order by primary key is the only permitted variation.
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • Converting HTML Forms to PDF - Field Names

    When I use Adobe 8 to convert and HTML form to PDF all the field names in the resulting PDF have the crazy long names that are jumble of letters and numbers. So I always have to go back through and manually rename every field because I'm using another program to autopopulate the fields with data. Is there any way to get Acrobat to automatically name the fields in the PDF the same as they are named in the form either using the "name" or "id" properties of the HTML fields? I don't understand why this isn't the default behaviour to begin with.

    The reason this is done is due to a fundamental difference between HTML forms and Acrobat forms. In HTML forms, fields with the same name do not necessarily share the same value, whereas in Acrobat forms they do.
    In the conversion process, Acrobat gives each field a unique name, but also sets a field's mapping name to the name the field had in the original HTML form. This is so that if the PDF form is used to submit as "HTML", then the original field names will be used and any server process that is capable of dealing with the HTML form is capable of dealing with the resulting PDF form. So be aware that if you want to use your modified form to submit to a web server using the "HTML" format, the new field names that you set will not be used. What will be used are the hidden mapping names.
    Unfortunately, I don't think there's anything you can do about any of this to make it work like you want.
    George

  • Reg:FCC to ignore the last field name

    Hi...
       I am using FCC in the reciver file adapter.
    the output structure is like
    94,ESSAR,,,,,,,D,0000100226,10000,12/13/1 KURLA EAST,MUMBAI,,400025,006398765432,,2009-03-24 00:00:00.0,0000100226,20202789,,,,SUCCESS,,
    /home/corpuser/Disbursement/DD
    I am achieving the above structure. But in that i dont want the last field name "/home/corpuser/Disbursement/DD".
    Can you please tell how to ignore the last field name in the receiver file adapter using FCC.
    Thanks & Regards,
    Leela

    94,ESSAR,,,,,,,D,0000100226,10000,12/13/1 KURLA EAST,MUMBAI,,400025,006398765432,,2009-03-24 00:00:00.0,0000100226,20202789,,,,SUCCESS,,
    /home/corpuser/Disbursement/DD
    I am achieving the above structure. But in that i dont want the last field name "/home/corpuser/Disbursement/DD".
    Can you please tell how to ignore the last field name in the receiver file adapter using FCC.
    Completely with Jai on that.
    Dont do that mapping itself. Handle such conditions in your mapping.
    Is there any specific reason why you can do so?

  • Fetch field names & Description for Table

    Hi,
       My requirement is if i enter the Table name i have to get all the field names and description .Please tell me how to do.
    Thanks,
    Mohan

    Hi,
    TABLES: DFIES,
            X030L.
    DATA: BEGIN OF INTTAB OCCURS 100.
            INCLUDE STRUCTURE DFIES.
    DATA: END OF INTTAB.
    PARAMETERS: TABLENM TYPE DDOBJNAME       DEFAULT 'MSEG',
                FIELDNM TYPE DFIES-FIELDNAME DEFAULT 'MENGE'.
          call function 'DDIF_FIELDINFO_GET'
            exporting
              tabname              = TABLENM
              FIELDNAME            = FIELDNM
              LANGU                = SY-LANGU
    *         LFIELDNAME           = ' '
    *         ALL_TYPES            = ' '
    *       IMPORTING
    *         X030L_WA             = WATAB
    *         DDOBJTYPE            =
    *         DFIES_WA             =
    *         LINES_DESCR          =
            TABLES
              DFIES_TAB            = INTTAB
    *         FIXED_VALUES         =
            EXCEPTIONS
              NOT_FOUND            = 1
              INTERNAL_ERROR       = 2
              OTHERS               = 3.
          if sy-subrc <> 0.
             WRITE:/ 'Field name not found'.
          endif.
          LOOP AT INTTAB.
             WRITE:/ INTTAB-TABNAME, INTTAB-FIELDNAME, INTTAB-FIELDTEXT.
          ENDLOOP.
    Thanks and regards,
    Ramani N

  • Change of field Name

    I am having 20 fields in a table and in this table i am having about sis lakhs record. Now i realised that one of the field name is spelt wrongly.I am using oracle 8i now without doing anything to the table i must have to change the field name,
    Foe example the wrong field is martialstatus and it should be corrected to maritalstatus.
    If any body having any answers can reply to this mailid [email protected]

    Suresh,
    You have 6 hundred thousand records in a table, You are lucky with 8i this is no problem,
    You can solve this in two ways,
    1. Create a new table with correct field name and then insert all record into the new table.
    2. Create the new field with correct name in
    the same table and then copy the data from the old field into new field and then use the DROP COLUM command and drop the old field.
    Good Luck
    Nisar Tareen.
    Canada.
    null

Maybe you are looking for

  • [JS CS3] Metadata getProperty path

    Hi, How to get the values of the members in a container in the metadata? I created my own xmp-document which contains this fragment: A B I tried this code: myMetadatPreferences.getProperty("http://www.kvd.fake/ns#", "kvd:a/rdf:Seq/rdf:li[1]"); But is

  • "Oracle Data Integrator" with "Total Recall"

    Hi all, We are planning to use Oracle Data Integrator 11g for performing ELT in Oracle 11g database. We are also planning to enable the "total recall" (flashback) technology and house all our tables on it. Question I have in my mind right now is, wil

  • File sharing won't respond

    I recently upgraded and when I try and turn filesharing on, it doesn't respond. The check button stays blank. This is really frustrating. I am also noticing that Airport is working, but in network settings it is shown as a green light, but listed as

  • Forms 6i problem in procedures for make update

    dear sirs, i had procedure to make update for tree of accounts, but make update to some levels and other level no, and here is the procedure if inside it any problem pls advice me CREATE OR REPLACE PROCEDURE updup_acc_trbal2( wyear IN NUMBER , wperio

  • Motorola Droid 3 Continues to Freeze

    Ive had my Droid 3 for a little over a year and yesterday it just started freezing up, especially when I open/shut the keyboard.  The only way to get it back is to pull the battery.  Ive tried uninstalling all of my unused applications, deleting my p