Finding fields from table

Hi all,
trying to find databse table for  field pikmg (put away  quantity), its from the structure lipsd, and in the transactions vl32n, under the tab stock placements.
Thanks in advance.
Anupma Chandra.

HI,
CHECK IN TABLE <b>DD03L</b>.
  <b>TABNAME                       FIELDNAME
  DLVRY_SPLT_HEAD               PIKMG
  E1VPDLI                       PIKMG
  E2VPDLI                       PIKMG
  E3VPDLI                       PIKMG
  FRM_LIPSVB_EXTENDED_T         PIKMG
  LEINT_LDOCV_ITEM              PIKMG
  LEINT_LIPSVB                  PIKMG
  LESHP_ITEM_DATA_TO_CREATE     PIKMG
  LIPOSTV                       PIKMG
  LIPOV                         PIKMG
  LIPSD                         PIKMG
  LIPSVB                        PIKMG
  LVBPOK                        PIKMG
  LXDCKM_INBLDOCV_ITEM          PIKMG
  LXDCKM_OUTLDOCV_ITEM          PIKMG
  LXHME_LDCVI                   PIKMG
  LXHME_LDOCV_F                 PIKMG
  LXHME_LDOCV_ITEM              PIKMG
  LXHME_LDVDT                   PIKMG
  SHP_VL10_DELIVERY_SINGLE_SEGM PIKMG
  VBPOK                         PIKMG
  VBPOKKOMMI                    PIKMG</b>
Regards,
Kishore.

Similar Messages

  • Update PRODH field from table T179T

    hi,
    i want to update PRODH field from table T179T into table VBRP. for this we
    need to take selection option also.
    selection option will be :
    ·             Sales Organization (field VBRK-VKORG)
    ·       Billing Date Range (VBRK-FKDAT)
    ·       Distribution Channel (Vbrk-vtweg
    while i have done this for one field by using hard code but like:
    TABLES: VBRP.
    CLEAR VBRP.
    UPDATE VBRP SET PRODH = 'PLC01' WHERE VBELN = '0008300051'.
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.
    but this is not the right way. please guide me how to solve this.

    TABLES: VBRP.
    CLEAR VBRP.
    UPDATE VBRP SET PRODH = 'PLC01' WHERE VBELN = '0008300051'.
    <b>commit work.</b>
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.
    use commit work after update statement.
    But this code would make vbrp-vbeln as plc01 only.
    If you want to get the prodh value from t179t, then write a sleect on t179t and then update.
    TABLES: VBRP.
    CLEAR VBRP.
    select single prodh
      from t179t
    where......
    UPDATE VBRP SET PRODH = t179-prodh WHERE VBELN = '0008300051'.
    commit work.
    SELECT SINGLE * FROM VBRP WHERE VBELN = '0008300051'.
    WRITE: VBRP-VBELN,VBRP-PRODH.

  • How to hide a field from table maintenance view?

    Hi,
    How to hide a field from table maintenance view? 
    The field is used for data created date. I need to hide it from display.
    Thanks

    Chk this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/66/33f52010dd11d6999300508b5d5211/frameset.htm
    Maintenance Attributes
    You can assign a maintenance attribute P to individual fields in the maintenance view definition in the Dictionary (SE11). It can be  H (hidden)
    H (hidden)
    A field flagged H is not displayed on the screen. This field must also be filled in the background by a routine at an event.
    The system writes R and H fields to the database like all other fields when a new data record is saved.

  • Add Fields from table ADRC (Fields Name 1 to 4) for Open Item Processing

    Hi SAP Expert:
    Our client requires vendor/customer name to be displayed in the open item processing line layout for transaction code f-58, so they can double check if the vendor name is complete as intended. 
    We intend to add fields from table ADRC instead of REGUH since the characters in maintaining vendor/customer name is 40 characters and REGUH - ZNME1s are only 35 characters. 
    We have managed to add fields from ADRC and change the SAPDF05X program and were able to display the names in open item layout, except that the program seems to "automatically" create a generic table which only carries 30 characters of the vendor/customer name.  The source table should be RFOPS_DK but the program automatically looks up from table RFOPS_GEN for the particular fields - Name 1 to 4.  Is there a way to "instruct" the program to use RFOPS_DK instead of RFOPS_GEN?
    Hope this will merit somebody's attention... Thanks !!!

    Thanks,  i have assigned the layout via o7v3,  it is the program that i have a problem with,  actually another program that we change is the program MF05BFPO where it generates data to be displayed in the FBZ4 screen,  though we add a field with 40 characters (ADRC Name 1 to 4)  what the program dispalys is a 30 character Name1 to 4 from structure RFOPS_GEN. 
    My question is can i extend/change the structure RFOP_GEN to 40 characters,  is there any SAP standard program that will aftected if i do so?  thank very much...
    Lorena

  • Select fields from Table PA0001 where condition in PA0000 EQ X.

    I'm quite new here at SDN an to ABAP as my code below will show.  =)
    I have two tables PA0001 and PA0000 and I want to show the PERNR from Table PA0001 WHERE PA0000-stat2 EQ '3'.
    SELECT PERNR STAT2 FROM pa0000 INTO CORRESPONDING FIELDS OF TABLE it_act WHERE stat2 EQ '3'.    "this works fine
    SELECT * FROM pa0001 INTO TABLE it_pos.
    LOOP AT it_pos INTO wa_pos WHERE It_pos-pernr EQ it_act-pernr.                
    WRITE......
    ENDLOOP.
    Isn't it possible to put the conditions in the LOOP statement? Should i somehow do i join in the select instead?
    If you dont understand what I mean just ask and I will try to explain.
    Best Regards Claes.

    Hi Claes Widestadh ,
    I have total Code for you, to solve your Problem, I have written the code for you & tested it, and it was Working Very Fine.
    Please find the Below Code.
    TABLES : PA0000, PA0001.
    DATA : IT_PA0000 LIKE PA0000 OCCURS 0 WITH HEADER LINE,
           IT_PA0001 LIKE PA0001 OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF IT_FINAL OCCURS 0,
           PERNR LIKE PA0001-PERNR,
           END OF IT_FINAL.
    SELECT PERNR STAT2 INTO CORRESPONDING FIELDS OF TABLE IT_PA0000 FROM
    PA0000 WHERE STAT2 = '3'.
    SELECT * FROM PA0001 INTO TABLE IT_PA0001.
    SORT IT_PA0001.
    LOOP AT IT_PA0000.
      READ TABLE IT_PA0001 WITH KEY PERNR = IT_PA0000-PERNR.
      IF SY-SUBRC = 0.
        IT_FINAL-PERNR = IT_PA0001-PERNR.
        APPEND IT_FINAL.
        CLEAR IT_FINAL.
      ENDIF.
    ENDLOOP.
    LOOP AT IT_FINAL.
      WRITE :/ IT_FINAL.
    ENDLOOP.
    Note: If you find this Answer is very Helpful Please allot me the Points.
    Please do let me know any isssues at your end.
    Thanks,
    Satya Krishna.M

  • Problem in selecting object currency fields from table COSP and COSS

    Dear All,
    We are facing a issue while creating a virtual DataSource   for CCA plan from tables COSS and COSP.
    The issue is that we are able to activate the view by including the fields value in object currency ( WOG001 - WOG012 ) but not able  to create a DataSource   on the view.
    We are able to include the transaction currency value but as our application requires us to include the object currency fields.
    Error displayed:Invalid extract structure template .This operation failed, because the template structure quantity fields or currency fields, for example, field WOG001 refer to a different table.
    Any tips to resolve this issue would be valuable.
    Thanks in advance
    Rashmi Nair.

    HI,
    Can you see this thread.
    Re: How to display BAPI decimal values into webdynpro!
    Thanks
    nageswar

  • Remove fields from table key

    I define a customize table (maintenance only by cust., not SAP import).
    5 of the fields are the table keys.
    When I remove 2 fields from the key and adjust the table I get the following errors
    “Primary key change not permitted for value table ZT7IL60”
    “Activation of Table ZT7IL60 not possible (please check)”
    Any clue why and how to remove some fields from the key?

    hi there,
    the reason for  this error can be any....
    may be you are using that field in the foreign key reference of another table. thats y it is not allowing the change option as it will affect other table's values.
    another thing can be the one suggested in the above post.
    do reply if any of the methods mentioned helps.
    Do reward if helpful./

  • Exclude GUID field from tables in tdms transfer.

    Hi,
    We have been asked chek whether it is possible to exclude GUID fileds from tables in TDMS ERP data transfer.
    We ran data replication from ECC to CRM in out pre-prod system, replication populated the CRM GUIDs in ECC. We are going to use pre-prod as sender system for TDMS transfer. GUID field is part of the corresponding object table so the receiver system tables also populated with GUID. What we don't know is how replication behaves when the GUIDs are already populated.
    As I know there is a way to set the GUID filed to NULL value in tdms transfer using scrambling rule. The only concern I am having is how this could affect the ISU data in other tables.
    Please share your opinions on this.
    Thanks
    Praveen.

    The "GUID fields" are used to normalize the data and is the key fields for all CRM applications. If you don't transfer those the system will be "empty" because data relations cannot be found.
    Markus

  • Finding fields by tables

    hi,
    in my F.S there are no fields and tables. i know only the application. how can i find the fields and tables.

    Hi,
    Check  this link..
    http://www.erpgenie.com/abap/tables.htm
    Regards,
    Omkaram.

  • How can I open a PDF file and enter a word in the Find field from the command line?

    Hi,
    I want to use a PDF file as the help file of another program.
    I have found somewhere an incomplete description of the command line parameters of Acrobat Reader.
    It described how to open a file and jump to its given page.
    I have written the following batch file based on that.
    rem Open pdf (prm1) with Acrobat reader at given page (prm2)
    "%adobe_rdr%\AcroRd32.exe" /N "zoom=73&page=%2=OpenActions" %1
    The following batch file opens the search dialog:
    rem Open pdf (prm1) with Acrobat reader
    rem and search for something (prm2)
    "%adobe_rdr%\AcroRd32.exe" /N "zoom=73&navpanes=1=OpenActions&search=%2" %1
    I need the simple find field instead of the complicated search window.
    Regards
                   Ferenc

    Not possible.

  • HELP TO MOVING FIELDS FROM TABLES

    HI EXPERTS,
    i have two tables and i wont to move fields of  price to table ZEMPKOSTLPRICE_REC where dates are match.
    <b>I REWARD KINDLY</b>
    i give example
    table
    <b>INTAB_A132[]</b>
    resrc                         datbi                            datab                       price
    0000010599               <b>20081231      20080401</b>     15000.00
    0130130130     <b>20081031      20080301</b>     84000.00
    0130130130     <b>20081231      20081101</b>     0.01
    table
    <b>ZEMPKOSTLPRICE_REC</b>
    i wont like that
    reserc                       period         price        date
    0000010599     042008     15000.00     20080401
    0000010599     052008     15000.00     20080501
    0000010599     062008     15000.00     20080601
    0000010599     072008     15000.00     20080701
    0000010599     082008     15000.00     20080801
    0000010599     092008     15000.00     20080901
    0000010599     102008     15000.00     20081001
    0000010599     112008     15000.00     20081101
    0000010599     122008     15000.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     84000.00     20080401
    0130130130     052008     84000.00     20080501
    0130130130     062008     84000.00     20080601
    0130130130     072008     84000.00     20080701
    0130130130     082008     84000.00     20080801
    0130130130     092008     84000.00     20080901
    0130130130     102008     84000.00     20081001
    0130130130     112008     0.01     20081101
    0130130130     122008     0.01     20081201
    this is my code
    DESCRIBE TABLE intab_a132 LINES a_index.
            IF a_index GE 1.
              DO a_index TIMES.
                LOOP AT  zempkostlprice_rec INTO wa_zem.
                  READ TABLE intab_a132 INTO wa_intab_a132 INDEX a_index  .
                  IF wa_intab_a132-datab GE wa_zem-date.
                    IF  wa_zem-kbetr IS INITIAL AND wa_zem-konwa IS INITIAL
                    AND wa_zem-kostl IS INITIAL .
                      MOVE: wa_intab_a132-kostl TO wa_zem-kostl,
                            wa_intab_a132-kbetr TO wa_zem-kbetr,
                            wa_intab_a132-konwa TO wa_zem-konwa.
    MODIFY zempkostlprice_rec FROM wa_zem TRANSPORTING kbetr konwa kostl
                WHERE resrc = wa_intab_a132-resrc AND date GE wa_intab_a132-datab.
                      CLEAR:wa_zem,wa_intab_a132.
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                a_index = a_index - 1.
              ENDDO.
            ENDIF.
    i try with this code but i get 84.0000 insred 0.01 in month 11 and 12 in 2008
    0000010599     042008     15000.00     20080401
    0000010599     052008     15000.00     20080501
    0000010599     062008     15000.00     20080601
    0000010599     072008     15000.00     20080701
    0000010599     082008     15000.00     20080801
    0000010599     092008     15000.00     20080901
    0000010599     102008     15000.00     20081001
    0000010599     112008     15000.00     20081101
    0000010599     122008     15000.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     84000.00     20080401
    0130130130     052008     84000.00     20080501
    0130130130     062008     84000.00     20080601
    0130130130     072008     84000.00     20080701
    0130130130     082008     84000.00     20080801
    0130130130     092008     84000.00     20080901
    0130130130     102008     84000.00     20081001
    <b>0130130130     112008     84000.00     20081101<---- insted  0.01
    0130130130     122008     84000.00     20081201</b>
    REGARDS

    hi varma
    thankes for your answer
    i try your code exactly and what i get is that
    0000010599     042008     15000.00     20080401
    0000010599     052008     0.00     20080501
    0000010599     062008     0.00     20080601
    0000010599     072008     0.00     20080701
    0000010599     082008     0.00     20080801
    0000010599     092008     0.00     20080901
    0000010599     102008     0.00     20081001
    0000010599     112008     0.00     20081101
    0000010599     122008     0.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     0.00     20080401
    0130130130     052008     0.00     20080501
    0130130130     062008     0.00     20080601
    0130130130     072008     0.00     20080701
    0130130130     082008     0.00     20080801
    0130130130     092008     0.00     20080901
    0130130130     102008     0.00     20081001
    0130130130     112008     0.00     20081101
    0130130130     122008     0.00     20081201
    regards

  • Onblur get values for form field from table.

    Hello,
    I created one from with report for TableA.TableA has 5 column. Now after i enter first field ,on blur, i want 2 other fields should get populated.They should get the 2 values from TableB.Table A and Table B are connected through primary key foreigh key constraint.First field is primary key of TableA.
    How can i do this.I am writing a javascript function which i am calling from first form field.
    But in the function how to take values from the table for the other 2 fields.
    Can i just Select statements inside javascript function?
    Thanks
    Swapna.T

    Swapna,
    You can do this using AJAX. See link.
    Hope it helps
    Cheers,
    Hari

  • How to select max (field) and one more field from table?

    Hi experts!
    I need to select maximum value of ENDDA from PA0023 and BRANC of max ENDDA.
    How can I do that ?
    When I trying this code:
    This is the  code:
    SELECT MAX( endda ) branc
      FROM pa0023
      INTO (pa0023-endda, pa0023-branc).
    I get error message:
    The field "PA0023~BRANC" from the SELECT list is missing
    in the GROUP BY clause. Addition INTO wa or INTO (g1,...,gn)  is required.
    So what is the problem?
    Thanks forehead.

    Hi
    Though am not totally sure of your requirement, check below code samples without any syntax errors:
    1. As per you current coding:
    TABLES: pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           GROUP BY branc.
    ENDSELECT.
    2. Above code results only on one record where as the criteria can be more than one. Eg: for a specific data more than one record can exist. Below code helps you handle the same:
    TABLES: pa0023.
    TYPES: BEGIN OF t_pa0023,
             endda TYPE endda,
             branc TYPE brsch,
           END OF t_pa0023.
    DATA: i_pa0023 TYPE TABLE OF t_pa0023,
          wa_pa0023 TYPE t_pa0023.
    SELECT MAX( endda ) branc
           FROM pa0023
           INTO TABLE i_pa0023
           GROUP BY branc.
    LOOP AT i_pa0023 INTO wa_pa0023.
    ENDLOOP.
    3. If the requirement is to get the Industry Key for the record with highest End Date. We can acheive it by using subquery something like:
    TABLES: pa0023.
    SELECT SINGLE endda branc
           FROM pa0023
           INTO (pa0023-endda, pa0023-branc)
           WHERE endda = ( SELECT MAX( endda ) FROM pa0023 ).
    Kind Regards
    Eswar

  • How to Find fields and tables of any Datasource

    Hi  ,
    How to find tables and fields for DataSource  2LIS_05_QE1 , and extractstruct is MC05Q1_0INSP as per requirement to find INCOMING PPM.
    is there any specific technique , to find any tables and fields related to our requirement in any DataSource .
    thank's

    Check in LBWE transaction ..
    for
    2LIS_05_QE1 , and extractstruct is MC05Q1_0INSP as per requirement to find INCOMING PPM.
    go to quality management ..
    you will get the data source
    if you click on maintenance ..
    BR
    Manthan

  • Not able to use fields from tables

    Hello,
    I have recently got Crystal Reports 2008, created an ODBC connection with our Progress database. I can see all tables, but when selecting, only a few would actually be usable - in the sense that even if I see the fields, I cannot use them in report design. When selecting a table in database Expert, it shows an icon only without the table name.
    I have tested the ODBC by successfully opening all tables in Excel. there are no restrictions on the tables
    I believe it might be some setting in Crystal. Can you help?
    Thank you.

    Hi,
    Sorry for the delay...
    I am using version 2008, database is an ODBC connection with a Progress database (called ASI).
    I am not sure about the driver.
    Ovi

Maybe you are looking for

  • Question re Final Cut Express Capabilities

    I'm about to make the jump from another editing system over to Final Cut Express 4. One of the things I want to be able to do is line up and load three different angles from three different cameras and be able to edit "on the fly" as the scenes play.

  • Can't get a picture, only loud beep when I power on my desk top. Ois 10.6

    When I power on my desk top, i hear the start up sound but only get a black screen and loud beep. ois 10.6

  • Best way to port from Verizon to AT&T (device only)

    My wife and I are Verizon customers. We wish to switch to AT&T's Mobile Share. We currently have Verizon iPhone 5's and plan on purchasing the device only Verizon iPhone 6 Plus because of it's GSM/CDMA capabilities. Since Apple is not yet offering de

  • Has anyone implemented ChaRM in a 4-tier or 5-tier landscape?

    Iu2019ve setup ChaRM with a 3-tier landscape DV1-QA1-PRD and everything works as advertised. I used the transport route, DV1/120 -c- /QA1/ (clients 149/150) -QA1 -d- PRD/150. Where -c- is a consolidation route and -d- is a delivery route. Now I need

  • Design View suddenly incorrect, Web view looks fine

    I uploaded my site and, after doing so, shut down Dreamweaver. The next day, when I opened it again, my pages in Design View looked completely wrong.  The code seems to be fine and when I preview the pages in Google Chrome they look perfect; all the