Need Mapping Help: Generate index if value comes

Hi Experts,
I need mapping help to generate index if value comes form source. we have 4 fields in item level of source and target side we have to pass the these filed values and sequence number.
below given the structures:
Source:              Target:
Item                    Item
   A1                      Text
    A2                      Seq_No
    A3
    A4
my requirement is if A1 filed values comes from source we should pass to text and pass seq_no to constant-1, same as A2,A3 and A4 filed values also we should pass to text and seq_no for A2 is 2 and A3 is 3 and A4 is 4. suppose if A1 value is not coming from source we should pass seq_no for A2 is 1. if A1 and A3 filed values are not coming from source then we should pass seq_no for A2 and A3 are 1 and 2.
can you please help me how to achieve this. appreciate for your support.
Regards,
Sanjay.

Hi Sanjay,
                  you can  try this mapping
1. Generate the target 4  ITEM's  by duplicating the subtree as shown below 3 times.
Now create the each target item starting from first by mapping them to A1,A2,A3 and A4 respectively. I have shown the first ITEM mapping above. similarly you can map A2 to ITEM[1],
A3 to ITEM[2] and A4 to ITEM[3].
2. Now you can map the A* fields to Text one to one as shown below
Please repeat the same for A2,A3 and A4 to respective Text fields.
3. 
First seq_no field as shown
and similarly others as shown
Regards
Anupam

Similar Messages

  • Mapping Help for replacing source value

    Mapping Help for replacing source value
    Posted: Mar 14, 2006 1:06 AM    Reply 
    Hi all,
    I am unable to do transform the source value to required target value,
    From Source ADDRESS_TYPE = 'HOME' should be replaced with 03 to target field ANSSA, and 'MAIL' to be replaced with 05, I am trying to do it but i am unable to handle it, please give u r valuable suggestions,
    The source structure is like this,
    - <Event ID="239" TRANS_TYPE="ADR">
    <PersAddr GEO_LOC_CD="US" EMPLID="29" ADDRESS_TYPE="HOME" EFFDT="02/15/2006" ADDRESS1="92nd Floor" ADDRESS2="812backstreet" ADDRESS3="" ADDRESS4="" CITY="London" COUNTY="" STATE="AN" POSTAL="EC2N 4AG1" COUNTRY="GBR" KEY1="29" KEY2="HOME" KEY3="02/10/2006" />
    <PersAddr GEO_LOC_CD="US" EMPLID="29" ADDRESS_TYPE="MAIL" EFFDT="02/15/2006" ADDRESS1="92nd Floor" ADDRESS2="812backstreet" ADDRESS3="" ADDRESS4="" CITY="London" COUNTY="" STATE="AN" POSTAL="EC2N 4AG1" COUNTRY="GBR" KEY1="29" KEY2="MAIL" KEY3="02/10/2006" />
    </Event>
    REGARDS,
    sridhar

    Hi,
    This can be done using user-defined function as well.
    Code the function as...
    if(Addr_Type.equals("HOME"))
       return "03";
    else if(Addr_Type.equals("MAIL"))
       return "05";
    else
       return "Invalid Address Type";
    Here, Addr_Type is Input String Argument for this function.
    Map this function between ADDRESS_TYPE and ANSSA.
    Regards,
    Uma

  • Need Mapping Help

    Hi All
    Can somebody help me in the below mapping
    Source Structure:
    ID , Centre has 1.1  occurrence whereas Address has 0.. Unbounded
    Organization
    ID
        Centre
            Address1
                ID : 002
                Street: Street1
            Address2
                ID: 003
                Street2 : Street2
            Address8
                ID : 008
                Street: Street8
            Address12
                ID: 003
                Street2 : Street2
            Address11
                ID : 002
                Street: Street1
            Address12
                ID: 003
                Street2 : Street2
    Organization
    ID
        Centre
            Address1
                ID : 004
                Street: Street4
            Address2
                ID: 005
                Street2 : Street5
            Address3
                ID: 006
                Street2 : Street6
    I need to create multiple target Fields "STREET" based on the condition
    Condition:
    If org==>ID has highest value then consider the corresponding "Centre" and "Address" and create the target "STREET",
    if Centre==> Address ==> id = 002 then street 1 ===> Target "STREET"
    if Centre==> Address ==> id = 003 then street 2 ===> Target "STREET"
    if Centre==> Address ==> id = 004 then street 4 ===> Target "STREET"
    if Address==> ID does not exists or no vlaue create empty STREET
    Note : If there are multiple ids with same value consider the ADDRESS node whichever comes first
    Thank you

    Hi James
    Can you please explain this line
    If org==>ID has highest value then consider the corresponding "Centre" and "Address" and create the target "STREET",
    What do you mean by highest values? Is it the maximum number of ID values under root node ID?
    Also if possible please provide the input xml and the expected output xml structure so that we can help u better.

  • Need your help: generate report

    I have following 3 SQL scripts, they run separately as below:
    SQL 1:
    SELECT AREA_CODE,MAX(MODIFICATION_DTM) AS LATEST_DTM FROM RTP GROUP BY AREA_CODE;
    DESC RTP;
    Name               Null          Type         
    ID                     NOT NULL          NUMBER(10)          
    AREA_CODE                    VARCHAR2(8)      
    MODIFICATION_DTM               DATE         
    CUSTOM_1                    VARCHAR2(300)
    CUSTOM_2                    VARCHAR2(300)
    CUSTOM_3                    VARCHAR2(300)
    output:
    AREA_CODE     LATEST_DTM               
    ERLI          16-SEP-11                
    TORCE          20-OCT-11                
    RESIN          16-SEP-11                
    RES5          10-SEP-10                
    DYN          11-SEP-11                
    LOS          16-OCT-11                
    SQL 2:
    SELECT AREA_CODE,MAX(MODIFICATION_DTM) as LATEST_DTM FROM LOG WHERE LOG_DESC = 'RUN' GROUP BY AREA_CODE ;
    DESC LOG;
    Name                       Null     Type         
    LOG_ID                     NOT NULL NUMBER(10)          
    AREA_CODE                            VARCHAR2(8)  
    LOG_DESC                            VARCHAR2(256)
    CREATION_DTM                        DATE         
    MODIFICATION_DTM                    DATE         
    USER_ID                             VARCHAR2(20)
    output:
    AREA_CODE     LATEST_DTM               
    ERLI          13-JUN-11                
    TORCE          10-MAY-11                
    RESIN          10-DEC-11                
    RES5          10-FEB-11                
    SFO          11-SEP-11                
    DAS          06-AUG-11                              
    SQL 3:
    SELECT AREA_CODE,MAX(MODIFICATION_DTM) as LATEST_DTM FROM LOG WHERE LOG_DESC = 'OPERATION' GROUP BY AREA_CODE ;
    DESC LOG;
    Name                       Null     Type         
    LOG_ID                     NOT NULL NUMBER(10)          
    AREA_CODE                            VARCHAR2(8)  
    LOG_DESC                            VARCHAR2(256)
    CREATION_DTM                        DATE         
    MODIFICATION_DTM                    DATE         
    USER_ID                             VARCHAR2(20)
    output:
    AREA_CODE     LATEST_DTM               
    ERLI          13-JUN-11                
    MDSP          10-NOV-11                
    STP2          18-OCT-11                
    YOSH          06-OCT-10                
    ANKUR          17-OCT-11                
    5025W          31-AUG-11              
    DAS          06-AUG-11                              
    ...I want to generate an output as below:
    AREA_CODE     LATEST_DTM     LAST_RUN     LAST_OPERATION
    ERLI          16-SEP-11      13-JUN-11     13-JUN-11
    YOSH          06-OCT-10     07-AUG-11     14-NOV-09
    ...I have never generated this kind of report before, can anyone please help me on this one?
    Thanks....
    Edited by: user644467 on Aug 17, 2012 9:31 AM

    Although it could be done as a join of two subqueries, I would probably do it as union query to avoid the complications if not all area_code values are in both tables. Something like:
    select area_code, max(latest_dtm) latest_dtm, max(last_run) last_run,
           max(last_operation) last_operation
    from (select area_code, modification_dtm latest_dtm,
                 to_date(null) last_run, to_date(null) last_operation
          from rtp
          union all
          select area_code,
                 case when log_desc = 'RUN' then modification_dtm end last_run,
                 case when log_desc = 'OPERATION' then modification_dtm end last_operation
          from log
          where log_desc in ('RUN', 'OPERATION'))
    group by area_codeIf you know that no area_code value can appear in log without also appearing in rtp, then a join version would be something like:
    select area_code, latest_dtm, last_run, last_operation
    from (select area_code, max(modification_dtm) latest_dtm,
          from rtp
          group by area_code) rtp
       left join (select area_code,
                         max(case when log_desc = 'RUN'
                                     then modification_dtm end) last_run,
                         max(case when log_desc = 'OPERATION'
                                     then modification_dtm end) last_operation
                  from log
                  where log_desc in ('RUN', 'OPERATION')
                  group by area_code) log
          on rtp.area_code = log.area_codeIf you also know that all area_code values in rtp also appear at least once in log for one of run or ooperation, then you can lose the left join and just do an equi-join. However, I'm not sure that there would be much difference in perfromance between the two versions.
    John

  • 0GR_VAL_PD KF has not mapped with source in 0Pur_C01 but value comes

    HI All
    I have problem with 0GR_VAL_PD kf in 0PUR_C01 cube. 0GR_VAL_PD KF has not mapped with source in 0Pur_C01 but in report level, value is coming for purchase organisation,material group . 
    But GR value as at posting date (0GR_VAL_PD)value not coming for particular material group or purch. org. but some days before, values were coming for particular material group or purch. org..
    so need your help.
    Thanks n Regards,
    Gaurav Sekhri
    Edited by: gaurav sekhri on Aug 18, 2010 11:41 AM
    Edited by: gaurav sekhri on Aug 18, 2010 11:43 AM

    Hi Susan
    Which datasource you are using at present. Normally 0PUR_C01 gets loaded from 2LIS_02_ITM and 2LIS_02_SCL. The keyfigure that you have mentioned will come from 2LIS_02_SCL with the code that you have written.
    The code that you have written should work. Please check if the code is in the transformation from 2LIS_02_SCL.
    Share the details on why do you think the solution didn't work.
    Regards
    Karthik

  • Help needed on how to assign string value to variables in process designer

    Hi,
    I am using LC Workbench 8.0.1 version, I have a business requirement where in my form I have a dropdown box which contains two options i.e,
    1. Accept
    2. Decline
    If the user selects Accept, I have to route the form to user some "x" or if the user selects Decline then the form should be routed to some user "y" .
    To implement this I need to capture the user selected value which is a String.
    can someone explain me how to reslove this..?
    thanks and regards,
    sudheer

    I'm assuming you're using a xfaForm variable that points to an XDP in the repository to render your document.
    In that case, you set the Form Data Mapping to point to that xfaForm variable in the User step.
    When the user submits the form the xfaForm variable contains the data for the form in an XML format. You can have multiple routes that come out of your user step that will check a certain value in the xfaForm variable.
    The xml data for you form will be located under the /process_data/xfaForm/data/datasets/data node.
    You can use an xPath similar to /process_data/xfaForm/object/data/xdp/datasets/data/myNode/MyField
    you can also use the // notation to do a full search within the data node if you're not sure of the structure:
    /process_data/xfaForm/object/data/xdp/datasets/data//MyFieldValue
    I hope this helps.
    Jasmin

  • I need a help to generate new file

    Hi Guys
    I need your help. I have two text box in my form, the first one takes the file name to read, and then when user type in another file name in the second textbox, result should be saved as a typed file name in the same path.
    What I really want to do is, when the file is exist already (for instance, I'll name it as result.txt), my program scan through the result.txt file and append the new data at the end of the file. But result.txt file doesn't exist, it has to generate new file and save the data into the new one. I think I need to implement these in the OpenFile1() function, but I dont' know how.
    Does anybody have idea to solve this?
    private void saveFile() {
    textArea.append("SAVE FILE\n---------\n");
    if (openFile1())
         try {
              outputToFile();
    catch (IOException ioException) {
              JOptionPane.showMessageDialog(this,"Error Writing to File",
                   "Error",JOptionPane.ERROR_MESSAGE);
    private boolean openFile1 ()
         // Display file dialog box
    title=textfield1.getext();
    path=fileName_in.getPath();
         File file_out = new File(path, title);
    if (fileName_out == null || fileName_out.getName().equals("")) {
         JOptionPane.showMessageDialog(this,"Invalid File name",
                   "Invalid File nmae",JOptionPane.ERROR_MESSAGE);
         return(false);
         else {
    try
    boolean created = file_out.createNewFile();
    if(true)
    fileOutput = new PrintWriter(new FileWriter(fileName_out));
    return(true);
    else
    catch (IOException exc) {
    System.err.println("# Error: " );
    private void outputToFile() throws IOException
    // Initial output
         textArea.append("File name = " + fileName_out + "\n");
         //process();
         // Test if data exists
         if (data != null)
         Date now = new Date();
    DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
    String s = df.format(now);
    //long nowlong=now.getTime();
    fileOutput.println(s);
    fileOutput.print(fileName_in.getName() +" of slope value:" + slope);
    textArea.append("File output complete\n\n");
         else
    textArea.append("No data\n\n");
         // End by closing file
         fileOutput.close();
    Thank you so much!

    There's a lot of unnecessary code there, and anyway it isn't formatted in a readable way so I am not going to look too closely at it. But if you want to append to the file if it already exists and create the file if it doesn't, then all you need is this: fileOutput = new PrintWriter(new FileWriter(fileName_out, true));Note the "true" parameter there which (if you look in the API documentation) says that new data will be appended at the end of the file.

  • Need help --Generating tree

    Hi all,
    I have a Vector of length 4 in which there are two elements which comes exactly in the order below:
    A B
    1) Name ---------------------------- John
    2) Contact -------------------------Country
    3) Name-----------------------------David
    4) Contact---------------------------State
    Now I have to create a tree with nodes containing text of column "A" which should be distinct and these two nodes contains elements of Column "B" respectively...
    like,
    - Name -----John
    |_ _______David
    - Contact----Country
    |________State
    Can any one tell me how to do it and show me sample code if possible
    Thank You

    I assumed name and contact were related. Two lists would make sense too (as long as you don't need to match name to a contact). Or (just to belabor the point), why not use a Map that contains Lists for values?
    Map map = new HashMap();
    map.put("Name", new ArrayList("John", "David"));
    map.put("Contact", new ArrayList("Country", "State"));
    Again, none of this really addresses the real question - but we're still missing enough information to provide any feedback.

  • HELP! Need help generating TEXT-ONLY portal page...

    Text Only Portal Question:
    PLATFORM:
    =================================================================
    Sun Solaris (5.2 if memory serves) for db and mid-tier, running
    8.1.7 DB and 3.0.9 (1.0.2.2) portal.
    THE NEED:
    =================================================================
    I need to display text only portal pages. Some of the more
    detailed concerns at this point are below. Also, I've had an open
    tar on Metalink for about two weeks, and after research from
    their end has resulted in no help.
    THE ISSUES (so far):
    =================================================================
    IMAGES:
    If an anchor [A HREF=...] tag uses an image as it's "text", I
    need to strip out the ALT= text to show inside the anchor. If no
    ALT text is available, then I would like to show the image name
    as a default.
    For example:
    <img src=home.gif
    alt=Home>
    should display as:
    Home
    FORMS:
    How do I get the resulting page from a form (which include the
    login inputs and submit button, search box, advanced search page,
    etc.) to be displayed by the text only page?
    For example:
    When a form is called, the <FORM> elements are as follows:
    METHOD=GET or POST
    ACTION=url (relative or absolute) to the script.
    In this case, the action value is:
    ACTION=/servlet/page?
    pageid=6&dad=portal30&_schema=PORTAL30.
    This calls the advanced search API.
    I would expect that to redirect the browser back to some
    text-only version, the ACTION= element would have to be changed
    to be something like:
    ACTION=[pathscraper]?/servlet/page?
    pageid=6&dad=portal30&_schema=PORTAL30
    REDIRECTION:
    What happens when portal pages redirect internally? How do you
    get back to the text-only page?
    For example:
    The login link on the standard Oracle Portal home page flips
    from url to url to get to the actual login page. Our
    implementation of Oracle portal goes from
    [DOMAIN]/pls/portal30_sso/portal30_sso.wwsso_app_admin.ls_login
    to [domain]/pls/portal30_sso/portal30_sso.login_page.
    Since this is standard Oracle redirection, how can it be
    intercepted so the portal30_sso.login_page can be presented as
    text only?
    TRIED SO FAR:
    =================================================================
    I've written a socket/text scraper in Perl, running it from a web
    server. The problems mentioned above are really causing problems,
    plus the whole cookie thing. Since Oracle Portal tries to push a
    cookie to the client, when the client is another UNIX server,
    the cookie thing doesn't work.
    POSSIBLE OTHER SOLUTIONS:
    =================================================================
    Something...anything. I've tried to think of some method to
    create some sort of PL/SQL procedure to catch the content then
    strip out the HTML calls.
    An Applet to do the same thing, but on the client side, but
    since time is an issue, coding a complete Java applet isn't
    really an option.
    THE CONCLUSION:
    =================================================================
    HELP! I need some help. This is for a client that is government
    funded, and to meet Section 508 (part of the Americans with
    Disabilities Act that states web sites and applications must be
    made accessible. A text-only page is one of the requirements for
    an accessible page.
    Thanks,
    Ryan Stefani
    ps: feel free to contact me via [email protected] or
    [email protected]

    Use Find/Change and the GREP tab.
    Search for .+ and set the Find formatting to find the charcteristics you want.
    What will you do with this text once found? You'll need something to "change" to, either new text or Change Formatting options...

  • Need some help in saving video message from viber to my Iphone. I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery"

    Need some help in saving video message from viber to my Iphone 5S with new ios 8's program . I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery" thing but it doesn't save in gallery. I tried all, restarting my phone, rebooting then turning on the save automatically thing and when I watch it again, it still wouldn't save.

    Probably a good question to ask Viber or look at their support site.

  • Need some help in Rounding a double value to a whole number

    Hey Peeps,
    Need some help here, I got a method that returns a value in double after a series of calculation.
    I need to know how can I round the double value, so for example,
    1. if the value is 62222.22222222, it rounds to 62222 and
    2. if the value is 15555.555555, it rounds to 15556
    How can i do this
    Zub

    Hi Keerthi- Try this...
    1. if the value is 62222.22222222, it rounds to 62222 and
    double d = 62222.22222222;long l = (int)Math.round(d * 100); // truncatesd = l / 100.0;
    double d = 62222.22222222;
    System.out.println(d);
    long l = (int)Math.round(d * 100);
    // truncatesSystem.out.println(l);
    d = l / 100.0;System.out.println(d);
    for (int i = 0; i < 1000; i++)
    {    d -= 0.1;}
    for (int i = 0; i < 1000; i++)
    {    d += 0.1;}System.out.println(d);
    regards- Julie Bunavicz
    Output:
    62222.22222222
    62222
    62222.22
    62222.22000000000001

  • Urgent please- need help to retreive all values within a range

    Hi,
    I need to retreive all the values(ID) within a range no matter if it is available in the database or not. I just need this in a sql query not a stored proc.
    for ex:
    select id, name, age
    from employee
    where id between (1 and 10)
    It returns
    id name age
    1 x 22
    3 y 26
    4 z 23
    10 c 32
    I need a query which should return values as follows.
    id name age
    1 x 22
    2
    3 y 26
    4 z 23
    5
    6
    7
    8
    9
    10 c 32
    quick replies will be appreciated.

    This is one way of doing
    select decode(id,null,lev,id),name,age from employee,(select level lev from dual
    connect by level < 11)
    where employee.id(+)=lev
    The above will display between 1 and 10. If you want to specify some other range then the below query will do,
    select decode(id,null,lev,id),name,age from employee,(select level lev from dual
    connect by level <=10
    minus
    select level lev from dual
    connect by level <5)
    where employee.id(+)=lev
    The above query will display between 5 and 10

  • Cannot get slide show in full screen mode to come up on secondary monitor regardless of how I set up show it always opens on primary screen.  Need some help here.

    Slide show in PowerPosint for mac 2011 on iMac will not open full screen mode on secondary monitor.  Regardless of how I set the slide show preferences it always opens on primary monior with secondardy monitor having totally balck screen.  Need some help if anyone else has run into this problem.

    You should contact Microsoft for Mac Support  and/or post in their forums.

  • Need a help to generate online html code

    I need a help with html code. I my page user in the tet area inserting a plain text and i am using servlet put it to DB, but now we need to use not plane text. Need to use custom text like <font color=121245>hello</font> <font color=457898> nice day</font>

    but now we need to use not plane text.Who is we?
    Need to use custom text like <font color=121245>hello</font> <font color=457898> nice day</font>Have you tried anything yet?
    What aspect of this requirement is tripping you up?

  • Need Urgent Help: Solaris fails to come up after applying patch 120012-14

    Hello All,
    I really need urgent help , as I am in really big problem. Today I applied patches , the last patch I applied was 120012-14.
    After this I rebooted Solaris and it is not coming up now. It is giving me following error, it reboots again and again
    nel/misc/sparcv9/hook: undefined symbol 'netstack_unregister'
    WARNING: mod_load: cannot load module 'hook'
    /kernel/misc/sparcv9/hook: undefined symbol 'netstack_register'
    /kernel/misc/sparcv9/hook: undefined symbol 'netstack_unregister'
    WARNING: mod_load: cannot load module 'hook'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_register'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_event_remove'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_register'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_unregister'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_family_add'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_family_remove'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_unregister'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_find_by_stackid'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_event_add'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_rele'
    WARNING: mod_load: cannot load module 'neti'
    WARNING: neti: unable to resolve dependency, module 'misc/hook' not found
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_register'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip_config'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_impl'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_delete_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip'
    /kernel/drv/sparcv9/ip: undefined symbol 'hook_run'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_cred'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstackid_to_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_create_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_stackid'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_rele'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_hold'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_init'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_fini'
    WARNING: mod_load: cannot load module 'ip'
    WARNING: neti: unable to resolve dependency, module 'misc/hook' not found
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_register'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip_config'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_impl'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_delete_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip'
    /kernel/drv/sparcv9/ip: undefined symbol 'hook_run'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_cred'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstackid_to_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_create_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_stackid'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_rele'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_hold'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_init'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_fini'
    WARNING: mod_load: cannot load module 'ip'
    WARNING: ip: unable to resolve dependency, module 'misc/hook' not found
    strplumb: can't install module drv/ip, err -1
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'cons_tem_disable'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_inverses'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'consmode'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_hide_cursor'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_pos'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_term_font_size'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_size'
    WARNING: mod_load: cannot load module 'consconfig_dacf'
    /kernel/misc/sparcv9/consconfig: undefined symbol 'dynamic_console_config'
    WARNING: mod_load: cannot load module 'consconfig'
    WARNING: consconfig: unable to resolve dependency, module 'dacf/consconfig_dacf' not found
    panic[cpu3]/thread=180e000: mod_hold_stub: Couldn't load stub module misc/consconfig
    000000000180b890 genunix:mod_hold_stub+1f0 (0, 185fc00, 18acbf8, 60002cff370, 1817328, 0)
    %l0-3: 0000000001843b18 0000060003308000 0000000001811ce8 0000000000000000
    %l4-7: 0000000000000000 0000000000000064 ffffffffffffffff 0000000000000000
    000000000180b940 unix:stubs_common_code+30 (1f037ce7fb0, e164, 64000000, 0, 1ef800, 0)
    %l0-3: 000000000180b209 000000000180b2e1 000000337e000000 0000000000000001
    %l4-7: 0000000000000000 0000000001817338 0000000000000000 0000060002ccf6c0
    000000000180ba10 genunix:main+134 (18ad050, 18a8c00, 1836500, 1861800, 183b400, 1814000)
    %l0-3: 0000000070002000 0000000000000001 0000000000000000 0000000000000002
    %l4-7: 00000000018b0280 00000000018b0000 00000000018ad060 00000000018ad000
    syncing file systems... done
    skipping system dump - no dump device configured
    rebooting...
    Please help me what should I do. I have gone through all forums and mailing lists but couldnt find pin point solution.
    Thanks,
    Farhan
    Edited by: rozzx on Jul 5, 2008 1:48 AM

    Solve this. Patch just screwed the meta devices, changed vfstab in single user mod and it booted fine.

Maybe you are looking for

  • Vantagens Taxbra / CBT

    Prezados, boa tarde. Estamos fazendo um estudo para a implementação ou não de TAXBRA ao migrarmos de 46c para ECC6. Procurei documentação a respeito, e encontrei alguns dados interessantes mas não muito objetivos (não muito determinantes) sobre a dec

  • Saving the table content into one excel sheet

    Hello, I have got following problem: I'm measuring data with a DAQ card. I'm interested in the min and max value of the measured data. Therefore I'm using the Amplitude and Level measurent function. Its no problem to display the results in the graphi

  • How to transfer quicken data from a flash drive to quicken essentials

    How do I transfer my Quicken data from a flash drive to Quicken essentials with new Lion Os software?

  • Difference between oracle reports and oracle report writer

    I would like to know the diffrence between oracle reports and oracle report writer.I would appreciate if i get more details of oracle report writer. Thanks Rajesh

  • Principal of dual control

    Can someone explain me the principle of dual control in Change Request Management (with examples if possible!)? How does it connect to the activity "Make settings for change transaction types->Using the partner function" (Using the Partner Function Y