Structure - Data View

I know a structure (xxxxxxxxxxx), how to see the underlying data under this structure.. I want to how the mapping is created for each field in the structure. For example
Structure A XXXXXXXX
Field 1 - Account
Field 2 - Balance
Field 3 - total
How would I know these values are populated from which table ? and how to trace back that table and fields ?
Thanks and I appreciate your quick posting
BI

Hello,
- Go to SE11 and View the fields in the structure.
In any case, structure do not contain data of their own.
So check the table in which this structure is included using where used list for this structure.
Regards

Similar Messages

  • Get the data from the structure OR View

    Hi All,
    how wud i take data from the structure OR View? when i m writing the select query then its saying that its not defind in data dictionary.
    I hav the requirement to develop a report for PM module..
    in that i hav all structure like AFVGD,CAUFVD,PMCOEA...
    Plz tel me how to write a select quary for this...

    Hi,
    You cannot select data from a structure.
    A structure / work area contains data only at the run-time.
    You can select data from views and tables.
    The data you need to select will be in Database tables. All you need to do
    is to find those table and select from there.
    Let me know if you need further help.
    Regards,
    Rajat

  • Data view and data structure

    whats the difference between a data view and a data structure

    Hi
    <b>View:</b>
    Data about an application object is often distributed on several tables.
    By defining a view, you can define an application-dependent view that combines this data.
    The structure of such a view is defined by specifying the tables and fields used in the view.
    Fields that are not required can be hidden, thereby minimizing interfaces.
    A view can be used in ABAP programs for data selection.
    http://help.sap.com/saphelp_47x200/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    <b>Structures:</b>
    A structure (structured type) comprises components (fields).
    Types are defined for the components.
    A component can refer to an elementary type (via a data element or by directly specifying
    the data type and length in the structure definition), another structure or a table type.
    A structure can therefore be nested to any depth.
    Structures are used to define the data at the interface of module pools and screens
    and to define the parameter types of function modules.
    http://help.sap.com/saphelp_47x200/helpdata/en/ac/3547360f2ea61fe10000009b38f839/frameset.htm
    Kindly assign points for useful answers!
    Best regards,
    Thangesh

  • How to view structure data?

    I wanted to view structure SOS_OBJLST data. Data tables data could be viewed eg. with transactions SE16, SE17. Is there available these kind of transactions to see similar way structure data?

    hello MAYANK.
    i ll help you out. follow this
    let me tell you the basic diffrence between table and structure
    Table : stores value.
    structure : doesnot store value. it is just a skeleton for the table.
    to identify any field in structure from which table it is picking.
    go to se84 tcode choose ABAP DICTIONARY->CHOOSE FIELDS->CHOOSE STRUCTURE FIELDS---> PUT YOUR FIELD NAMES -->EXECUTE
    you will get all the tables from which structure is made of.
    thanku

  • BASIC PLANT DATA VIEW in BAPI_MATERIAL_SAVEDATA

    HI,
        I need to save some fields in the BASIC PLANT DATA View using BAPI_MATERIAL_SAVEDATA. Would anyone know the HEADER VIEW DATA I need to select and how I am going to go about this?
    I am able to successfully save a material but I am having problems in creating the material's BASIC PLANT DATA VIEW.
    Thanks!

    Check out this code:
    *& Report  ZBAPI_MATERIAL_SAVEDATA
    *& AUTHOR
    *& PURPOSE : THIS REPORT USES BAPI MATERIAL SAVE DATA TO UPDATE AND CREATE
    *&           THE MATERIAL
    REPORT  ZBAPI_MATERIAL_SAVEDATA NO STANDARD PAGE HEADING MESSAGE-ID (ZHNC).
    TYPES:BEGIN OF TY_MAT,
           MATERIAL(4),
           IND_SECTOR(1),
           MATL_TYPE(4),
    **       BASIC_VIEW(1),
    **       SALES_VIEW(1),
    **       PURCHASE_VIEW(1),
    *       STORAGE_VIEW(1),
           MATL_GROUP(9),
           BASE_UOM(3),
           BASE_UOM_ISO(3),
    *       MATL_GROUP1(1),
    *       BASE_UOM1(1),
    *       BASE_UOM_ISO1(1),
           PLANT(4),
           DEL_FLAG(1),
           PUR_GROUP(3),
           BASE_QTY(13),
    *       PLANT2(4),
    *       DEL_FLAG5(1),
    *       PUR_GROUP1(1),
    *       BASE_QTY1(1),
    *       PLANT3(4),
           STGE_LOC(4),
           MRP_IND(1),
    *       PLANT4(4),
    *       STGE_LOC1(4),
    *       MRP_IND1(1),
           SALES_ORG(4),
           DISTR_CHAN(2),
           DEL_FLAG1(1),
           MIN_ORDER(13),
    *       SALES_ORG1(4),
    *       DISTR_CHAN1(2),
    *       DEL_FLAG2(1),
    *       MIN_ORDER1(1),
           LANGU(2),
          MATL_DESC(40),
       END OF TY_MAT.
    DATA: IT_DATA TYPE TABLE OF TY_MAT,
          WA_DATA LIKE LINE  OF IT_DATA.
    *decalraing flag
    data: v_flag value ''.
    *DECLARING WORK AREAs  TO BE PASSED TO THE FUNCTION MODULE.
    DATA: BAPI_HEAD LIKE BAPIMATHEAD,
          BAPI_CLIENTDATA LIKE BAPI_MARA,
          BAPI_CLIENTDATAX LIKE BAPI_MARAX,
          BAPI_PLANTDATA LIKE BAPI_MARC,
          BAPI_PLANTDATAX LIKE  BAPI_MARCX,
          BAPI_STORAGELOCATIONDATA LIKE BAPI_MARD,
          BAPI_STORAGELOCATIONDATAX LIKE BAPI_MARDX,
          BAPI_SALESDATA LIKE BAPI_MVKE,
          BAPI_SALESDATAX LIKE BAPI_MVKEX,
          BAPI_MAKT LIKE BAPI_MAKT,
          BAPI_RETURN LIKE BAPIRET2.
    *INTERNAL TABLE TO HOLD THE MATERIAL DESCRIPTION
    DATA: BEGIN OF IT_MAKT OCCURS 0.
    INCLUDE STRUCTURE BAPI_MAKT.
    DATA END OF IT_MAKT.
    DATA:BEGIN OF IT_RET OCCURS 0.
    INCLUDE STRUCTURE BAPIRET2.
    DATA END OF IT_RET.
    *INTERNAL TABLE TO HOLD HEADER DATA
    DATA: IT_EXCEL TYPE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    *SELECTION-SCREEN ELEMENTS
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER: FNAME TYPE RLGRAP-FILENAME OBLIGATORY DEFAULT 'C:\Documents and Settings\Administrator\Desktop\MATMAS.XLS' .
    PARAMETERS: P_BEGCOL TYPE I DEFAULT 1 NO-DISPLAY,
                P_BEGROW TYPE I DEFAULT 1 NO-DISPLAY,
                P_ENDCOL TYPE I DEFAULT 100 NO-DISPLAY,
                P_ENDROW TYPE I DEFAULT 32000 NO-DISPLAY.
    SELECTION-SCREEN END OF BLOCK B1.
    *DECLARATION OF EXCELAL TABLE
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FNAME.
    PERFORM F_GET_FILE USING FNAME.
    START-OF-SELECTION.
    PERFORM F_XLS_ITAB USING FNAME
                       CHANGING IT_EXCEL.
    PERFORM F_MOVE_DATA.
    perform F_GET_DATA.
    *&      Form  F_GET_FILE
    *       text
    *      -->P_FNAME  text
    *      <--P_SY_SUBRC  text
    FORM F_GET_FILE  USING    P_FNAME LIKE FNAME.
    CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
    EXPORTING
       PROGRAM_NAME        = SYST-REPID
       DYNPRO_NUMBER       = SYST-DYNNR
    *   FIELD_NAME          = ' '
    *   STATIC              = ' '
    *   MASK                = ' '
      CHANGING
        FILE_NAME           = P_FNAME
    * EXCEPTIONS
    *   MASK_TOO_LONG       = 1
    *   OTHERS              = 2
    IF SY-SUBRC  0.
    MESSAGE E006(ZHNC).
    ENDIF.
    ENDFORM.                    " F_GET_FILE
    *&      Form  F_XLS_ITAB
    *       text
    *      -->P_FNAME  text
    *      <--P_IT_EXCEL  text
    FORM F_XLS_ITAB  USING    P_FNAME
                     CHANGING P_IT_EXCEL.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
      EXPORTING
        FILENAME                      = FNAME
        I_BEGIN_COL                   = P_BEGCOL
        I_BEGIN_ROW                   = P_BEGROW
        I_END_COL                     = P_ENDCOL
        I_END_ROW                     = P_ENDROW
      TABLES
        INTERN                        = IT_EXCEL
    EXCEPTIONS
       INCONSISTENT_PARAMETERS       = 1
       UPLOAD_OLE                    = 2
       OTHERS                        = 3
    IF SY-SUBRC  0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " F_XLS_ITAB
    *&      Form  F_MOVE_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_MOVE_DATA .
    DATA : LV_INDEX TYPE I.
    FIELD-SYMBOLS <FS>.
    *--- Sorting the internal table
    SORT IT_EXCEL BY ROW COL.
    CLEAR IT_EXCEL.
    LOOP AT IT_EXCEL.
    MOVE IT_EXCEL-COL TO LV_INDEX.
    *--- Assigning the each record to an internal table row
    ASSIGN COMPONENT LV_INDEX OF STRUCTURE WA_DATA TO <FS>.
    *--- Asigning the field value to a field symbol
    MOVE IT_EXCEL-VALUE TO <FS>.
    AT END OF ROW.
    APPEND WA_DATA TO IT_DATA.
    CLEAR WA_DATA.
    ENDAT.
    ENDLOOP.
    ENDFORM.                    " F_MOVE_DATA
    *&      Form  F_GET_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_GET_DATA .
    LOOP AT IT_DATA INTO WA_DATA.
    MOVE-CORRESPONDING WA_DATA  TO  BAPI_HEAD.
    BAPI_HEAD-BASIC_VIEW ='X'.
    BAPI_HEAD-SALES_VIEW ='X'.
    BAPI_HEAD-PURCHASE_VIEW ='X'.
    BAPI_HEAD-STORAGE_VIEW ='X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_CLIENTDATA.
    BAPI_CLIENTDATAX-MATL_GROUP = 'X'.
    BAPI_CLIENTDATAX-BASE_UOM = 'X'.
    BAPI_CLIENTDATAX-BASE_UOM_ISO = 'X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_PLANTDATA.
    BAPI_PLANTDATAX-PLANT = BAPI_PLANTDATA-PLANT.
    BAPI_PLANTDATAX-DEL_FLAG = 'X'.
    BAPI_PLANTDATAX-PUR_GROUP = 'X'.
    BAPI_PLANTDATAX-BASE_QTY = 'X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_STORAGELOCATIONDATA.
    BAPI_STORAGELOCATIONDATA-PLANT = BAPI_PLANTDATA-PLANT.
    BAPI_STORAGELOCATIONDATAX-PLANT = BAPI_STORAGELOCATIONDATA-PLANT.
    BAPI_STORAGELOCATIONDATAX-STGE_LOC = BAPI_STORAGELOCATIONDATA-STGE_LOC.
    BAPI_STORAGELOCATIONDATAX-MRP_IND = 'X'.
    MOVE-CORRESPONDING WA_DATA TO BAPI_SALESDATA.
    BAPI_SALESDATAX-SALES_ORG = BAPI_SALESDATA-SALES_ORG.
    BAPI_SALESDATAX-DISTR_CHAN = BAPI_SALESDATA-DISTR_CHAN.
    BAPI_SALESDATAX-DEL_FLAG = BAPI_SALESDATA-DEL_FLAG.
    BAPI_SALESDATAX-MIN_ORDER = 'X'.
    REFRESH IT_MAKT.
    IT_MAKT-LANGU = WA_DATA-LANGU.
    IT_MAKT-MATL_DESC = WA_DATA-MATL_DESC.
    APPEND IT_MAKT.
    CLEAR IT_RET.
    REFRESH IT_RET.
    PERFORM F_CALL_BAPI.
    READ TABLE IT_RET WITH KEY TYPE = 'S'.
    IF SY-SUBRC EQ 0.
    PERFORM F_BAPI_COMMIT.
    WRITE:/ 'MATERIAL CREATED OR UPDATED SUCESSFULLY WITH MATERIAL NO',WA_DATA-MATERIAL.
    ELSE.
    MESSAGE E000(ZHNC) WITH 'ERROR IN CREATING THE MATERIAL'.
    *WRITE: / 'ERROR IN CREATIN MATERIAL',IT_RET-MESSAGE.
    *PERFORM F_DOWNLOAD.
    ENDIF.
    *ENDIF.
    ENDLOOP.
    ENDFORM.                    " F_GET_DATA
    *&      Form  F_CALL_BAPI
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_CALL_BAPI .
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
      EXPORTING
        HEADDATA                   = BAPI_HEAD
       CLIENTDATA                 =  BAPI_CLIENTDATA
       CLIENTDATAX                =  BAPI_CLIENTDATAX
       PLANTDATA                  =  BAPI_PLANTDATA
       PLANTDATAX                 =  BAPI_PLANTDATAX
       STORAGELOCATIONDATA        =  BAPI_STORAGELOCATIONDATA
       STORAGELOCATIONDATAX       =  BAPI_STORAGELOCATIONDATAX
       SALESDATA                  =  BAPI_SALESDATA
       SALESDATAX                 =  BAPI_SALESDATAX
    IMPORTING
       RETURN                     =  IT_RET
    TABLES
       MATERIALDESCRIPTION        = IT_MAKT
    *   UNITSOFMEASURE             =
    *   UNITSOFMEASUREX            =
    *   INTERNATIONALARTNOS        =
    *   MATERIALLONGTEXT           =
    *   TAXCLASSIFICATIONS         =
    *   RETURNMESSAGES             =
    *   PRTDATA                    =
    *   PRTDATAX                   =
    *   EXTENSIONIN                =
    *   EXTENSIONINX               =
    APPEND IT_RET.
    ENDFORM.                    " F_CALL_BAPI
    *&      Form  F_BAPI_COMMIT
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM F_BAPI_COMMIT .
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    * EXPORTING
    *   WAIT         =
    * IMPORTING
    *   RETURN        =
    ENDFORM.                    " F_BAPI_COMMIT

  • Working with NON-Structured Data

    Dear Colleague,
    I am preparing to build a Forms application (using Oracle 9i Developer Suite, Release 2, version 9.0.2.0.1).
    The application (and Data model) will need to associate SOPs (standard operating procedures) with certain measurements and treatments. It is planned to have the SOPs be, for example, MS Word documents, i.e. the SOPs will be non-structured data.
    What is best practice when handling this situation? Please advise.
    Assume I would like to view, print and (maybe) update the SOPs (Word files).
    1. Should I just store a link to the Word file and a corresponding description or is it better to store the Word file in the DB?
    2. If in the DB, which data type?
    3. If SOP not in the DB, but a file, what is the mechanism for retrieval and display?
    4. Printing the Word file via Forms - how? problems to avoid?
    5. Update of the Word document via Forms - possible? How?
    Best regards,
    Randy

    Hi Vijay,
    sorry
    please rewrite the formula for the button disable as::
    NOTE:: in the formula i have used '<''>'  which nothing but a lessthan symbol and greater than symbol without single quotes (i.e. not equal to)
    BOOL(IF(LEN(@Emp_code) '<''>'0 AND LEN(@Earea)'<''>'0 AND LEN(@Edept)'<''>'0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')<0 ,false,true))
    and make sure you have placed the date picker UI controls for your date functionality.
    this will not work for calender UI control on the form.
    and othe important point is the joining date should be less than ending date then only the button will be enable..
    if you want your joining date should be greater than ending date then write the formaula like this::
    BOOL(IF(LEN(@Emp_code)<>0 AND LEN(@Earea)'<''>'0 AND LEN(@Edept)'<''>'0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')>0 ,false,true))
    i tried this
    its working for me
    Regards
    Srinivas

  • JMS Adapter - data conversion xml- structured data has extra characters

    Further to [Using MQ / JMS adapter with legacy system to talk to SAP;, I am using the Module tab on my receiver JMS Adapter to convert the xml payload to a structured format. It converts to the mainframe ebcdic code set.  I am on PI 7.11, and the MQ Series (which JMS interacts with) is 6.0.  The code I have is comparable to the wiki:[http://wiki.sdn.sap.com/wiki/display/XI/HowTo...ContentconversionmodulewithJ2EEJMS+adapter], i.e. the example at the very bottom of that article.
    The issue we are having is that an extra character gets inserted at the end of each structure (within the message), i.e. our message contains 4 structures, but when we view the structured data on our mainframe system (that arrives from PI), the entire message is shifted by 4 characters... by 1 after the end of each structure.  On the mainframe, this extra character appears as '.'. It must be an end-of-line or something...
    Has anyone had the same issue?  If so, were you able to resolve? I could probably set up my message data type to just be one big declare (thus eliminating the use of structures within it), but that is something I'd rather not do.
    We are in the process of reviewing Note 856346, #6 but not sure if it applies.
    Regards,
    Keith

    Hi,
    check localejbs/SAP XI JMS Adapter/ConvertMessageToBinary Local Enterprise Bean convert_XI2Bin
    this is not CallJMSService.
    And also check the receiver Structure, if it is falt structure its ok, else
    see the below link if it has the complex structure , how to handle..
    See the below links
    /people/alessandro.guarneri/blog/2006/01/04/jms-sender-adapter-handling-too-short-lines
    /people/william.li/blog/2006/11/13/how-to-use-saps-webas-j2ees-jms-queue-in-exchange-infrastructure
    content conversion
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f02d12a7-0201-0010-5780-8bfc7d12f891
    Regards
    Chilla..

  • Is Structure Layout View a code smell?

    I have an application that was built by using a double layered architecture. I needed to have a model where I store essential data about actions in this system.
    This system must be able to display these actions on screen and needs to be in a Composite type fashion(an action can contain sub-actions, but also can contain other components like buttons, labels, etc.).
    The structure model holds data and structure about actions(but not their positioning). The layout model is an observer of the logic model and holds the position and z-order of all components(actions + buttons + labels + etc.). And lastly there is the View that is an observer of the logic model and of the layout model to be able to display all the components(actions, buttons, etc.).
    By doing this I've separated an action into three components(structure+layout+view). This separation was necessary because I wanted to have a layer where I make the decision of which component is under the cursor separated from the layer where I make structural decisions(like adding/deleting actions) and separated from the layer where I display all components. Now I have three layers that combined form one unique component.
    The problem with this is that a component becomes formed from three distinct layers and it is a little harder to mantain.
    Please tell me if there could be a better design for this problem.
    Thanks in advance

    The following applies mainly to PHP and web pages, but the principles are the same: http://www.phpwact.org/pattern/template_view.
    You want a series of template-generating classes. One option in doing so would be an event model:
    interface TemplateComponent {
       abstract public void render(final JComponent parent);
    class TemplateManager {
       private TemplateComponent header;
       private TemplateComponent body;
       private TemplateComponent footer;
       public TemplateManager(TemplateComponent header, TemplateComponent body, TemplateComponent footer) {
           super();
           this.header = header;
           this.body = body;
           this.footer = footer;
       public void render() {
           JComponent panelHeader;
           JComponent panelBody;
           JComponent panelFooter;
            // Create a series of JComponent and add to your layout
           // This will be the template layout
          header.render(headerPanel);
          body.render(bodyPanel);
          footer.render(footerPanel);
    }- Saish

  • Label Data View in Material Master

    Dear Team,
    Despite of performing all below standerd steps, i am not able to view Label Data view in Material Master.
    pls guide
    steps performed.
    1. Check whether the screen sequence SP exists in Customizing for the Material Master under Define Structure of Data Screens for Each Screen Sequence.
    2. Check whether screen 92 has been assigned to screen sequence SP and has the screen type 1 (main screen).
    3. Check under Subscreens whether the subscreens were assigned to screen 92 of the screen sequence SP.
    4. In the Assign Screen Sequences to User/ Material Type/Transaction/Industry Sector IMG activity, set up the users who are allowed to edit the screen sequence and when it appears.
    also I have SAP_ALL Authorization.
    Regards,
    Amol Joshi

    Hello Amol,
    For IMG activity: Define Structure of Data Screens for Each Screen Sequence, for screen sequence 21, with logical screen 92, in subscreen, please see below settings:
    Program: SAPLMGD1 , screen no. is 1002
    Program: SAPLCBGL_LD00 , screen no. is 8020
    Program: SAPLCBGL_LD01, screen no. is 1010
    Regards,
    Niraj

  • Structural data as start point

    Hi Experts,
    I have a web service which has a complex type input and output. However, in the start point element, I cannot define a structure data type. On the other hand, if I drag a table view for the web service output and drag an end point element, the end point element will automatically generate the structural view. How can I solve it?
    Best Regards

    Sorry, Let me clarify my question.
    Firstly, I have a web service which has a complex data type input. For example:
    <product></product>
    <supplier>
       <name></name>
    </supplier>
    This web service allows consumer to get multiple suppliers' quotations. I want to integrate it into guided procedure. Hence, I drag a "start point" in VC and right click on it to define data. However, I cannot define structural data type which will pass multiple suppliers to the web service. How can I achieve it?
    Best Regards

  • Prob creating a new structured data type

    I am trying to create a new structured data type to see it in data type diagram. When i try to right click on structured data type in DATA TYPES, i cant see any option like new structured data type etc. But this is working for distinct as well collection data types but not for structured.
    By default, we are getting SDO_geometry structured data type for every model. We can change its name but cant create a new structured data type from there also.
    What should i do to create a structured data type in data modeler.

    The right click on Structured Types does not open a menu on my Data Modeler either.
    To create a Structured Type, click View on the main menu for the Data Modeler. Then click View Details -> Datatype.
    In the Browser (called Navigator in other Oracle products), right click Datatype Model -> Show. This will show the DataTypes diagrammer.
    Click on the New Structured Type button on the menu bar, then click anywhere on the DataTypes diagrammer, the Structured Type Properties window opens.
    Enter all the details in the Structured Type Properties window to create your data type. Click Ok when finished. Your object type will be represented by a "blue" box on the diagram.
    Jim Keese
    Edited by: user9367840 on Feb 10, 2012 8:30 AM

  • Attribute based data view?

    Is it possible to build a data view or virtual data view from an attribute value?
    For example we have a LDAP server which currently has a 'flat' DIT structure with everyone under ou=people.
    Lets say application A wants to use the LDAP for user authentication and authorizations, but they only want to 'see' accounts that have access to application A. There is an attribute in each user entry that could be used to determine if the user is in fact associated with application A, but is it possible to build a data view from it? Changing the client side application is not an option in this scenario.
    After reading the DS/DPS documentation I don't see how this would be possible, but maybe I'm missing something (I hope).
    Thanks.
    Edited by: rrumbaugh on May 20, 2009 1:51 PM

    From what I can see, this is not currently possible. It would be nice if we could change the filter before it goes to the DS, that way we could say this app's username gets this filter component added.
    eg: App A binding with uid=A has (allowedapp=A) added to every filter before it reaches the DS. Or something like that. If you have a support contact, you could put in a word officially for an RFE to be included in the next version of DSEE (7.0, whenever it comes out)

  • 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.

  • Data view not showing XML schema based Interface

    Hi Experts,
    I am trying to create a Interactive adobe form by following a step-by-step tutorial.The steps I have followed :
    1. Created a WD ABAP component with just one field.
    2. Created the context node and also an atribue for PDF Source.
    3. Add an Interacive form UI element.
    4. Activated the View.
    5. Add template source and assigned the context node to generate a XML based interface.
    6. It created Interface successfully.
    7. But when I open the Adobe form, the context fields are not showing in data view as data sructure..
    What could possibly be the reason for it. Please guide me why data structure is not showing.
    Thanks and Regards
    Sanket

    Hello Snikat
    Can you please give a brief how did yu solved this problem.. I'm also facing similar issue.
    Thanks
    Ajay

  • LSMW & Oil-specific data View

    Hi experts!
    This time I'm doing an LSMW for materials that have the Oil-specific data View. My LSMW is using the Bapi BAPI_MATERIAL_SAVEDATA and I can't find the corresponding fields for: UoM Group, Conv. Group, Excise duty group and Oil content. Is there any other BAPI that I should use ?? Or do I have to do my LMSW using a batch input ?
    I've seen every field of every structure of the Bapi I'm using, but no luck!
    Thanks in advance for your answers.
    Dev

    Hello,
    The technical names are:
    UoM Group = MARC-UOMGR
    Conversion Group = MARC-UMRSL
    Excise duty tax group for material = MARC-OITAXGRP
    Oil Content = MARC-OIOILCON.
    I found these fields in the MARC table, but when i look for them in the BAPI tables, I just can't find them. So I wonder If I have to make a batch input instead of using this BAPI ?
    Thanks in advance.
    Dev.

Maybe you are looking for

  • Applying Software Installation Policy Is Taking Long Time During Boot Process

    1 of my servers is having slow boot up issue. I have enabled user environment debugging and the gpsvc.log file has been generated. I have also used the Windows Performance Analyzer to capture logs and results came back that the GP Client is taking a

  • Shatter effects not working correctly?

    Hey everyone! I have this problem that's been driving me bonkers. I used Shatter on a PNG image, and it doesn't shatter completely. Most of the image shattered like normal, but a few intact pieces were left behind right where they were instead of fly

  • MS SQL Developer Edition

    Hi there, Can I use MS. SQL Developer Edition for SAP Web Application Server Java 6.4 SP3 ? I've a problem during installation of SAP WAS 6.4 SP3 that came up with Enterprise Portal on MS SQL-Developer Edition-Sneak Preview Package. Thanks in advance

  • Another X48C + DDR3 Thread

    Hey guys. It's me again. I asked Mushkin again for the memory timings i should use and they gave me the timings. They alsosaid that i should make the Dram voltage between 1.8-1.9vand the NB voltage between 1.3-.1.4v. So far my pc is actually running

  • WINDOWS 용 SQL*NET 사용 시 TNS-12203

    제품 : SQL*NET 작성날짜 : 2004-11-09 WINDOWS 용 SQL*NET 사용 시 TNS-12203 ==================================== PURPOSE TNS-12203 "TNS:unable to connect to destination"은 여러가지 원인 때문에 발생할 수 있습니다. 여기서는 가장 일반적인 몇 가지 원인을 설명합니다. 1. WINDOWS 용 TCP/IP 어댑터를 설치하지 않은 상태에서