Loop in Mapping data

Hi All,
I have a mapping scenario like below,
Source Data
Storage Location1
      ItemA 
      ItemB
      ItemC
Storage Location2
      ItemA
      ItemD
      ItemE
Storage Location3
      ItemD
      ItemE
Target Data
ItemA
   StorageLocation1
   StorageLocation2
ItemB
   StorageLocation1
ItemC
   StorageLocation1
ItemD
   StorageLocation2
   StorageLocation3
ItemE
   StorageLocation2
   StorageLocation3
I have to convert the source data into the target data given. I come to know it can be done with ABAP mapping....There are actually 2 loops like this in my mapping scenario...so donno how to do this mapping...do any one have this kind of mapping scenario ....do suggest me...
Pls. let me know if this is not clear.
Thanks
Giridhar Kommisetty

HI
Sorry for the confusion.
Let me explain again.
Source structure is defined with StorageLocaiton as segment1 and then Item as a subsegement underthat.
In the target structure I have to make Item segment as a header kind of thing and Storagelocation under that.
just a reverse kind of thing. main segement to subsegment and subsegment to mainsegment.
hope i made sense.
thanks,
Giridhar Kommisetty

Similar Messages

  • List View Bound to XML Map Data

    HI Have a list view that is bound to xml mapped data.  It seems that on connection refresh that new data is not being updated into the SWF.  My Binding is directly onto the cell ranges that are mapped into excel, so on updates the size of the maped table changes/rewrites over the old data.
    When I refresh I am not picking up the newest data in the list view.  Any thoughts on this on how I can fix.
    Regards,
    Mark

    Thank you Ganesh, but I am not on Enterprise edition.  I am successfully bringing in live xml data, however mapping more than one Query result from one xml file is giving my project some problems.  Refreshing a list View I think is causing this issue.  From within my project in design view I can Refresh the data.
    When I publish the file to html/SWF when I refresh other components are refreshing but the list view and one other is not refreshing.....

  • How to create a textfile dynamically(with in the loop) with given data?

    Hi all,
    Can anyone Please guide me how to create a text file in the given path dynamically? (with in the loop) with given data.
    For example:
    <%
    String data1="name";
    String data2="address";
    for(int i=0;i<10;i++)
    create the textfile at c:/test/sample.txt//name of the each file created being "sample.txt"
    //contents of text file will be
    data1+i; //to get name1,name2.....
    data2+i// to get add1,add2........
    delete(sample.txt) //to enable to create another file in the loop with same name
    %>

    The code which Ashokan mentioned is not is not creating a file.
    i used code given below to create and write into it.
    But, not is writing into it. I don't konw, where i am going worng !
    Code
    String sample2="C:/Ash/sample2.txt";     
                                                                                    FileWriter fw = new FileWriter(sample2,true);
                                            BufferedWriter bw=new BufferedWriter(fw);
                                            bw.write("EMP ID");     
                                            bw.newLine();
    Please help
    Regards
    aSh

  • Data source cannot be created : MAPVIEWER-00011: Error creating a map data

    Hi everyone,
    i am getting an error meaasge while creating datasource
    " Data source cannot be created : MAPVIEWER-00011: Error creating a map data source."
    pls help

    You should assign only one value to jdbc_sid. Try with this
    <map_data_source name="mvdemo"
    jdbc_host="localhost"
    jdbc_sid="orcl"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="!mvdemo"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="false"
    />
    Make sure that oracle sid is 'ORCL'
    Sujnan

  • In the attached VI why does one loop coerce the data type while the other doesn't?

    In the attached VI why does one loop coerce  the data type while the other doesn't?
    Solved!
    Go to Solution.
    Attachments:
    AAA.vi ‏8 KB

    I'm guessing you created the Enum on the front panel.  If you right-click it and create an indicator, it will match the type, and be an enum.  LabVIEW represents enums as U16, but because the types aren't identical (for example, your enum has 3 values, but a U16 has 65,536 values), LabVIEW automatically coerces (or converts) the smaller (enum) representation into the larger (U16) value.

  • Error : CONNECT BY loop in user data

    Getting CONNECT BY loop in user data:
    Table X  (sample data actually have 35K rows)
    CODE             CASE              OLD_ID                NEW_ID            PERSON       AUTH
    01              ab122         1234               0001             AU123     99393
    07              vv353          7872               0919             FV982     78282
    01              ab122         1982               9929             AU123     99393
    04               hjsss         8839                8302            JK920     32320
    01              ab122         0001               1982             AU123     99393
    05              cg899         6728               32322           IKL020     65252
    07              w353          0919                8282             FV982     78282
    now I need to order this data comparing row values of old_id to new_id for each of the combinations of code, person, case
    need output like below
    Table X
    CODE             CASE              OLD_ID                NEW_ID            PERSON       AUTH
    01              ab122         1234               0001             AU123     99393
    01              ab122         0001               1982             AU123     99393
    01              ab122         1982               9929             AU123     99393
    04               hjsss         8839                8302            JK920     32320
    05              cg899         6728              32322           IKL020     65252
    07              vv353          7872               0919             FV982     78282
    07              w353          0919                8282            FV982     78282
    to get this I am using:
    --Query--
    select * from table_x
    start with old_id not in(
                                      select new_id
                                      from table_x
    CONNECT BY old_id = PRIOR new_id
           AND   code   = PRIOR code
           AND   case   = PRIOR case
           AND   person = PRIOR person
    --Query--
    runs fine with sample data but the problem is when excute it with actual table that has 35K records..
    Cause: The condition specified in a CONNECT BY clause caused a loop in the query, where the next record to be selected is a descendent of itself. When this happens, there can be no end to the query.
    Action: Check the CONNECT BY clause and remove the circular reference.
    Thanks,
    AK

    Hi,
    CONNECT_BY_ISCYCLE is a pseudo-column that you can use in a CONNECT BY NOCYCLE query.  It's separate from the CONNECT BY clause.
    Try this:
    select  code, "CASE", person
    ,       SYS_CONNECT_BY_PATH (old_id, '/') AS path
    from    table_x
    where   CONNECT_BY_ISCYCLE = 1
    start with  old_id not in (
                                      select new_id
                                      from table_x
    CONNECT BY NOCYCLE old_id = PRIOR new_id
            AND        code   = PRIOR code
            AND        "CASE" = PRIOR "CASE"
            AND        person = PRIOR person
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002#9362002

  • RE: Dynamically mapping data to widgets

    One quick and dirty solution would be something like this (though not
    terribly efficient):
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);for childWidget in newPanel.children do
    -- check if the childWidget field name matches field name to be
    set
    if childWidget.name.isEqual(source=<..FieldNameToSet..>,
    ignoreCase=TRUE) then
    dataWidget : dataField = dataField(childWidget);
    if dataWidget.textvalue = NIL then
    dataWidget.textvalue = new;
    end if;
    -- set the textvalue of the childWidget to required
    value
    dataWidget.textvalue.setvalue('WORKS !');
    end if;
    end for;
    Your problem would have been directly solved if the Forte library class
    CompoundField provided a SetDataObject( ) method corresponding to the
    GetDataObject( ) method.
    According to Forte Help - "The GetDataObject method returns the object
    that the compound field is mapped to. If the compound field is not
    mapped to an object, this method returns NIL."
    Maybe Forte could consider providing this in a future release.
    Another option would have been to use the GetFieldByName( ) method on
    the newly created panel to get at the child widgets directly.
    According to Forte help - "GetFieldByName is designed for use in dynamic
    applications. For example, you can use GetFieldByName to retrieve the
    names of dynamically created fields for immediate use in dynamic
    applications."
    This works fine for compile-time named widgets, but I couldn't get it to
    work for the newPanel child widgets using the code below, or maybe I am
    missing something here.
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);newPanel.name.setvalue('newPanel');
    newPanel.parent = <aGridField>;
    dataWidget : dataField = dataField(newPanel.getFieldByName('age'));
    (OR)
    dataWidget : dataField =
    dataField(<aGridField>.getFieldByName('newPanel.age'));
    (OR)
    dataWidget : dataField =
    dataField(self.window.getFieldByName('newPanel.age'));
    In all cases the return value was NIL.
    Maybe someone from Forte could shed more light on this.
    Hope this helps.
    Prashant.
    From: Richard Finegan[SMTP:[email protected]]
    Reply To: Richard Finegan
    Sent: Thursday, August 13, 1998 2:27 PM
    To: 'Forte Users Mailing List'
    Subject: Dynamically mapping data to widgets
    Here's what I'm trying to do:
    I have a panel with a bunch of data fields that I've mapped to an
    object.
    I want to replicate the panel several times to programmatically
    populate a
    TabFolder (although the TabFolder bit isn't really relevant here, I
    think).
    But I can't figure out how to get at the mapped data in the replicas
    of my
    object...
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);
    panelCreatedFromWindowWorkshop.anAttributeOfObjMappedToPanel =
    something;
    // tada! "something" appears in a data field of the original panel
    newPanel.? = something; // how to do the same thing with the new
    panel?
    How do I map an object to the replicated panel? I've experimented
    with
    assigning "Widget.AppData" to a new object, but I can't seem to get it
    to
    do anything...
    Thanks in advance for your help.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Michael,
    did you find any solution?
    I've the same problem.

  • How to bypass "ORA-01436: CONNECT BY loop in user data" ?

    Hello everybody
    I have a problem with a ORA-01436 firing too early on a query I'm trying to execute.
    There is a table of strings. Each string on that table should be composed of a single character or it must be obtained by the concatenation of a single character on another string in the table.
    Sometime this requirement is missing. I can't do anything to drive the table to be in that way. So I would like to execute a query witch corrects that table by adding the missing strings in it. When there are some strings that can't be obtained by appending a single char from another string the the query should list also the missing chain of strings to make that string valid in the table.
    An example.
    create table strings (
         val varchar2(10) not null
    insert into strings (val) values ('A')
    insert into strings (val) values ('ABCDE')
    insert into strings (val) values ('AD')
    insert into strings (val) values ('ADF')
    select *
    from strings
    order by val
    Query finished, retrieving results...
        VAL   
    A         
    ABCDE     
    AD        
    ADF       
    4 row(s) retrievedAs you can see the bold string ABCDE is not valid because it can't be obtained by
    appending a single char to any other string in the table.
    In this case a valid result should also list the chain of strings 'AB', 'ABC' and 'ABCD'.
    To find the strings where a chain of missing strings begins and finishes I use this query.
    Processing ...
    select val,p_val
    from (
         select val,lag(val) over (order by val) as p_val
         from strings
    ) a
    WHERE val not like p_val||'_' and val like p_val||'%' AND p_val IS NOT NULL
    Query finished, retrieving results...
        VAL       P_VAL  
    ABCDE      A         
    1 row(s) retrievedIn this simple case a can list the missing strings with this query.
    Processing ...
    select val,p_val,p_val||SUBSTR(val,LENGTH(p_val)+1,LEVEL) as chain_string,LEVEL
    FROM (
    select val,p_val
    from (
         select val,lag(val) over (order by val) as p_val
         from strings
    ) a
    WHERE val not like p_val||'_' and val like p_val||'%' AND p_val IS NOT NULL
    CONNECT BY LENGTH(val)>LENGTH(p_val)+LEVEL
    Query finished, retrieving results...
        VAL       P_VAL       CHAIN_STRING                      LEVEL                
    ABCDE      A          AB                                                        1
    ABCDE      A          ABC                                                       2
    ABCDE      A          ABCD                                                      3
    3 row(s) retrievedBut when I have more than one string to be validated things change and the hierarchical query is not good any more in this way.
    insert into strings (val) values ('ADFGH')
    Processing ...
    select *
    from strings
    order by val
    Query finished, retrieving results...
        VAL   
    A         
    ABCDE     
    AD        
    ADF       
    ADFGH     
    5 row(s) retrievedBecause I retrieve solutions regarding the one string mixed with all the others
    Processing ...
    select val,p_val,p_val||SUBSTR(val,LENGTH(p_val)+1,LEVEL) as chain_string,LEVEL
    FROM (
    select val,p_val
    from (
         select val,lag(val) over (order by val) as p_val
         from strings
    ) a
    WHERE val not like p_val||'_' and val like p_val||'%' AND p_val IS NOT NULL
    CONNECT BY LENGTH(val)>LENGTH(p_val)+LEVEL
    Query finished, retrieving results...
        VAL       P_VAL       CHAIN_STRING                      LEVEL                
    ABCDE      A          AB                                                        1
    ABCDE      A          ABC                                                       2
    ABCDE      A          ABCD                                                      3
    ADFGH      ADF        ADFG                                                      1
    ABCDE A ABC 2
    ABCDE A ABCD 3
    6 row(s) retrievedTo avoid this I should add a condition to link val to prior val in the connect by clause but here it throws ORA-01436.
    Processing ...
    select val,p_val,p_val||SUBSTR(val,LENGTH(p_val)+1,LEVEL) as chain_string,LEVEL
    FROM (
    select val,p_val
    from (
         select val,lag(val) over (order by val) as p_val
         from strings
    ) a
    WHERE val not like p_val||'_' and val like p_val||'%' AND p_val IS NOT NULL
    CONNECT BY LENGTH(val)>LENGTH(p_val)+LEVEL AND val = PRIOR val
    select val,p_val,p_val||SUBSTR(val,LENGTH(p_val)+1,LEVEL) as chain_string,LEVEL
    ORA-01436: CONNECT BY loop in user dataWhat could I do to bypass that check?
    I know I could query for distinct values on the first query (the one without the condition val = PRIOR val ) but I'd like to know if you had similar problems and how did you solved them in this case.
    Thanks
    Bye Alessandro

    I don't know why but with 10.2.0.4 Oracle now found a way to raise this error again.
    Connected to:                                                                         
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production          
    With the Partitioning, Real Application Clusters, OLAP, Data Mining                   
    and Real Application Testing options                                                  
    SQL> create table strings (                                                        
      2     val varchar2(10) not null                                                     
      3  )                                                                                
      4  /                                                                                
    Table created.                                                                        
    SQL>                                                                               
    SQL> insert into strings (val) values ('A')                                        
      2  /                                                                                
    1 row created.                                                                        
    SQL> insert into strings (val) values ('ABCDE')                                    
      2  /                                                                                
    1 row created.                                                                        
    SQL> insert into strings (val) values ('AD')                                       
      2  /                                                                                
    1 row created.                                                                        
    SQL> insert into strings (val) values ('ADF')                                      
      2  /                                                                                
    1 row created.                                                                        
    SQL>                                                                               
    SQL> select val,p_val,p_val||SUBSTR(val,LENGTH(p_val)+1,LEVEL) as chain_string,LEVEL
      2  FROM (select val,p_val                                                           
      3        from (                                                                     
      4              select val,lag(val) over (order by val) as p_val                     
      5              from strings) a                                                      
      6        WHERE val not like p_val||'_' and val like p_val||'%' AND p_val IS NOT NULL)
      7  CONNECT BY LENGTH(val)>LENGTH(p_val)+LEVEL  AND val = PRIOR val                  
      8  and prior dbms_random.value is not null                                          
      9  /                                                                                
    ERROR:                                                                                
    ORA-01436: CONNECT BY loop in user data                                               
    no rows selected                                                                      
    SQL>Had someone of you found a way to do it again.
    Thanks
    Bye Alessandro

  • Error in Accessing User Mapping Data

    Hi,
    When i tried User Mapping by going to
    "UserAdministration -> UserMapping" , or
    "Personalize" -> "User Mapping"
    it gives the error msg ,
    Problem in accessing user mapping data for selected system.
    Due to this i am not able to create appointments or see the availability status of a user.
    Also, for your information i have Strong Encryption files installed.
    Pls help.
    Thanks in advance..

    Hi venkat,
    You need to change the default value in UME configuration
    System admin -> System Config -> UM Configuration -> Direct Editing
    ume.usermapping.unsecure=TRUE
    Regards
    PS: Please consider rewarding point

  • Nokia Maps not loading any new maps data on the fl...

    Hi,
    Just posted a thread on City lens not working properly with Maps, but now I notice that Maps seems to have problems of its own: without Wifi, I can't use satellite maps or indoors maps. As a matter of fact, even the plain vanilla street maps mode seems to work only because I've downloaded offline maps for my country. If try to zoom in on a neighbouring country without wifi, no detailed maps load.
    Nokia Drive doesn't seem to have this limitation, it will happily load detailed maps data over the air too. Using Lumia 920, original firmware, and Maps version 3.1.177.8.
    This can't be by design, or can it?

    Some more interesting symptoms from this issue:
    After restarting the phone, if I immediately launch Maps or City Lens, I can enjoy a short moment (maybe a minute or two) of having the features work over cellular data connection.
    The non-functionality of these features seems to correlate with how the Dialer tile on the start screen identifies my network (only medium-size or large tile will show the name). If the tile reads "Saunalahti" (the name of my operator), everything will work as it should. Some minutes after booting the id changes to "Oma verkko" (="Own network"), at which point cellular connection seems to stop working, but only for these very specific use cases. I can happily use IE10 or other apps which require data connection even with WiFi off.
    If I go to Settings / Network and choose my network manually from the list (i.e. I choose "Saunalahti"), the Dialer tile will for a short while again revert to showing "Saunalahti", and I get another 2 minutes of functionality.
    So yes, I guess it does look like a network issue, or perhaps an issue with how the device deals with roaming networks. My network provider told me it's probably something with the phone or its settings and suggested I contact Nokia. Nokia will probably tell me it's obviously something with the operator and direct me to them .

  • Getting Dump while Mapping data source.

    Hi Expert,
    Am getting below DUMP while trying to map data source in SEGW transaction.
    Could you please suggest what could be possible cause for this?
    Category               ABAP Programming Error
    Runtime Errors         SYNTAX_ERROR
    ABAP Program           CL_SADL_GW_UI_ALV_SADL_MAPPINGCP
    Application Component  BC-ESI-ESF-GW
    Date and Time          28.07.2014 18:30:59
    Short Text
         Syntax error in program "CL_SADL_GW_UI_ALV_SADL_MAPPINGCP        ".
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "CL_SADL_GW_UI_PLUG============CP" had to be
          terminated because it has
         come across a statement that unfortunately cannot be executed.
         In include "CL_SADL_GW_UI_ALV_SADL_MAPPINGCM005     ", in line 14 of program
          "CL_SADL_GW_UI_ALV_SADL_MAPPINGCP        ", the following syntax errors
         have occurred:
    Thanks & Regards,
    Girdhari

    Thanks Jasmin for the reply.
    Yes.. Am following the E2E guide.
    I tried by opening another external window by executing ok-code osegw but still getting same dump.
    Below is the complete dump info.
    Category               ABAP Programming Error
    Runtime Errors         SYNTAX_ERROR
    ABAP Program           CL_SADL_GW_UI_ALV_SADL_MAPPINGCP
    Application Component  BC-ESI-ESF-GW
    Date and Time          29.07.2014 15:44:03
    |Short Text                                                                                        |
    |    Syntax error in program "CL_SADL_GW_UI_ALV_SADL_MAPPINGCP        ".                           |
    |What happened?                                                                                    |
    |    Error in the ABAP Application Program                                                         |
    |                                                                                                  |
    |    The current ABAP program "CL_SADL_GW_UI_PLUG============CP" had to be                         |
    |     terminated because it has                                                                    |
    |    come across a statement that unfortunately cannot be executed.                                |
    |    In include "CL_SADL_GW_UI_ALV_SADL_MAPPINGCM005     ", in line 14 of program                  |
    |     "CL_SADL_GW_UI_ALV_SADL_MAPPINGCP        ", the following syntax errors                      |
    |    have occurred:                                                                                |
    |    "CS_TABLE_LAYOUT" is not type-compatible with formal parameter "CS_TAB                        |
    |    LE_LAYOUT".                                                                                   |
    |                                                                                                  |
    |                                                                                                  |
    |                                                                                                  |
    |    Author and last person to change the include are:                                             |
    |    Author         SAP                                                                            |
    |    Last changed by "SAP         "                                                                |
    |Error analysis                                                                                    |
    |    The following syntax error has occurred in program                                            |
    |     CL_SADL_GW_UI_ALV_SADL_MAPPINGCP        :                                                    |
    |    "CS_TABLE_LAYOUT" is not type-compatible with formal parameter "CS_TAB                        |
    |    LE_LAYOUT".                                                                                   |
    |                                                                                                  |
    |    " "                                                                                           |
    |Trigger Location of Runtime Error                                                                 |
    |    Program                                 CL_SADL_GW_UI_PLUG============CP                      |
    |    Include                                 CL_SADL_GW_UI_PLUG============CM002                   |
    |    Row                                     11                                                    |
    |    Module Type                             (METHOD)                                              |
    |    Module Name                             /IWBEP/IF_SBUI_PLUGIN~CREATE_VIEW                     |
    |Source Code Extract                                                                               |
    |Line |SourceCde                                                                                   |
    |    1|  METHOD /iwbep/if_sbui_plugin~create_view.                                                 |
    |    2|    CASE iv_name.                                                                           |
    |    3|      WHEN if_sadl_gw_ui_c=>gc_dialog-mapping_container. " custom container for the ALV Grid|
    |    4|        CREATE OBJECT ro_view TYPE cl_sadl_gw_ui_map_ds_sadl_c                              |
    |    5|          EXPORTING                                                                         |
    |    6|            io_controller = io_controller                                                   |
    |    7|            iv_plugin     = if_sadl_gw_ui_c=>gc_ui_plugin                                   |
    |    8|            iv_name       = iv_name.                                                        |
    |    9|                                                                                            |
    |   10|      WHEN if_sadl_gw_ui_c=>gc_dialog-entity_set_prop_map_alv_grid. " ALV GRID mapping table|
    |>>>>>|        CREATE OBJECT ro_view TYPE cl_sadl_gw_ui_alv_sadl_mapping                           |
    |   12|          EXPORTING                                                                         |
    |   13|            io_controller = io_controller                                                   |
    |   14|            iv_plugin     = if_sadl_gw_ui_c=>gc_ui_plugin                                   |
    |   15|            iv_name       = iv_name.                                                        |
    |   16|                                                                                            |
    |   17|      WHEN if_sadl_gw_ui_c=>gc_dialog-entity_set_assoc_map_alv_grid. " ALV GRID mapping tabl|
    |   18|        CREATE OBJECT ro_view TYPE cl_sadl_gw_ui_alv_map_assoc                              |
    |   19|          EXPORTING                                                                         |
    |   20|            io_controller = io_controller                                                   |
    |   21|            iv_plugin     = if_sadl_gw_ui_c=>gc_ui_plugin                                   |
    |   22|            iv_name       = iv_name.                                                        |
    |   23|                                                                                            |
    |   24|      WHEN if_sadl_gw_ui_c=>gc_dialog-data_source_tree. " SADL entity ALV tree              |
    |   25|        CREATE OBJECT ro_view TYPE cl_sadl_gw_ui_tree_ds_sadl_c                             |
    |   26|          EXPORTING                                                                         |
    |   27|            io_controller = io_controller                                                   |
    |   28|            iv_plugin     = if_sadl_gw_ui_c=>gc_ui_plugin                                   |
    |   29|            iv_name       = iv_name.                                                        |
    |   30|    ENDCASE.                                                                                |
    |Active Calls/Events                                                                               |
    |No.   Ty.          Program                             Include                             Line   |
    |      Name                                                                                        |
    |   23 METHOD       CL_SADL_GW_UI_PLUG============CP    CL_SADL_GW_UI_PLUG============CM002    11  |
    |      CL_SADL_GW_UI_PLUG=>/IWBEP/IF_SBUI_PLUGIN~CREATE_VIEW                                       |
    |   22 METHOD       /IWBEP/CL_SBUI_SETUP==========CP    /IWBEP/CL_SBUI_SETUP==========CM00E     7  |
    |      /IWBEP/CL_SBUI_SETUP=>/IWBEP/IF_SBUI_SETUP_FACTORY~CREATE_COMPONENT_VIEW                    |
    |   21 METHOD       /IWBEP/CL_SBUI_VIEW_COMPOSITE=CP    /IWBEP/CL_SBUI_VIEW_COMPOSITE=CM004     6  |
    |      /IWBEP/CL_SBUI_VIEW_COMPOSITE=>CREATE_COMPONENT_VIEW                                        |
    |   20 METHOD       CL_SADL_GW_UI_MAP_DS_SADL_C===CP    CL_SADL_GW_UI_MAP_DS_SADL_C===CM00B     2  |
    |      CL_SADL_GW_UI_MAP_DS_SADL_C=>_ADD_COMPONENT_VIEW                                            |
    |   19 METHOD       CL_SADL_GW_UI_MAP_DS_SADL_C===CP    CL_SADL_GW_UI_MAP_DS_SADL_C===CM008    11  |
    |      CL_SADL_GW_UI_MAP_DS_SADL_C=>DO_SETUP_INSTANCE                                              |
    |   18 METHOD       /IWBEP/CL_SBUI_VIEW===========CP    /IWBEP/CL_SBUI_VIEW===========CM003    58  |
    |      /IWBEP/CL_SBUI_VIEW=>/IWBEP/IF_SBUI_COMMAND_HANDLER~EXECUTE_COMMAND                         |
    |   17 METHOD       /IWBEP/CL_SBUI_SETUP==========CP    /IWBEP/CL_SBUI_SETUP==========CM00E    12  |
    |      /IWBEP/CL_SBUI_SETUP=>/IWBEP/IF_SBUI_SETUP_FACTORY~CREATE_COMPONENT_VIEW                    |
    |   16 METHOD       /IWBEP/CL_SBUI_SETUP==========CP    /IWBEP/CL_SBUI_SETUP==========CM00I    17  |
    |      /IWBEP/CL_SBUI_SETUP=>CREATE_FRAMESET_EDITOR                                                |
    |   15 METHOD       /IWBEP/CL_SBUI_SETUP==========CP    /IWBEP/CL_SBUI_SETUP==========CM00G    59  |
    |      /IWBEP/CL_SBUI_SETUP=>/IWBEP/IF_SBUI_SETUP_FACTORY~CREATE_ELEMENT_EDITOR                    |
    |   14 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM015    22  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>GET_ASSIGNED_EDIT_TOOL                                           |
    |   13 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM00A    33  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>/IWBEP/IF_SBUI_CONTROLLER~ON_NAVIGATION_REQUESTED                |
    |   12 METHOD       /IWBEP/CL_SBUI_DP_CMD_CREA_MA=CP    /IWBEP/CL_SBUI_DP_CMD_CREA_MA=CM001    53  |
    |      /IWBEP/CL_SBUI_DP_CMD_CREA_MA=>DO_EXECUTE_COMMAND                                           |
    |   11 METHOD       /IWBEP/CL_SBUI_COMMAND========CP    /IWBEP/CL_SBUI_COMMAND========CM002     4  |
    |      /IWBEP/CL_SBUI_COMMAND=>/IWBEP/IF_SBUI_COMMAND_HANDLER~EXECUTE_COMMAND                      |
    |   10 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM00E     9  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>HANDLE_COMMAND_OF_PLUGIN                                         |
    |    9 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM00Y    97  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>HANDLE_COMMAND                                                   |
    |    8 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM00C   138  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>/IWBEP/IF_SBUI_CONTROLLER~ON_COMMAND_REQUESTED                   |
    |    7 METHOD       /IWBEP/CL_SBUI_SCREEN=========CP    /IWBEP/CL_SBUI_SCREEN=========CM001    18  |
    |      /IWBEP/CL_SBUI_SCREEN=>ON_PAI_COMMAND                                                       |
    |    6 MODULE (PAI) /IWBEP/SAPLFG_SBUI_SB_MAIN          /IWBEP/LFG_SBUI_SB_MAINI01             14  |
    |      PAI_0100_COMMAND                                                                            |
    |    5 METHOD       /IWBEP/SAPLFG_SBUI_SB_MAIN          /IWBEP/LFG_SBUI_SB_MAINCI1             34  |
    |      LCL_SCREEN_0100=>DO_CALL_SCREEN                                                             |
    |    4 METHOD       /IWBEP/CL_SBUI_SCREEN=========CP    /IWBEP/CL_SBUI_SCREEN=========CM003    17  |
    |      /IWBEP/CL_SBUI_SCREEN=>START_SCREEN                                                         |
    |    3 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM00U    50  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>START_SCREEN                                                     |
    |    2 METHOD       /IWBEP/CL_SBUI_CONTROLLER=====CP    /IWBEP/CL_SBUI_CONTROLLER=====CM004    33  |
    |      /IWBEP/CL_SBUI_CONTROLLER=>/IWBEP/IF_SBUI_SERVICE_BUILDER~START                             |
    |    1 EVENT        /IWBEP/R_SBUI_SERVICE_BUILDER       /IWBEP/R_SBUI_SERVICE_BUILDER          19  |
    |      START-OF-SELECTION                                                                          |
    Thanks,
    Girdhari

  • If I update from ios 5.0.1 to 5.1.1 will I lose my map data? When I updated to 5.0 I lost all my GPSHD Motion X data - 25 Gbytes.

    If I update from IOS 5.0.1 to 5.1.1 will I lose all my GPSHD Motion X map data? When I updated to IOS 5.0.1 I lost about 25GBytes of map data because Itunes will not back up my GPSHD map data.

    I havn't used that app, but you shouldn't lose any data by updating to 5.1.1 from 5.0.1.
    You can make sure you have a backup before updating.
    If you run into problem with that app only or want to ask the app developers, check out the Motion X-Support site.

  • Google map data not displaying correctly in a spry collapsible panel

    I created a spry collapsible panel into which I've put google map data. The map placed in the collapsible panel looks and functions OK but shows my location in the wrong place. I tested it by putting exactly the same google map elsewhere on my page and this time it displays my location correctly. Here is a link to my test page: http://www.cornucopia-design.co.uk/BatimTest/map3test.html . Mouse over the 'view our location' link to see the incorrectly located map. It places my location in the top left corner rather than in the centre.  When you click on google's 'view larger map' links, they both then display the location identically. Anyone have any ideas about what's going on here? Is the coding for the collapsible panel doing something to the google code? I'm not a great code expert so any help would be greatly appreciated. Thanks

    Hello, thank you for your helpful comments. At least I now won't waste any more time trying to get this to work if it just won't... I'll just have to display the map in another way.
    Just a point about your suggestion of offsetting - I had thought of that but if I did that, when someone clicked on the map, they would be taken to the wrong place as, as I said, even though it displays incorrectly in my panel, the data IS correct and therefore correctly linked back to google maps.
    Thanks anyway.

  • Lost Maps data in Memory Card

    I recently formatted my phone and memory card and lost the nokia maps data from the card.
    while updating with nokia suit it says "can't find maps on phone". what can i do for getting back the data ? 
    @fthab
    Attachments:
    maps.jpg ‏131 KB

    helloafthab wrote:
    What can i do for getting back the data ? 
    Open Ovi Maps application upon device and perhaps download a few kb's of map data for your current position, then close application and re-try.
    Happy to have helped forum with a Support Ratio = 42.5

  • Any official word on Maps data update for Symbian?

    Hello,
    if anyone else still is using Symbian phone...
    The wonders of the world are not over..
    I'm just updating new maps to my Nokia 808 with Nokia Suite 3.8.54.
    1/3 done and loading, will give later more comments as the full update is done...
    BR jeeveeas

    jeeveeas wrote: After little driving, I can see that the maps data is still little old. I'd estimete it's nearly 1 year old, maybe early summer 2014 (as my area was build some new motorways and part of it is already in data but not all).
    Confirmation HERE in Message 3

Maybe you are looking for

  • OIM 9.1.0.2  - ActiveDirectory 9.1.1.7.0 Installation Status  :    Failed

    Hi, I am using OIM 9.1.0.2 When I install the AD connector from Deployment Manager -->Install Connector, It shows the error DOBJ.XML_IMPORT_ERROR Unknown tag OBJ_OFFLINED recieved. Step 2 : Connector Installation ActiveDirectory 9.1.1.7.0 Installatio

  • Reason to be entered when Reversing a Service Entry Sheet

    Hi When I try and revoke an accepted Service Entry Sheet, I get the following error message. Message No: M7 325 - A reason has to be entered for movement type 102." The field "GRUND" on Movement Type 102 is a required field. I can't make it an option

  • Issue loading itunes on windows 7  home premium 64

    Hello All , Kind of a computer newbie here with issue loading the new iTunes 9.0.3 software onto a new pc. here is situation Just got a new gateway dx4831 with windows 7 home premium 64 os preinstalled, down loaded the new software this afternoon. iT

  • How do i change my personal info on iPhone 4s?

    how do i change my personal info on iPhone 4s?

  • Iphone 3gs not starting up

    I was useing a Gps app and playing the ipod when the phone froze up. i got it to come back on for a little while then the touch screen stoped working and the screen when to a dark apple logo. then it shut off and there was nothing there. now nothing