CU50 Data from Structure RCUKO

Dear Colleagues,
I have seen on previous blogs that the standard structure RCUKO is where CU50 take the information and that the data there could be extracted by using a functional module (probably CU_SINGLE_CONFIGURE).Could you please give me the heads up on how to do this?
Secondly,I was just wondering whether I could extract the data using a data structure-based -query to do so,also?
All useful answers will be awarded accordingly.
PAPJ1.

Hi Tinks,
You can get data into structure at run time but structure doesn't have any data itself
You just need to use RESBD-DVMENG to get the content of structure at runtime.
Eg: V_DVMENG = RESBD-DVMENG.
Thanks,
Vinay

Similar Messages

  • How to retreive data from structure MDEZ in T.code CO09

    As per our requirement 2 new columns are needed in a customize report .i.e
    - u201Cinc. lot dateu201D
    - u201Cavailable inc. lotu201D
    u201Cinc. lot dateu201D:to get the values for inc.lot.date
    From second screen of CO09(program: SAPLATP4 and screen number: 400) pick first date where MRP element is u201CPOitemu201D, u201CShpgNtu201D or u201CPrdOrdu201D.
    u201Cavailable inc. lotu201D: to get the values for available inc.lot
    Pick u201CCum. ATP QTyu201D from the same row.
    These data are stored in structure MDEZ. Actually I want dat00 and MNG04 based on field DELB0. If DELB0 filed is POitem or Prdord or ShpgNt then only I should retrieve the dat00 and MNG04. IF there are more than one POitem in MRP element then we should pick the first POitems' mrp date and *** ATP qty  .Can you please help me out how to get these data from the structure MDEZ.
    input parameters to get the values are material number and plant.

    Hi,
    First of all data is never stored in structure so there is no way you can retrive data from structure.
    you are looking into the screen field and it is not mandatory that it will always point to a table.
    Now  the qestion remains how to get the data ?  you need to find database table for that field there are many ways like SE84 or SE11 where used etc.
    Try to find the table if you still have the problem feel free to get back.
    Regards
    Bikas

  • Error in abap query sq03,02,01(to get data from structure) it is possible?

    hi
    experts,
    i am developing a report using abap query .(stand t code is s_alr_87012277 it contain more fields but i want only 4 fields , i found 2 but remaining 2 are from structure)
    my problem is that debit and credit amount is in structure
    how  i can get data from structure(FAGL_S_RFSSLD00_LIST )
    solbm = debit.
    habbm  = credit.
    report is like
    op.
    gl acc no, discription, credit amount,debit amount.

    Hi ajay,
    try to use with  logical database  SDF.
    assign the logical database name in info set.
    gl acc no    -               SKA1-SAKNR
    debit.         -     Field: um02h
    credit.        -     field:  um02s 
    discription  -               SKAT-TXT20
    regards,
    sateesh.

  • How to get data from structures ??

    HI
    I have to do a report.I had given structures instead of display tables.we cant get data from the structures. are there any FM to diaplay data from structures or shd i need to sreach the fileds in display table
    Regards
    Rasheed

    Hi,
    There are several ways to find the tables:
    1) Choose the data elements that the structure fields belong to - do a 'Where User' in SE11 to see any tables - check using SE16.
    2) Use ST05 and or SE30 to trace the transaction and see what tables are being read.
    3) In many areas there are Function Modules that does these reads - could you please provide more details of the area you are trying to get data from?

  • How to read data from structure RSTXT

    Hi Everyone..
       I have some problem with read data from structure RSTXT.
    I am using transaction code vl02n -> for delivery select <b>Item</b> in item
    overview tab -> Go to -> Item -> text.
    I want display "<b>RSTXT-TXLINE</b>" field in <b>ALV</b> report how it can be possible?
    If anyone knows about it plz reply me with example.
    Thanks in Advance.

    Hi,
    Use FM READ_TEXT
    ( Once on the text, plz display it in plain page mode :
    then > Go To> header : Here you'll get the FM parameters : ID, Object, Name, ... )
    Sample code :
      DATA: BEGIN OF TTLINE OCCURS 0.
              INCLUDE STRUCTURE TLINE.
      DATA: END OF TTLINE.
      CALL FUNCTION 'READ_TEXT'
           EXPORTING
                CLIENT                  = SY-MANDT
                ID                      = L_ID
                LANGUAGE                = L_LANGUE
                NAME                    = L_BL
                OBJECT                  = 'VBBK'
           TABLES
                LINES                   = TTLINE
           EXCEPTIONS
                ID                      = 1
                LANGUAGE                = 2
                NAME                    = 3
                NOT_FOUND               = 4
                OBJECT                  = 5
                REFERENCE_CHECK         = 6
                WRONG_ACCESS_TO_ARCHIVE = 7
                OTHERS                  = 8.
    Regards,
    Erwan

  • How to extract data from structures or create a datasource using structures

    Hello Friends , I have a requirement to extract data from ECC fields, but when i go look the table i found only "structures" REBD_CONTRACT_REL_L and i confirmed with ecc team that there are no table available with these fields so how do i now extract the data in BI using the fields in ecc that exist only in these Structures.
    Please help me to resolve this
    Thanks
    Regards
    Soniya

    check tables
    VIOBOV
    (VIBDPLANOCC certainly not)
    VICNCN table of the contrat
    VIOROF table of the offers
    VIBDOBJASS affectation of objects.
    VICAINTRENO Affectation INTRENO / OBJNR / IMKEY
    that will be a good start but ask again your functional persons.
    If you want to upload data to BI you have to know the tables
    bye
    by the way a structure do not hold data.

  • DATA from structure

    hi firends,
    i need to retreive data from table and structure is it possible
    eg-- AAA is table having atr no
          BBB is strucrure in run time its having some data related to AAA table atrno
    i want a select query for this  plz some one provide me with example code
    but i know structure will not store value.my requirement is for IDOC so structure carries data so ineed to track that
    pointe will be rewarded
    thanks in advance
    raj

    Hi Raj ,
    basically addition or deletion of segments the data holds in the data record structure.
    all the data pertaining to the idoc is stored and processed
    in the structures
    EDIDC--> Control Records.
    EDIDD --> Data srecords.
    goto se37 and enter the FM name
    f7
    u 'll see
    TABLES
    *"      IDOC_CONTRL STRUCTURE  EDIDC
    *"      IDOC_DATA     STRUCTURE  EDIDD
    now if i want to know the data this is is structure EDIDD now in itab
    IDOC_DATA.
    BREAK-POINT.
    LOOP AT IDOC_DATA.
    ITAB-F1 = ID0C_DATA-F1.
    ITAB-F2 = ID0C_DATA-F2.
    ITAB-F3 = ID0C_DATA-F3.
    APPEND ITAB.
    CLEAR ITAB.
    ENDLOOP.
    this way u can fetch the data .
    regards,
    VIjay

  • How to select data from structure

    how to select data from structure

    Hi Laxman,
    Structure holds single record of data. You can acess data by using the syntax <b>Structure-field</b>
    Please see sample.
    data: wa_mara  type mara.
    select *
              from  mara
              into wa_mara
              up to 1 rows.
    endselect.
    write:/ wa_mara-mandt,
             wa_mara-matnr,
             wa_mara-maktl.
    if helps plz reward points.
    Regards
    Bhupal Reddy

  • Wish to retrieve data from structure

    hi all.
    i have structures and fields to dispaly and want to retrieve data from them.please guide me with the tables available with me where i can link them for the primary key combination.
    RV13A-VAKEY1 and komv-kpein,komv-kmein are the structure-fields for which i want to display.
    and available tables are vbak ,vbap ,konv ,cdhdr , cdpos .
    waiting for the reply.

    i want to link the RV13A and komv with the existing tables that i mentioned...
    it is not the konv that i want to connect with.
    kindly suggest accordingly.

  • Getting Data from Structure and Store Data into Table using Function Module

    Hello...
    we are created a function module to import 2 structures in the systems and want to read the data from the structure into a customized table when the fucntion module is called. However, whenever the function module is run, we only managed to have one data into the customized table whereas the actual results is that there will be a few records in this customized table.

    Hi,
    It should be something like this...
    TABLES ZRESMORT.
    DATA E_ZRESMORT TYPE STANDARD TABLE OF ZRESMORT WITH HEADER LINE.
    SELECT * FROM ZRESMORT.    <=====================
      DELETE ZRESMORT.              <==================  It is deleting all the records in your Z table
    ENDSELECT.    <===============================
    Loop at I_CKF_CONTRACT.  " Assuming this is the Main Table
    Read table I_CKF_PROCESS with key ." Here you will read this table to get the corresponding records of Table I_CKF_CONTRACT
    E_ZRESMORT-MORT_FT_ID  = I_CKF_CONTRACT-COMMON-CONTRACT_ID_EXT.
    E_ZRESMORT-MORT_KDATE  = I_CKF_PROCESS-TECHNICAL-KEY_DATE.
    E_ZRESMORT-MORT_TSTAMP = I_CKF_PROCESS-TECHNICAL-TIMESTAMP.
    E_ZRESMORT-MORT_FLAG   = 1.
    E_ZRESMORT-MORT_BUPA   = I_CKF_CONTRACT-BUPA-BUSINESS_PARTNER_ID.
    E_ZRESMORT-MORT_PORTFO = I_CKF_CONTRACT-BUPA-PORTFOLIO_CAT.
    E_ZRESMORT-MORT_FT_ID_DUM  = I_CKF_CONTRACT-COMMON-CONTRACT_ID.
    INSERT INTO ZRESMORT VALUES E_ZRESMORT.
    IF SY-SUBRC EQ 0.
    ENDIF.
    endloop.

  • How's to select data from structure data object?

    Dear Guru,
    If my data is kept in structure data object (not a table type).  How can I select data from that kind of data object.  Thank you.
    Cheers,

    Hi,
    Data cannot be stored in structure.
    Structure is just like a view , so its a medium with which you can create a view relevant to your needs.
    The fields that we need together , we put in a structure.
    Structure is a medium where we collect all our relevant fields.
    we can include the structure in internal table so that we can actually store data , process data and retrieve data.
    hope this helps.
    thanx,
    dhanashri.

  • How to retrive the data from structure

    Hi Guru's,
                 I have an doubt in how to retrieve the data from the standard structure or view .i want to retrieve the data from std structure name is (IOOPCOMP) in that structure i want to fetch the field DENMNG ,MENGE,EINHEIT how do i write select query to  print the value . if any one can have any example structure related program give me its very helpful for me.
    with regards,
    sen

    Hello Senthil
    The solution for your problem is trivial. Checking the Where-Used-List for structure IOOPCOMP (on release 4.6c) there is neither a function module nor a class using this structure (or fields of it).
    However, the structure is used in the following list of programs:
    PPIO_ENTRY
    PPIOA000
    PPIOB000
    PPIOC000
    PPIOD000
    PPIOE000
    PPIOF000
    PPIOG000
    PPIOH000
    PPIOI000
    PPIOK000
    PPIOM000
    PPIOO000
    PPIOQ000
    PPIOR000
    PPIOS000
    PPIOT000
    PPIOW000
    PPKALKFI
    PPPIA000
    PPPID000
    PPPIG000
    PPPIH000
    PPPII000
    PPPIK000
    PPPIM000
    PPPIO000
    PPPIQ000
    PPPIR000
    PPPIT000
    PPPIW000
    RCCLORD
    SAPDBIOC
    SAPLCOWORK240
    SELECT_OPERATION
    If you know judging from your business context which program is the right one you are half-way on the home stretch.
    Regards
      Uwe

  • Help in fetching data from structure

    Hi All
           I have a requirement wherein I need to show date field DATUM from structure PTK10 .This is related to trip reporting. Now I don't see this particular field in any DB Table. How can I show this date in my report? any clues..
    is there any way out..?
    Pls respond .
    Thanks & Regards
    Babita Sharma

    Hi
        I am using following tables in my program.
    TABLES : ptrv_head,     "General Trip Data
             ptrv_scos,     "Trip Statistics-Cost Assignment
             ptrv_perio,    "Period Data of a Trip
             pa0001,        "HR Master Record:Infotype 0001(Org.Assignment)
             t706b5,        "Names for Travel Expense Types
             v_ptrv_head,
             "Join to Tables PTRV_HEAD & PTRV_SHDR & PTRV_PERIO
             v_ptrv_srec.   "Join to PTRV_SREC & PTRV_SADD
    Also , as suggested by Mrutyunjaya, direct access of structure in select
    query is not possible.
    any clues..
    Thanks & Regards,
    Babita Sharma

  • FETCHING DATA FROM STRUCTURE

    I HAVE A STRUCTURE T023D AND FIELD IS WWGHA ,I WANT TO FETCH DATA CORRESPONDING TO THIS FIELD HOW I CAN DO IT PLEASE TELL ME.
    SUGGEST IF I CAN USE FIELD-SYMBOL.
    THANKS IN ADVANCE.

    Hi James,
    Like you already know by now that your structure T023D does not hold any data.
    If I undrestand correctly, you have identified this structure from a screen and now want to extract the data stored behind it.
    You can do so using tables T023 and T023S. In case you need any field that you are not able to locate in these two tables, please do let me know.
    You can write the query as
    DATA: WA_WWGPA LIKE T023S-WWGPA.
    SELECT SINGLE
      B~WWGPA
    INTO (WA_WWGPA)
    FROM
      T023 AS A INNER JOIN
      T023S AS B ON A~MATKL = B~MATKL.
    This is just an example, you may not use SINGLE or variable WA_WWGPA. Simply declare an internal table with the required fields and populate it in the same manner.
    Data for WWGHA is defined in table T023S but don't let the field name confuse you. The field name in T023S is given as WWGPA. Take note of the Data Element from which it is being derived and the text of the field.
    Hope this help,
    Regards,
    Madhur
    NB: Please do award points if found helpful.
    Message was edited by: Madhur Chopra

  • Pulling data from structure?

    Hi Experts,
    On SAP screens, by usinf F1, can see From that field, Where (to which  table) to passing/storing the data (e.g. Doc. header text in MB1B transaction is storing in MKPF-BKTXT).
    But, some times, its a Strructure, then, (e.g. for Movement type field, its the F1 showing as structure as RM07M (-BWARTWA).
    1 - To Where the data is passing?
    2 - How to pull it in to my program requirement?
    ThanQ.

    Hi,
    This is what I typically do, if I need to find out what table(s) that a given structure ultimately points to.
    1. Debugging is one option.
    2. Go to SE12, give the structure name, do a where used in programs, tables and function module interfaces. You may end up in getting a lengthy list but you need a good process of elimination to get to the tables. If the structure is used in a table as an INCLUDE or APPEND structure, well and good. But if it is used in a program or a function module interface, I would go to the code and see where the structure is getting filled and with what information. If you could continue to follow this trace, to the main program where the data declarations are at, you will find the tables that are defined. Sometimes searching for a 'Select' statement could lead you to the table.
    Though it sounds cumbersome, most often, I could get my answer and in a quick time.
    Regards,
    Ferry Lianto

Maybe you are looking for