Providing dependency

Hi,
I have a working set up in system 1.
I created SWC with the same name as in system1 inside system 2 and created a dependency on SCM BASIS and then imported the SWC from SLD.
No problems found till this step as there SWC got imported to IR with Basis objects.
When I imported the IR objects of system1, it created a duplicate swcv with the same name and with the custom objects developped earlier ( and without a basis tab)
Ideally, it sohuld create the new objects ( name spaces ) under the swcv1 of test.com which is already imported from SLD after providing dependency to it. But it did not happen
Now I can see the SWC with duplicate swcv as follows:
SWC of test.com
swcv1 of test.com
>Basis objects
swcv1 of test.com
>custom dev objects ( imported from system 1)
Can someone please advice how to sync up this so that swcv1 of test.com will have both Basis objects and custom developped objects?
Thanks in advance.

Prateek,
These objects were given by our customer. I have asked for SLD imports but It would take some time to get SLD imports from them.
Meanwhile is there something that I can do to fix this?
I understood that it is not trying to relate the imported objects with the objects of SLD. Where can I check for the relation and how can I establish one?
Thanks,

Similar Messages

  • Trying to understand Provides Dependency type

    I am trying to understand the Provides dependency type. I have
    reviewed the online documentation, but I'm not quite there yet.
    I have a SQL script, with a create table statement, to create
    the CUST table. When I parse the SQL script, I think I should
    get a Provides dependency with a subtype of Created. However, I
    don't get any Provides dependency types.
    Am I missing a step? Do I need to create something else? Or
    have I completely missed the boat?
    Thanks!
    Vini

    Vandana,
    What you see is the way the Dependency Manager is designed to
    work. When you parse a file or object it looks for things it
    provides and things it uses.
    In the case of a ddl script with a create table statement the
    dependency tables will populated with provides dependencies for
    the table and the columns. If this is all you have parsed, and
    you use the dependency manager to show the dependencies for ddl
    file you will see no dependencies in the right hand side results
    pane. This is correct. In the left hand pane of the Dependency
    manager you expand the ddl file node you will see the table(s)
    created in the file. These are the provide dependencies.
    (As an aside, if you parse an Oracle Form and select the form in
    the Dependency manager left pane, you can expand the node and see
    all the blocks and items etc in the form. This is because the
    form "provides" all these "things" that maybe subclassed into
    other forms)
    If you subsequently parse other objects/files that use the table
    then you will see the dependencies between them in the right hand
    pane.
    The slightly confusing part is if you have modelled the table in
    Designer as well as stored the ddl that creates the table the
    dependency manager doesn't show dependencies between them. The
    product just treats these as two providers of the same table. So
    this means when look at, say a form that uses the table, the
    dependency manager will show that the for uses both file and
    modelled table.
    I hope this makes things clearer
    Regards
    mark

  • Default values for service provider in transaction TRIP

    Hello Gurus...
    We are implementing travel management and I have a problem... here's the scenario
    Tha gl account that should be used for a specific trip recepit depends on the following:
    The expense type
    The company specific type of trip
    The Employee grouping for Travel Management
    What we have done so far is :
    create a service provider for every combination of trip_type/employee_grouping
    create entries in V_T706B4 for every valid combination of expense_type/service_provider
    configure transfer to accounting
    With this configuration the gl account is determined correctly. However this way of solving the situation means that the user must enter the service provider for every recepit entered in the expense report. Given that in our particular scenario the service provider depends on data that has been already entered (type of trip) or that "the system should know" (employee grouping), users are not happy about having to enter the service provider.
    ¿Is there a way to assign default values to the service provider, and would it be possible to code/configure somewhere how to set those default values? I tried doing it through the trip schema, but apparently it is not possible to set a default service provider that way. I also tried setting the values in the user exit (b4 assigning trip number) but this doesn't work since the user exit is called after the standard validation. I also tried implementing subroutine USER_EVAL_RECEIPT, but this doesn't seem to work in transaction TRIP.
    Thanks in advance for any help you may provide!
    Juan Ramon

    Hello AP.
    Thogh your suggestion is helpful (I might use profile parameters somewhere else) thre is no parameter for the field I need. In any case It wouldn't have solved the issue completely, since the default value I need depends on both the employee(user) and the type of trip that's selected.

  • JMS Provider Responsibilities For Concurrent Message Delivery

    Hi,
    (This question pertains to the JMS api, outside a j2ee container)
    Is it JMS-provider dependent on how concurrent message delivery is implemented? In other words, the code below sets up multiple consumers (on a topic), each with their own unique session and MessageListener and then a separate producer (with its own session) sends a message to the topic and I observer that only (4) onMessage() calls can execute concurrently. When one onMessage() method exits, that same thread gets assigned to execute another onMessage().
    The only thing I could find on the matter in the spec was section in 4.4.15 Concurrent Message Delivery and it's pretty vague.
    It's really important because of the acknowledgment mode. If it turns out that I need to delegate the real work that would be done in the onMessage() to another thread that I must manage (create, pool, etc), then once the onMessage() method completes (i.e., after it does the delegation to another thread), the message is deemed successfully consumed and will not be re-delivered again (and that's a problem if the custom thread fails for any reason). Of course, this assumes I'm using AUTO_ACKNOWLEDGE as the acknowledgment mode (which seems to make sense since using CLIENT_ACKNOWLEDGE mode will automatically acknowledge the receipt of all messages that have been consumed by the corresponding session and that's not good).
    My JMS Provider is WL 9.1 and the trival sample code I'm using as my test follows below. I also show the ouput from running the example.
    thanks for any help or suggestions,
    mike
    --- begin TopicExample.java ---
    import java.io.*;
    import java.util.*;
    import javax.naming.*;
    import javax.jms.*;
    import javax.rmi.PortableRemoteObject;
    class TopicExample {
    public final static String JMS_PROVIDER_URL = "t3://localhost:8001";
    public final static String JNDI_FACTORY="weblogic.jndi.WLInitialContextFactory";
    public final static String JMS_FACTORY="CConFac";
    public final static String TOPIC="CTopic";
    public final static int NUM_CONSUMERS = 10;
    public static void main(String[] args) throws Exception {
    InitialContext ctx = getInitialContext(JMS_PROVIDER_URL);
    ConnectionFactory jmsFactory;
    Connection jmsConnection;
    Session jmsReaderSession[] = new Session[10];
    Session jmsWriterSession;
    TextMessage jmsMessage;
    Destination jmsDestination;
    MessageProducer jmsProducer;
    MessageConsumer jmsConsumer[] = new MessageConsumer[10];
    MessageListener ml;
    try
    // Create connection
    jmsFactory = (ConnectionFactory)
    PortableRemoteObject.narrow(ctx.lookup(JMS_FACTORY), ConnectionFactory.class);
    jmsConnection = jmsFactory.createConnection();
    // Obtain topic
    jmsDestination = (Destination) PortableRemoteObject.narrow(ctx.lookup(TOPIC), Destination.class);
    // Reader session and consumer
    for (int i=0; i<NUM_CONSUMERS; i++)
    jmsReaderSession[i] = jmsConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);
    jmsConsumer[i] = jmsReaderSession.createConsumer(jmsDestination);
    jmsConsumer[i].setMessageListener(
    new MessageListener()
    public void onMessage(Message msg) {
    try {
    String msgText;
    if (msg instanceof TextMessage) {
    msgText = ((TextMessage)msg).getText();
    } else {
    msgText = msg.toString();
    System.out.println("JMS Message Received: "+ msgText );
    System.out.println("press <return> to exit onMessage");
    char c = getChar();
    System.out.println("Exiting onMessage");
    } catch (JMSException jmse) {
    System.err.println("An exception occurred: "+jmse.getMessage());
    // Writer session and producer
    jmsWriterSession = jmsConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);
    jmsProducer = jmsWriterSession.createProducer(jmsDestination);
    jmsMessage = jmsWriterSession.createTextMessage();
    jmsMessage.setText("Hello World from Java!");
    jmsConnection.start();
    jmsProducer.send(jmsMessage);
    char c = '\u0000';
    while (!((c == 'q') || (c == 'Q'))) {
    System.out.println("type q then <return> to exit main");
    c = getChar();
    for (int i=0; i<NUM_CONSUMERS; i++)
    jmsReaderSession[i].close();
    jmsWriterSession.close();
    jmsConnection.close();
    System.out.println("INFO: Completed normally");
    } finally {
    protected static InitialContext getInitialContext(String url)
    throws NamingException
    Hashtable<String,String> env = new Hashtable<String,String>();
    env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
    env.put(Context.PROVIDER_URL, url);
    return new InitialContext(env);
    static public char getChar()
    char ch = '\u0000';
    try {
    ch = (char) System.in.read();
    System.out.flush();
    } catch (IOException i) {
    return ch;
    --- end code --
    Running the example:
    prompt>java TopicExample
    JMS Message Received: Hello World from Java!
    JMS Message Received: Hello World from Java!
    press <return> to exit onMessage
    press <return> to exit onMessage
    JMS Message Received: Hello World from Java!
    press <return> to exit onMessage
    JMS Message Received: Hello World from Java!
    press <return> to exit onMessage
    type q then <return> to exit main
    [you see, only 4 onMessage() calls execute concurrently. Now I press <return>]
    Exiting onMessage
    JMS Message Received: Hello World from Java!
    press <return> to exit onMessage
    [now once the thread executing the onMessage() completes, the JMS providor assigns it to execute another onMessage() until all 10 onMessage() exections complete).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I am too facing the same issue. but in my case I start getting this problem when the message size is about 1 MB itself.
    Any help is appraciated.
    Regards,
    ved

  • My iPod touch 5th generation won't turn on or charge and the home button is broken, how do I get it working?

    I've tried buying new chargers and plugging them into different outlets around the house but the iPod will not respond to anything.  The home button is broken so I can't reset the iPod by holding both the home and lock screen buttons down, and it won't even connect to iTunes when plugged into my computer.  How can I fix this issue? The iPod never overheated or anything, and it still had charge left before it quit responding.

    Unfortunately for you, the home button is necessary for reset and also to put the device into recovery mode or DFU mode. Since that is not working, and the device is not recognized in iTunes, check the charging port area. There could be dust, lint, etc, that is blocking the connection for charging, and connecting to iTunes. If nothing seems wrong there, then make an appointment at the Genius Bar of the nearest Apple Store or Authorized Apple Service provider, depending on your location. There is no other option.

  • Change item category of BOM component

    Hi,
    Our user wanted to change the item category for BOM components through transaction IB12 using LSMW.Wanted to confirm whether it is possible to change item categoryof BOM component from "N" to "L" through LSMW.What exactly will be effected because of this change?And the steps to change the item category from "N" to "L" for the list of BOM component using LSMW.
    Request your valuable thoughts.
    Thank you in advance,
    Regards,
    Rubina Rahman

    Hi Rubina,
    N is non stock item
    L is stock item
    You have to make sure why the business warants to chnage the item category.
    To answer the question:
    It is possible to chnage the item category from "N" to "L" through LSMW (Provided depends on the number of components used in a BOM. If the number of items exceeds to multiple screen, then you have to think of developing BDC)
    The effect will be: with item category "N" if the material is used in the order, based on the configuration the system shall automatically trigger the purchase requisition. With item category "L" it is assumed as stock is available and taken care by MRP program.
    Suppose if it is material BOM:
              A. Use T.code: CS02 in LSMW recording
              B.  Provide information like Material number, Plant, BOM usage
              C. In the item level change the item category from N to L
              D. Save the recording
              E. I hope you know the remaining LSMW process steps
    Cheers,
    Raj

  • Key figures with currency conversion showing weird values.

    Hi Experts,
    I have a variable screen,
    User can key in Target Currency, and Month.
    Say,
    (Scenario 1) User keys in Target Currency "MYR", and Month "4"
    The report will show
    Jan| Feb| March| April| May| June| ...
    2| 3| 5| 7| 0| 0| 0 ...
    This is correct.
    (Scenario 2) User keys in Target Currency "USD", and Month "4"
    The report will show
    Jan| Feb| March| April| May| June| ...
    2| 3| 5| 7| 3| 5| 7 ...
    This is wrong, should not show figures for month May and onwards.
    (Scenario 3) User keys in Target Currency "SGD", and Month "4"
    The report will show
    Jan| Feb| March| April| May| June| ...
    1| 2| 3| 4| 0| 0| 0 ...
    This is correct.
    *In the infoprovider, the key figure is tied to currency "MYR".
    In developement system, i replicated the exchange rate table, and the problem (Scenario 2) is solved.
    In test system, i replicated the exchange rate table, and the problem (Scenario 2) is still there.
    I am not sure what is happening here.
    Please could you please kindly advise.
    Thanks.
    Tee

    There appear to be two factors happening here.. one is how you have your query restrictions set up, and the other is the currency translation method that you are using. What results a currency translation provides depends on both the translation key definition AND the availability of a valid currency translation for the appropriate period.
    First, review transaction RSCUR and see how your currency translation is defined.
    Then review transaction oB08 and see if there is a valid currency conversion factor during the affected time.
    Once you're certain all that is correct, review your query and how it is functioning. The fact that you wish to display months for which you do not wish to return data seems to indicate your 0CALMONTH2 restriction is not set up properly.

  • Async/Sync Communication using JMS adapter without BPM

    Hello ,
    Pls suggest how Async/Sync Communication using JMS adapter without BPM .
    In my scenario I have JMS Sender and then RFC/JDBC as Sync and then again JMS receiver
    Pls explain  the concept of
    JMSMessageID and JMSCorrelationID  and how to use it by an example.
    Regards

    Hi,
    If you have selected JMSMessageID, JMSCorrelationID, or JMSProperty and entered a JMS message ID in these fields, you should see the Remove 'ID:' Marker from JMSMessageIDindicator. Set the indicator.
    This is necessary because the JMS specification stipulates that each JMS message ID starts with 'ID'. However, this conflicts with ISO-11578.
    - JMSMessageID (Uniqueness Is JMS-Provider-Dependent)
    (String) The unique message ID. Note that this is not a required field and can be null. Since the JMS provider might not use your provided message ID, the Connector sets a special property called $jms.messageid after sending a message. This is to insure that the message ID always is available to the user. To retrieve this value use conn.getProperty("$jms.messageid") in your After Add hook.
    - JMSCorrelationID (Uniqueness Is JMS-Sender-Dependent)
    (String) This header is set by the application for use by other applications.
    Hope this will help you.
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Chat problem nokia c3-00

    Hello my name is Emil and I have a nokia c3-00.i have a problem with my chat it appears a error can someone help me

    Chat is service provider dependent, check your provider if the service is available to you.
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

  • Searching messages in XI according to MQSeries message id

    Hey guys,
    We are using the following scenario: MQSeries -> XI -> SAP IDOC,
    we find it a little difficult to find messages in XI according to the message ID
    of the MQSeries (the MQSeries message id is diffrent from xi message id).
    the MQSeries message Id can only be displayed in the RWB,
    but can not be filtered by.
    the only word-around we find untill now it to select from the JAVA table XI_AF_MSG_AUDIT (which contains the adapter information as displayed in RWB)
    Is there any normal way to do this (from gui of abap/j2ee)?

    I can use the RWB to correlate with SXMB_MONI,
    but I can not filter in RWB or in SXMB_MONI according to MQSeries message id (MQ message ID is differ from XI message ID).
    I already checked the channel parameters (addition JMS parameters),
    the only paramter that is relevant in the channel is relavant is:
    <u>Set XI Message ID (MessageID) To</u>:
    &#9675;       GUID (Recommended Value)
    &#9675;       JMSMessageID (Uniqueness Is JMS-Provider-Dependent)
    &#9675;       JMSCorrelationID (Uniqueness Is JMS-Sender-Dependent)
    &#9675;       JMSProperty (Uniqueness Is JMS-Sender-Dependent)
    however, this does not work if the target system receives async message (like IDOC) as described in:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5059f110-0d01-0010-7c8b-fdc983be70c0
    (this can be compare to searching a message of the scenario: FILE->XI->SAP IDOC, according to the file name, the file name can be displayed in the RWB, but it can not be filtered by, and SXMB_MONI doesn't display the file name at all)
    any other suggestions?

  • Unable to join network

    Hi everyone
    Please help me
    I can`t connect to wi-fi at all
    I haven`t used it for about 2 months now i found out it won`t connect to ANY network
    I`ve tryed it all, restore as new, reset ect
    And i`m very busy that i can`t make it to Apple store
    Please someone help me
    Thanks a lot in advance

    Hi, you can try these links instead:
    Configuring the router according to your Internet Service Provider
    Depending on your Internet Service Provider (ISP), there are configuration settings that your router needs to have in order to connect to the Internet.  The topics below talk about the steps you should follow when setting up your router according to your ISP.
    Wireless-G and Wi-Fi Routers
    Setting up a Linksys router with Cable Internet service
    Setting up a Linksys router for DSL Internet connection
    Setting up a router with a Static IP account
    Configuring the wireless settings of your router
    The links listed below will help you do the following:
    How to set up your wireless network
    How to access the setup page of your router
    How to set up the wireless security
    How to check or change the Username and Password of your router
    Wi-Fi Routers only
    Configuring the Wireless Security of your Linksys Wi-Fi Router through Cisco Connect
    Changing the wireless network name and password using Cisco Connect on a Linksys Wi-Fi Router
    Configuring the wireless security of your Linksys Wi-Fi Router through the web-based setup page
    Checking Linksys Wi-Fi Router's name and password in Cisco Connect
    P.S.:http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=83217d7598ad44d68d9cc60f1cea9887_Different_ways_in...

  • Common video dimensions and bit rates for dynamic streaming?

    I'm going to be converting my videos to flv and am trying to decide what to use for video dimensions and bit rates.  Some of my users have slow computers and connections so I'm thinking 150 on the low end. 
    Is there a common practice?  What has worked well for you in the past?

    Hello MrWizzer
    I am not sure what FMS version you are currently using.
    Well, if you look at the sampe vod folder that ships with FMS4.5, it has files encoded @ 150kbps, 500 kbps, 700 kbps, 1000 kbps, 1500 kbps.
    I am sure that all of these files stream perfectly fine given the correct bandwidth environment.
    Its totally depend upon the FMS hosting service provider depending upon the user base of a particular provider.
    You need to judge what kind of BW is available to your viewers and put the files encoded at appropriate bitrates.
    You may also look at http://www.adobe.com/devnet/flashmediaserver/articles/beginning-fms45-pt06.html for refrences.
    Regards,
    Shiraz Anwar

  • Oracle RAC and Standards

    Does anyone know if Oracle RAC is part of any emerging Grid standards?

    Hi Eric
    Isn't RAC a middle to reach the grid computing goals ?
    “A computational grid is a hardware and software infrastructure that provides dependable, consistent, pervasive, and inexpensive access to high-end computational capabilities.” by Carl Kesselman and Ian Foster in “The Grid: Blueprint for a New Computing Infrastructure,”

  • What I did not like in 5800

    Dear All
    I am 30 years old Engineer, I have been using SonnyErricson P900 for 3 years Which is one of the nice touch screen mobile. Afterwards it broke done and not working any more, I decieded to move back to Nokia 5800 touch screen, Espicically it came wil Sembian system (the same system I used before)
    Now after few days of using I am completely dissappointed : because of the following:
    1- there are no qiuck shortcut in the destop of the mobile like sound, network, battrery, all we can see but we can't go inside (the sound not available at all)
    2- there are not qiuck button to go back to the desktop, I have to keep pressing back several time to arrive to the point.
    3- the customization of the phone is too difficult and can't done in one step, I have to run everywhere to get the phone as the shape I want, In addition the phone is poor in programs which should be already installed.
    4- the stylus design is nice but it should be inseted in one direction only cuz it is not rount but has angle.
    5- there are not enough number of shortcut that could be set up to the destop (only 4) and no one told me that I can add more.
    6- when the phone not working there are no save screen that shows the clock as example, It goes completlly black, which I considered not friendly ( I used to use my mobile as watch) and I didn't find any screen saver application.I
     7- for the camera and other music stuff I am not too interesed but I was old that I can download music from nokia for free, I didn't try it.
     8- when I navigate the internet I couldn't see the home page button and couldn't see the scroll bar, I don't know if they do it in purpos
    9- is there any nice theme for this mobile or only the ugly black one.
    I am not against Nokia and not supporting any other company but it this mobile dissappointed  me. It is in general nice phone but not practical for hardworking preson who need to arrive qiuckly to his point, but I have to go through several menue to do one job.
    Regards

    1- there are no qiuck shortcut in the destop of the mobile like sound, network, battrery, all we can see but we can't go inside (the sound not available at all)
    If you change the phone's home screen theme to "shortcuts" instead of the default "contacts" then you can add up to 4 shortcuts onto the home screen.  Not quite what you want (I assume you're thinking more along the lines of android where you can drag just about anything onto the homescreen), but better than nothing. 
    2- there are not qiuck button to go back to the desktop, I have to keep pressing back several time to arrive to the point.
     Just press the red "end call" button and you get taken straight back to the home screen.
    3- the customization of the phone is too difficult and can't done in one step, I have to run everywhere to get the phone as the shape I want, In addition the phone is poor in programs which should be already installed.
     I guess this might be region and/or network provider dependant.  My 5800XM on UK Vodafone came preinstalled with quite a wide variety of applications.  What wasn't there I could download and install easily.
    4- the stylus design is nice but it should be inseted in one direction only cuz it is not rount but has angle.
    Agreed, it's also a little flimsy. Having said that though, the number of times I've actually used the stylus I could probably count on one hand
    5- there are not enough number of shortcut that could be set up to the destop (only 4) and no one told me that I can add more.
     Personally I quite like the idea of the home screen being kept quite clean so the restriction to 4 doesn't bother me, but I guess that's a personal thing.
    6- when the phone not working there are no save screen that shows the clock as example, It goes completlly black, which I considered not friendly ( I used to use my mobile as watch) and I didn't find any screen saver application.
    You either have a blank screen and long(er) battery life or a screen with a clock/saver and shorter battery life I guess. 
     7- for the camera and other music stuff I am not too interesed but I was old that I can download music from nokia for free, I didn't try it.
    The version of the 5800XM with the "comes with music" package hasn't been released yet as far as I know.  At least not in the UK.  It's worth noting that the "comes with music" edition of the phone will cost more than the standard version, since obviously Nokia have to recoup the cost of the license agreements with the media companies from somewhere :-)
     8- when I navigate the internet I couldn't see the home page button and couldn't see the scroll bar, I don't know if they do it in purpose
     The home page button is in the little window that opens up when you press the "3 lines" option button while surfing.  It won't appear unless you've actually set a homepage of course.  The scroll bar doesn't appear since it's a touch screen, you don't need the scroll bar, just drag the screen up/down/left/right with your finger.
    9- is there any nice theme for this mobile or only the ugly black one.
     Haven't looked.

  • How to replace JMS Msg id with My own customer ID??

    Hi Frnds,
    I am working one one scenario using JMS Adapter, when i am placing message in Quese,JMS adapter genarating MSG msg id,but i ahve to add my own id its custiomer specific,how to replace JMS Msg id??
    thanks,
    Raj

    Hi,
    found this in SAP help:
    Correlation Settings
    Define which algorithm is to be used to create the message ID of a new XI message. The prerequisite for selecting an ID is that it is a GUID (globally unique identifier) according to ISO-11578.
    If the message ID is not a GUID, message processing will fail. This can cause message duplicates if the ID is not unique. Furthermore, if the GUID does not conform to ISO-11578, this can trigger a GUIDFormatException.
    Set XI Message ID (MessageID) To:
    -         GUID (Recommended Value)
    -         JMSMessageID (Uniqueness Is JMS-Provider-Dependent)
    -         JMSCorrelationID (Uniqueness Is JMS-Sender-Dependent)
    -         JMSProperty (Uniqueness Is JMS-Sender-Dependent)
    Enter the JMS Property Name. This value is set for the XI message ID.
    If the JMSCorrelationID or JMSProperty are not set in the JMS message, a message ID is generated automatically.
    If you have selected JMSMessageID, JMSCorrelationID, or JMSProperty and entered a JMS message ID in these fields, you should see the Remove 'ID:' Marker from JMSMessageIDindicator. Set the indicator.
    This is necessary because the JMS specification stipulates that each JMS message ID starts with 'ID'. However, this conflicts with ISO-11578.
    Set XI Conversation ID (ConversationID) To:
    -         No value
    If you choose this setting, the XI conversation ID is not set.
    -         JMSMessageID (Uniqueness Is JMS-Provider-Dependent)
    -         JMSCorrelationID (Uniqueness Is JMS-Sender-Dependent)
    -         JMSProperty (Uniqueness Is JMS-Sender-Dependent)
    Enter the JMS Property Name. This value is set for the XI message ID.
    -         Stored JMSCorrelationId of request
    The saved JMSCorrelationID of the request is used.

Maybe you are looking for