ABAP Dictionary structure for use in ABAP Mapping

Hello, I'm creating an ABAP mapping class which requires me to use standard ABAP dictionary (table) structures (ex.MARA, KNA1 etc) for the mapping as the data coming into the mapping is in that format. I'm creating the ABAP class in the PI server and do not have table structures (MARA, KNA1 etc) in the dictionary in the PI server. What is the efficient way to create these structures (as Z elements) in the PI server's dictionary?
I have the XSD of these table structures. Can I import those XSDs into the ABAP dictionary in PI servers? If yes, how can it be done? Please help!

Yes you can import it as an external definition data and create the data type based on this XSD. Go through the link below for more information on the steps to import and how to use it.
http://help.sap.com/saphelp_nwpi71/helpdata/en/26/9e97b0f525d743882936c2d6f375c7/frameset.htm

Similar Messages

  • TS1702 I downloaded a free Merriam-Webster dictionary app for use on my iphone 5.  I thought I executed the steps to download it properly...I do see it in my App Store 'purchased' list, but I don't see it actually activated and ready for use anywhere...he

    I downloaded a free Merriam-Webster Dictionary app for use on my iphone 5.  I thought I followed the download process properly, but cannot see that the app is launched on my phone.  I have checked my phone for 'updates' and the app is listed among the ones I have purchased.  I clicked on it and it began installing, however, it still has not launched.  I get a message screen to sign in with my Apple ID, which I tried, and I get the message that I have purchased this app and it will download.  When I try to sign in, I get the message that it can't connect to the itunes store and to retry.  I've done that several times without any luck...not sure where else to look for the 'working' app.  I did try re-booting the phone...even did a 'hard reset' to no avail...help?

    Anything* >.<

  • Retrieve Java Employee Selection for use in ABAP

    Hi Experts
    I have a case where I need to retrieve the PERNR from the Java Employee Selection iView for use within an ABAP WD iview.
    I'm assuming that this can be handled from FPM...
    Could someone help me in the right direction to get this done?
    Thanks in advance
    Anton Kruse

    Hello Anton Kruse,
    you need to use portal events for communicating between one iview to another. Refer the following documentation for portal events
    http://help.sap.com/saphelp_nw70/helpdata/en/f6/7d6f4151dc5758e10000000a1550b0/frameset.htm
    in your case,
    the java component should raise a portal event whenever there is employee selection and the webdynpro component should register for this event and act accordingly whenever this event is raised.
    BR, Saravanan

  • Best Practice for Use of ABAP in Customizing SRM and/or CRM

    I was wondering if there is a document that defines best practices for the use of ABAP with the installation and customization of SRM and/or CRM.   Such as amount of ABAP coding typically required, and best practices around the use of ABAP for customization and configuration.
    Thanks.

    Hi, Johnson
    Sorry, Please don't mind, you are not at right place to ask the Question like this
    Please read "The Forum Rules of Engagement" before posting!  HOT NEWS!!
    Thanks and Regards,
    Faisal

  • ECC user licenses issue for using Webdynpro ABAP in portal

    Hi all,
    If we want to use Webydnpro ABAP in our external facing portal which is being used by more than 20000 users, how do we manage the ECC licenses for all these users? It will be really expensive to have that many number of licenses in ECC (one for every portal user). Is there any other work around for this?
    Any info on this will be beneficial.
    Thanks,
    Hari

    I am not sure why you want to use WebDynpro for External Portal . As Webdynpro is resource intensive ,  I never saw client asking for this type of  requirement. Are developing any prototype ?
    In my experience ABAP webdynpro is more is used more for business packages and  internal portals  not for external portals. If you want to use this AWD for EEP  Please see below link from SAP Help for pre-requisites
    http://help.sap.com/saphelp_nw04s/helpdata/en/96/bdab419451db34e10000000a1550b0/content.htm
    Last Step in above Link, this mentions that ABAP Webdynpro needs logon.
    As other people mentioned there might be a good way of doing if you contact your SAP account executive to find out if there are any different types of licenses. But you end up in taking other extra licences which not acceptable solution for clients.
    If you want to use WebDynpro for external Portal ( which is not at all suggested for external ) at any cost , better to go with Web Dynpro for Java which will not need any extra  licences on R3.

  • Getting old ABAP dictionary structure in response doc

    I'm using the JCO connector with a function module. I added some fields to an existing structure used by the FM and it works fine when testing in Function Builder. When I use it with the link editor, I get the old (inactive) structure in the response document.

    Check this link to clear out cached data for BAPI/Function Calls in 11.5
    Link: [Calling RFC in xMII;
    If you are working in 12.0, I would suggest going to Configure Object and repoint to the same object name and hit okay when it asks for loading request and response documents.  If that does not work, let us know and I will research further.
    Good luck,
    Mike

  • ABAP Logic/Structure for a Start and Field Routine in Transformations

    My Requirment is to export data from Data Target to Application Server.
    And for that purpose i built a APD...
    In Transformations to read data from MAster Data Table i had written below Global & Field Routine.
    Start Routine:
    Glodal Declaration
    DATA: it_dep   type standard table of /BI0/MDEPT,
          is_dep   type /BI0/MDEPT.
    LOOP AT SOURCE_PACKAGE ASSIGNING <source_fields>.
    if not SOURCE_PACKAGE[] is initial.
    SELECT * FROM /BI0/MDEPT INTO TABLE it_dep for all entries in
    SOURCE_PACKAGE
    WHERE depLOYEE    = SOURCE_PACKAGE-dep      AND
          OBJVERS     = 'A'                     AND
          DATETO     GE SY-DATUM.
    ENDIF.
    ENDLOOP.
    FIELD ROUTINE
    Clear:is_dep.
        Read table it_dep into is_dep with key
        depLOYEE = SOURCE_FIELDS-deployee binary search.
        if sy-subrc = 0.
          RESULT = is_dep-USERNAME.
        endif.
    Now for another field 'Manager' name.......
    My requirment
    Start Routine:
    (Sub Detp is an attribute to Dept and Sub Dept is referenced on dept)
    First it should copy all the Sub depts for the corresponding depts in the source field to a Temperoray table (TEMP1)
    For all sub depts in TEMP1 table it should copy manager names from dept master data table to a Temp2 table
    In start routine i need to first read temp1 and result from temp1 should be passed to temp2 and the result from tem2 can be passed to result field
    Please update

    Hi,
    i am providin you a sample code please modify it (field name and tables name's as per your requirement).
    Please write the code in transformation rule of field Emp_TDate.
    Map field Emp_SDATE  to the target field for Emp_TDATE .
        SELECT * FROM /BIC/AEMPPED00
                        WHERE Emp_SDATE NE ' '.
    if sy-subrc is initial.
    result = source_field-Emp_SDATE.
    else.
    result = ' '.
    endif.
    Please replace the emp_SDATE field with the source field name.
    But still i have some question...
    1. On what basis u decide the latest record ??
    Can u please explain scenarion bit mroe clearly.
    Thanks
    Dipika
    Edited by: Dipika Tyagi on Jun 24, 2008 8:47 AM

  • Changing file name and directory structure for use outside of iPhoto

    Hi,
    I was wondering if its possible to get iPhoto to name the files from my library to reflect the names that I've given the files in iPhoto. I'm thinking along the lines of iTunes, where its possible to chose in the preferences how the files are named, and there is some logical directory structure, such as "Artist/Album/01 - Track 1.mp3". These file names are updated to reflect any changes made in iTunes.
    I've heard the argument that I shouldn't ever want to do anything with the files themselves because iPhoto can do everything I would ever want to do, but I want to organize the files so that not all of my organizational work is lost if I decide to stop using iPhoto and transition to a different system. Any suggestions would be appreciated.
    Thanks,
    Adrian

    Adrian
    No it's not possible.
    You can rename the files before bringing them into iPhoto, you can rename them with the titles on Export (Use the File -> Export command, it gives you the option to use the title and filename) but when it's inside iPhoto you cannot rename the files.
    However, all is not entirely lost. Using Film Rolls (View -> Film Rolls) you can move pics between rolls, name rolls, create rolls and so on, as long as you do this in the iPhoto Window, and these changes will be reflected in the iPhoto Library Folder.
    If at some point you decide to chuck iPhoto then (if the new app won't read iPhoto database files) you can simply export each album you've created to a Folder (using the File -> Export command as I suggest above), this, along with exporting slideshows will preserve your organisational efforts.
    The iTunes database has a rather simple job to do: track a file and it's assorted metadata. iPhoto, on the other hand, tracks a file and it's assorted metadata, plus a Modified version, plus a thumbnail. If you consider what happens when you edit a pic, for instance - Copy Original, perform edit, save modified version, remove Original Thumbnail and then create new one - you can see it's a rather more complex job.
    Finally, the standard warning: It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss. Any changes you make must be made in the iPhoto Window.
    Need more info? by all means post again.
    Regards
    TD

  • Is there any way to copy proxy filed structures to ABAP field structure?

    Hi All,
    We are getting message from  XI using inbound proxy and sending response asynchronously by outbound proxy.
    my question: " is there any way to copy or to move incoming proxy fields to ABAP backend fields?"
    for ex: we are getting Name structure from proxy wit fields firstname and lastname.
    and proxy will generate some structures for name. backend ABAP system will have structure name with two fields having fname and lname as data elements.
    so how can we directly move proxy fields to ABAP fields? ( here in example there are only two fields but real scenario we will have thousands of fields for which we cannot map manually from proxy fields to ABAP fields.)
    please help me in this regard.
    Thanks in advance.
    Regards,
    Ujwalkumar

    Hi Ujwalkumar,
    if you have control over the proxy:
    Create your interface at XI like the structure in backend system. Same structure and same fieldnames. If you regenerate your proxy you can use abap order "MOVE CORRESPONDING" to map all fields.
    Regards,
    Udo

  • Abap-dictionary

    hi experts,
    what is value table&check table in abap dictionary.
    where we use it. and what is the purpose.
    thank u,
      cnu

    Hi,
    Check this link
    http://help.sap.com/saphelp_nw04s/helpdata/en/e2/667092730811d2959500a0c929b3c3/content.htm
    Value Table
    This is maintained at Domain Level.
    When ever you create a domain , you can entered allowed values.   For example  you go to Domain   SHKZG - Debit/credit indicator.  Here only allowed values is H or S.
    When ever you use this Domain, the system will forces you to enter only these values.
    This is a sort of master check . To be maintained as a customization object. This mean that if you want to enter values to this table you have to create a development request & transport the same.
    Check table
    For example you have Employee master table & Employee Transaction table.
    When ever an employee Transacts we need to check whether that employee exists , so we can refer to the employee master table.
    This is nothing but a Parent & Child relationship .  Here data can be maintained at client level , no development involved.
    As per DBMS what we call foregin key table, is called as check table in SAP.
    There is 1 more important Difference in Value Table and Check Table is that:
    1. The contents of the check will be used as an input help(F4 Help) for a particular field on which a check table is assigned.
        But the contents of Value Table are never used in Input Help.
    The Heirarchy which decides from where to used the Input Help is:
    1. Input help defined explicitly in ABAP Program or Dialog Module.
    2. Input Help Attached to the referenced Database Table field.
    3. Using the contents of Check Table as an input help if neither (1) or (2) help are there.
    4. Input help from Fixed value or Value range given in Domain.
    http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm
    Hope thsi helps.

  • Need abap documenation specifically for SAP BW only.

    Hi,
    I want to learn abap specifically for SAP BW only...How much abap should i know to do bw work....and where i can find documentation of abap related to sap bw 3.5 and 7.0 version.
    Regards
    Yogee.

    HI
    generally we used the ABAP code to write Start Routines, End Routines or Individual Update Routines also exits which include variable exits.
    If you are totally unaware of the programing languages then better start learing ABAP with basic statements includes IF ELSE LOOP CASE ENDCASE etc.
    And then switch to learn how to use this statement to develop the logic.
    In BI, the basic knowledge of ABAP is sufficient, u need not go for deep and detail study, belive me its easier than BI.
    Go to ABAP forum check for any good ABAP learning materail and start working on that.
    Any query please revert back. send ur mail id to me, if possible ll send u some document for ABAP.
    Thank-You.
    Regards,
    Vinod

  • Error 7 occurred at Copy in ABAPI Dist New VI Library.vi​- ABAPI Dist Chk for Destinatio​ns.vi- ABA​PI Copy Files and Apply Settings.v​i- EBEP_In​voke_Build​_Engine.vi​- EBUIP_Bu​ild_Invoke​.vi- EBUIP​_Build_Inv​oke.vi.Pro​xyCaller

    When I try to build executables in LabView 8.01 I get message:
    Error 7 occurred at Copy in ABAPI Dist New VI Library.vi->ABAPI Dist Chk for Destinations.vi->ABAPI Copy Files and Apply Settings.vi->EBEP_Invoke_Build_Engine.vi->EBUIP_Bu​ild_Invoke.vi->EBUIP_Build_Invoke.vi.ProxyCaller
    Best Regards

    I got the same error as I tried to build my application, the reason was the string I set for the 'Build specification name' property of my build.
    I changed from '3DC - Dlog Data Compacter ' to '3DC' and it worked afterwards..quite strange behaviour..

  • ModelNode and Java Dictionary structures

    Hi all,
    when working with Models it seems it is not possible to bind the context to a java-dictionary-structure, right?
    But if I want to use dictionary-structures, for example because I want to set an "output-format" or a "max-length-constraint", then I have to copy the data somehow into valueNodes and valueAttributes, right?
    Or am I completely on a wrong track?
    Josef

    Josef,
    you're right. model-nodes (-attributes) can't be changed in any way. but you can create (new) model-nodes that are created to (model)dictionary-structures.
    if you want to maintain the attributes like "max-length" you have to create your own dictionary objects, because the model-attributes are derived from the backend.
    kr, achim

  • How to change  XML  Structure from one form to another form using OO ABAP.

    Hi Experts,
    In my Scenario, i need to do ABAP Mapping in order to change Incoming structure from one form to another.
    My Input to ABAP Mapping (OO ABAP Program)would be :
         <A>..........</A>
         <B>..........</B>
         <C> .........</C>
         <D>..........</D>
         <E>..........</E>
         <F>..........</F>
    OO ABAP Program need to read this input and change the XML Structure into below form:
         <A>..........</A>
         <B>..........</B>
         <C> .........</C>
          <X>
                <D>..........</D>
                <E>..........</E>
          <F>...............<F>
    Please provide inputs (sample Code) to solve this issue.
    Thanks,
    Kish.
    Edited by: Kishore Reddy Thamma on Jan 22, 2008 2:51 PM
    Edited by: Kishore Reddy Thamma on Jan 22, 2008 2:52 PM

    Hi,
    Please provide sample code or Material for converting XML Structure from one form to another using OO ABAP and
    Steps for ABAP MAPPING.
    Thanks,
    Kish.

  • ABAP Dictionary type FLTP is not allowed for screen element

    Hi Experts
    I tried to open VBFA in se16 and i got the message in the status bar like this , what does it mean. please explain.
    "ABAP Dictionary type FLTP is not allowed for screen element"

    Hi,
        This is from help
    ABAP Dictionary type FLTP is not allowed for screen element
    Message no. 37048
    <b>Diagnosis</b>
    The format of the ABAP Dictionary field is only for use within the ABAP
    program and cannot be used in the Screen Painter.
    <b>Procedure</b>
    The field cannot be used in screens. If you want to output the
    information in the field or assign a value to the field from the screen,
    you must use an intermediate field with an appropriate format.
    <b>Reward points</b>
    Regards

Maybe you are looking for