Mapping to BOL layer

Hi,
I am trying to map the field  STRUCT.E_MAILSMT in component BP_CONT view:ContactDetails to the BOL layer.
How do i go about?
Regards
Shilpi

Hi Shilpi,
The easiest way to find out is:
a) Open the CN02 class of WorkAddress context node.
b) Go to attribites tab.There you will see the Base_Entity_Name.This is the original name of BOL entity-BuilContactStandardAddress.
c)Now go to genil_model_browser.Open the Component Set BP_APPL.Search for BuilContactStandardAddress under dependent objects.
Hope this helps!
Thanks and Regards,
Rohit

Similar Messages

  • Changing the LTS mapping in BMM layer  to new Physical Alias table

    Experts
    I need to change the source table mapping in my BMM layer to new physical tables aliases.
    I have finished BMM layer design (column name changes, business friendly names etc.) before actually creating the alias tables in the Physical layer and I know I hv to run for hiding now. I expected changing the logical source mapping to the new aliases will work but it's not the case though it works partially. Since the Column names are changed in the bmm, I have to manually change the Expression, Physical Table in the LTS column mapping tab for each non-matching name logical columns.
    Column mapping is intact where both the BMM columns and the new Physical alias names match.
    eg: CALENDER_YEAR(BMM) ---> CALENDAR_YEAR(Physical alias) mapping is intact but
    Week Day(BMM) ---> WEEK_DAY(Physical alias) need to be changed manually.
    Any tips/suggestions will be appreciated.
    Regards,
    Tom

    Hi Tom,
    I too do not see any other options here other than manually modifying the individual logical columns. When there is a new logical column, we have to map it manually to the physical column explicitly because the Admin tool will not know which physical column to pick up.
    Hope this helps.
    Thank you,
    Dhar

  • Catalyst 3850, VLAN access map example (VACL, layer 2)

    Hello there:
    Trying to get a simple VLAN access map example working (VACL, layer 2).  Want to allow hosts 10.0.0.2 to SSH to 10.0.0.3 (both in vlan 10), but deny all other connectivity from 10.0.0.2 to 10.0.0.3.
    access-list test permit tcp host 10.0.0.2 host 10.0.0.3 eq 22
    vlan access-map test
       match ip address test
       action forward
    vlan filter test vlan-list 10
    However, 10.0.0.2 cannot see 10.0.0.3 whatsoever, w/ this VACL enabled (connectivity works w/ VACL disabled).
    From what I've read, there is an implicit deny all at the end, if I understand correctly.
    I've played with other variations as well, but without any luck.
    What am I missing here?
    Also, is there a way to debug this using logs or debug statements? Nothing shows up in the logs.
    Thank you.

    Hi,
    You have a problem in that your ACL currently allows the SSH traffic from 10.0.0.2 to 10.0.0.3 but the responses are not allowed to flow back from 10.0.0.3 to 10.0.0.2. That is the most probable reason your VACL does not work as expected.
    This modification should correct the behavior:
    ip access-list extended TestACL
    permit tcp host 10.0.0.2 host 10.0.0.3 eq 22
    permit tcp host 10.0.0.3 eq 22 host 10.0.0.2
    deny ip host 10.0.0.2 host 10.0.0.3
    deny ip host 10.0.0.3 host 10.0.0.2
    permit ip any any
    vlan access-map TestVACL
    match ip address TestACL
    action forward
    vlan filter TestVACL vlan-list 10
    Here, I've made sure that SSH traffic between 10.0.0.2 as a client and 10.0.0.3 as a server is allowed, any other traffic between these two is denied, and every other communication is allowed. Would you mind testing out this modification?
    is there a way to debug this using logs or debug statements? Nothing shows up in the logs.
    None that I know of. This filtering is done in hardware, independently from CPU, so the CPU has no insight into what's going on in the TCAM during packet filtering.
    Best regards,
    Peter

  • Can't see the update to the DB mapped in physical layer of the Admin tool

    Hello everybody!
    I have an Access DB that i'm using to create a temporary data model for OBIEE.
    When i update rows (add or erase rows in the tables) i can see them in the physical layer; instead if i add o remove table i don't see any variation on the Physical layer.
    I restarted the OBIserver services and checked the ODBC that point to the access. Everything's ok!
    Should i remapped the DB everytime i make the a varition in the number of the table in the DATABASE?
    Can you give some help please!
    Regards.

    1.If you drop or create new tables, you would not see them in the physical layer.
    2. The RPD is just metadata and not database.
    3.BI server has nothing to do with the physical layer modeling
    4. yes you need to remap (in physical) the new tables you create and the ones you drop.
    :-)

  • Text field in Bol layer

    Hi Guys,
    I am trying to append text lines into a particular NOTES section in Webui. Here is what i am using in my code,
      DATA: lr_ent1   TYPE REF TO cl_crm_bol_entity,
            lr_texts  TYPE REF TO cl_crm_bol_entity,
            lr_result TYPE REF TO cl_crm_bol_entity.
      DATA: lv_lines TYPE string,
            lv_note TYPE string,
            lv_tdid TYPE string.
      lr_ent1 = lr_adminh.
      lr_ent1 = lr_ent1->get_related_entity( iv_relation_name = 'BTHeaderTextSet' ).
      IF lr_ent1 IS BOUND.
        lr_ent1 = lr_ent1->get_related_entity( iv_relation_name = 'BTTextHAll' ).
          IF lr_ent1 IS BOUND.
            lv_note = 'Blah Blah Blah'.
            IF lr_ent1->switch_to_change_mode( ) EQ abap_true.
              lv_tdid = lr_ent1->if_bol_bo_property_access~get_property_as_string( iv_attr_name = 'TDID' ).
              IF lv_tdid = 'ZABC'.
                lr_ent1->if_bol_bo_property_access~set_property( iv_attr_name = 'CONC_LINES'
                                                                 iv_value     = lv_note ).
              ENDIF.
            ENDIF.
          ENDIF.
        ENDIF.
      lr_core->modify( ).
    The problem here is, I wanted to add text for a particular text id, 'ZABC' but its adding text for the first available text id. Is there a way I could mention the text id along with the lines

    HI,
    Try this in SET method of the context nodes attribute.
    add this public atribute in your context node  class :
    GV_LINES is public attribute with type NAME_KOMP
    DATA: current TYPE REF TO cl_crm_bol_entity,
            dref    TYPE REF TO data,
            copy    TYPE REF TO data.
      FIELD-SYMBOLS: <nval> TYPE ANY,
                     <oval> TYPE ANY.
      current ?= collection_wrapper->get_current( ).
      CHECK current IS BOUND.
      TRY.
          dref = current->get_property( gv_lines ).
        CATCH cx_crm_cic_parameter_error cx_sy_ref_is_initial
              cx_sy_move_cast_error cx_crm_genil_model_error.
          RETURN.
      ENDTRY.
      CHECK dref IS BOUND
      ASSIGN dref->* TO <oval>.
      CREATE DATA copy LIKE <oval>.
      ASSIGN copy->* TO <nval>.
    TRY.
          CALL METHOD if_bsp_model_util~convert_from_string
            EXPORTING
              data_ref = copy
              value    = value.
        CATCH cx_sy_conversion_error.
          RAISE EXCEPTION TYPE cx_bsp_conv_failed
            EXPORTING
              name = 'ATTRIBUTE_NAME'.                                   "#EC NOTEXT
      ENDTRY.
    IF <nval> NE <oval>.
       current->set_property( iv_attr_name = gv_lines
                               iv_value     = <nval> ).
      ENDIF.
      CALL METHOD me->check_encoding
        EXPORTING
          iv_value = <nval>
        EXCEPTIONS
          not_fine = 1
          OTHERS   = 2.
      IF sy-subrc <> 0.
        current->set_property( iv_attr_name = gv_lines
                               iv_value     = <oval> ).
        EXIT.
      ENDIF.
    Try this or modify as per your requiement.
    /Cheers
    Sunita

  • Use one layer as alpha map (mask) for another - how?

    Hi, I do not understand how to do this in Photoshop. In After Effects, which I use a lot, this is easy. For example, I have one layer with transparent, semi transparent an opaque areas. I can then tell AE to use this layer as an alpha channel map for another layer. But how do I do this in Photoshop? I understand how to use a layer mask and draw on the same layer to create treansparent areas. But I want to use a separante layer, or even a separate image.
    I use Photoshop CS 5.
    Ingvar

    Hello!
    And by "look up", Chris means in the Adobe Community Help application, or in the online help:
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e 41001031ab64-7853a.html
    I immediately flagged the answer as correct yesterday, but thanks anyway

  • How to create a map that is larger than the game in width and height?

    hi,
    i wounder how i can create a map(not the design) that is larger than the game in width and height, part of it will appear in the main page and anther part you can move to it after you press the arrow symbol, but the map is just one image so i want put it in line and out line the game page, and the out line part includes buttons and symbols the player can use, but it will be in line and the other part will be out line when you press the left arrow or the down arrow, how i can do that?
    and is that possible to animate it so when the player press the arrow, will give it action to start the animation in one sec, i know how to animate it if that possible but i don't know which code i will use for the mouse click with the arrow symbol, and how to use the same code in the same symbol to start anther animation depending on which part of the map is on?

    I don't know a lot about mask and masked layers and how to work with the normal layers beside i will use some 3D graphics but not in the background, i will explain all this to you to be more clearly.
    first i am using action script 3.0
    close ex,
    you have 2d map"image"  900*300 pixel.
    this image contains some 2d symbols when you click will go to anther normal map (anther normal layer) so they must appear.
    your game 320*320 px, and the place the map will show on 300*300, and there's basics objects will be in most pages including the page that show the map so i don't know a lot about how this will work with mask layers.
    so you can only see the left side of the map image and what it contains, while there's two arrows one to the left and one to the right there's three cases here,
    first when it show the left side(start from x:0 to x:300), the left arrow will not active when you press and the right arrow will start an animation that make the map image move to the mid side in one sec when you press.
    in mid side (start from x:301 to x:600) the same left arrow will active when you press to send you back to the left side while the same right arrow will be active to send you not to the mid side but to the right side,
    when moved to the right side the same left arrow will be active to send you to the mid and the right will not active when you press and depending on that,
    first how to make the large image appear with the three sides in the same place without effecting the other objects "like disappearing them" ?
    and the codes i need in the same left or right arrow symbol to make different actions with the same symbol when clicked depending on which part of the map is on.

  • MapViewer base map image is not loading on OBIEE 11.1.1.6.4

    Hi Experts ,
    We are facing issue in OBIEE 11.1.1.6.4 and OBIEE 11.1.1.6.5. The background maps are not loading. The measure is getting plotted the as per postal code but the background map is not coming up.
    The Issue is only with External maps. It is working in Google maps.
    In Mapviewer > Management > Manage Map Tile Layers we can see GOOGLE_MAP as well as our required map tile layer.
    When we select GOOGLE_MAP and click on view map / manage tiles button we can see the background map.
    But the same doesnt happen for our background map.
    Our Operating System is Windows 2008 (We have tried in Linux as well).
    Thanks

    In case you have not found the reason for your problem. You mentioned that the problem is only with External maps, but also say that it works with Google maps (which is external). I'm assuming you had an internal map that was not working, right? First suggestion is to check MapViewer log for errors after you try to view the tile layer. You may have missing metadata, or broken definitions (base map or tile layer) pointing to data that do not exist.

  • How can I get the coordinate in the layer coordinate system while doing the iterate?

    I found that the position(x,y) the iterate function tell me is not right sometimes.
    Actually,it happens when the top of the layer is negative. The "y"is in the comp coordinate system(maybe?) but not the layer.In another word, the position with y=0 is not the top.
    More specifically, I have got the color map of a layer. I am able to get the color of any pixel in the layer. But I can't set the color one for one when I use "iterate",because there is an offset.
    Am I supposed to get the offset? Is there any way to access the whole layer directly if I use iterate function?

    so indeed it's the offset at play.
    AE will diminish the buffer at 20% increments, and not for each pixel that
    goes out of sight. it's not really in relation to the upper left corner,
    it's all about what part of your layer buffer is out of sight.
    there's also an "iterate offset function". check it out. perhaps it will
    save you some trouble.
    On Fri, Dec 19, 2014 at 2:45 PM, Hinanawi Tenshi <[email protected]>

  • Link Join Concept In Physical and Business Model Layer

    Hi,
    As we know that we could make join relationship in physical layer and also business model layer in obiee 10g. This is what makes me confuse.
    First of all, I tried to follow the tutorial in the oracle learning library center with schema SH as an example.
    In the beginning, it is stated that we must make join relationship first in physical layer for all imported tables which are consist of dimension tables and fact tables.
    Then, in the business model layer, the tutorial said that we must also make join relationship for the logical dimension table and logical fact table.
    So, what's the purpose actually we must make join relationship in business model layer ?
    All objects in business model layer are actually mapped from physical layer. So automatically the relationship in business model layer should be available automatically as they are mapped from physical layer.
    Maybe for you guys who know the concept well about this difference of relationship, could tell me so I could get the idea of what it is actually about.
    Thanks

    Physical layer does represent datamodel joins as is in almost all cases.
    Federated queries are a best example why joins are implemented in both (Physical & BMM layer) places.
    Business model mapping layer is modelled according to your business requirements.
    This is where your model MUST be a simple star schema, also where you model your hierarchies based on logical tables in bmm layer, & do appropriate aggregate navigation.
    Hope the view points presented will put you in right direction.
    mark answers promptly.
    -bifacts
    http://www.obinotes.com
    J
    Edited by: bifacts on Dec 16, 2010 9:19 PM

  • Is it possible to create web services for classes and bol objects?

    i am new to crm web channel,can any one  please ,help me....
    thank u in advance,
    kiran.

    Hi Kiran,
    Here, when you are talking about classes and BOL objects together, I assume you are talking about the BOL layer for CRM. If that is the case, and you have no dependency on WCEM for these objects, I would suggest you use the NW gateway to expose Odata web services from the CRM box itself. If you would like to expose the Odata web services from WCEM, please have a look at Ch 7 Dev & Extension Guide available in help.sap.com/wec301.
    Good luck!
    Regards
    Pranshu

  • Use of Bol and Genil Programing

    Hi All,
    I am new to CRM, could you please explain what is the use of Bol & Genil programming?
    Thanks,
    Krishna

    Hi Anil,
    The BOL and GenIL essentially refer to the layers that handles the user interface in SAP CRM.
    The GenIL (Generic Interaction Layer) consists of one implementation class that always derives from one of the two classes and implements a set of methods to provide the functionality. GenIL is like a bridge between the backend APIs and the UI i.e. for
    a given UI, it identifies which APIs need to be called and also re-formats data accordingly.
    The BOL (Business Object Layer) consists of upto 7 different kinds of objects that are defined in a model. At runtime, the BOL layer will hold data that is used on the UI. BOL provides a consistent way of modelling data so that data access is consistent and the UI can also be built faster.
    This is just a brief information - you need to go through details documents to understand this in detail. SAP CRM comes with a sample genIL implementation that can be found in CRM_GENIL_SAMPLE package. You can check this package to see how GenIL and BOL layers can be implemented.
    Regards,
    Shiromani

  • Image map for Dreamweaver from Photoshop

    Hi. How does one convert some of the layers in a Photoshop CS3 graphic to an HTML image map with each layer being a hot spot? This would be very tedious (and not very accurate) doing it manually. Thanks.

    > nothing done by hand could have created anything this precise.
    But take a look at the definition of the hotspots in the HTML code. It is possible that you have a massive definition that will chew up some considerable bandwidth to transmit. (The point ID and others were making.)
    This isn't a problem if all your users are on high speed connections, but if a significant number are on dialup, they might not want to wait for such precision.

  • OBIEE - Spatial Maps

    Hi,
    We are working on OBIEE 11g. We have created a new column in Spatial Database - 'MVDEMO' in the backend. we are unable to get the column to appear in the LOV of ' Manage Map Data ->Edit Layer -> BI Associations -> Key Layer'. We have tried restarting the BI Server but this did not help.
    It would help us if anybody could help us resolve this issue as soon as possible.
    Thanks and regards.
    Nilan

    Hi Nilan,
    An option might be to go this web site:
    http://www.oracle.com/technetwork/middleware/bi-foundation/obiee-samples-167534.html
    and click on the NAVTEQ data bundle. This content was designed to help you get started with Maps in OBIEE

  • Bol Buffer vs api buffer for better performance

    Experts,
                Could you please express your expert opinion on below scenario or similar scenarios that one come across in daily coding.
    We have a BTOrder root object with us, we need to find a particular partner function and read its name from this point. We could go this way:
      BTOrder->Btadminh->btpartnerall->in collection -> loop to read particular partner function ->read partner details
      OR
    from order guid we could call crm_order_read -> get partner no. -> call bupa_central_get_detail -> get all relevant data
       this fm would internally call *OW module and try to read from buffer.
      My question is ->
    which is SAP recommended approach
    Which is best from performance point of view considering we have lot of such reads to be done
      Any particular caution one should take while coding in such scenarios (one i think would be make sure api and bol buffer are in sync in case using apis to read).
    Please provide your valuable inputs in this regard
    Thanks,
    Rohit

    Thanks Arun and Harshit for the replies.
      I would say your replies are in line with what I thought they would be, but I still would like to know what is the SAP recommended approach (if any) for these situations.
      And if using function modules is more efficient - then BOL layers significance comes only while creating / modifying entities, right?
      Then again, we could use crm_order_maintain - as ultimately before saving this function module only would be called along with crm_order_save in the btil classes.
    I hope I am making some sense - I just want to know how and when exactly is BOL layer useful in comparison with the function modules (both in read and write).
    Warm Regards,
    Rohit Khetarpal

Maybe you are looking for

  • Creative and Windows Media Pla

    Hi- I'm looking in to getting a MP3 player soon and am currently on bouncing between the iPod 20GB, Creative Zen touch or Zen Micro- I'm mainly concerned with battery life and the sturdiness of the player (and the radio feature on the creatives sound

  • Since they just released iOS 7.0 for the fifth generation, are they going to release anything for 4th generations?

    I need to know if they are releasing a new update for 4th generation iPod touches now that they released iOS 7.0 for 5th gen.

  • How to get UDF's fieldid and UDK's keyid

    Hi I want to modify or delete UDF and UDK using code.When I use object's GetByKey method, there is another parameter(fieldid or keyid). But now I just know table name and fieldname and keyname. Could you please tell me how to get fieldid and keyid us

  • 4.6B on SQL 7

    Hi, Client wants to install 4.6B on SQL 7 on Windows 2003. Cant find any info in PAM. Anyone knows of such a mix in operation and whether it is a workable solution? Regards

  • Qosmio G20 - sound and tv tuner drivers (digital)

    Hello all, I recently purchased a Qosmio G20 (490ls) in Japan and have had nothing but problems thus far. The original OS that came bundled with the computer was Windows XP Home (Japanese). I can not read Japanese but I have an English version of Win