One question about ROS ()

HI,my experts:
   I work in SRM7.0 .I have 2 clients  in my system .Client 100 -EBP ;Client 200-ROS (SUS). The both clients are on the same server .
   Now ,1、I have create new ORG. in ROS Client ,and create user who is also in the EBP client.
             2、I change the role "SAP_BBP_STAL_STRAT_PURCHASER"  ,"ROS_PRESCREEN" and sap-client  200;
             3、spro --Define External Web Services  
  Now ,the question is :after submiting  the questionnaire by the vendor  ,the static purchaser can not find none data by "Pre-select Supplier" under the "Central Functions".
    Some useful link about ROS
  BR !
Alex!

Hi,khan:
  Thanks for your reply .
    I want to use the link .But I can find nothing after clicking the button .It should be the list of registered vedor in the SUS system ,isn't it?
    thanks !
   BR!
  Alex!

Similar Messages

  • One question about Pricing and Conditions puzzle me for a long time!

    One question about Pricing and Conditions puzzle me for a long time.I take one example to explain my question:
    1-First,my sale order use pricing procedure RVAA01.
    2-Next,the pricing procedure RVAA01 have some condition type,such as EK01(Actual Costs),PR00(Price)....,and so on.
    3-Next,the condition type PR00 define the Access Sequences PR00 as it's Access Sequences.
    4-Next,the Access Sequences PR00 have some Condition tables,such as:
         table 118 : "Empties" Prices (Material-Dependent)
         table 5 : Customer/Material
         table 6 : Price List Type/Currency/Material
         table 4 : Material
    5-Next,I need to maintain Condition tables's Records.Such as the table 5(Customer/Material).I guess the sap would supply one screen for me to input the data of table 5.At this screen,the sap would ask me to select one table,such as table 5.When I select the table 5,the sap would go to the screen to let me input the data of table 5.But when I use the T-CODE VK31 or VK32 to maintain Condition tables's Record,I found it's total different from my guess:
    A-First,I can not found one place for me to open the table,such as table 5,to let me input the data?
    B-Second,For example,when I select the VK31->Discounts/Surcharges->By Customer/Material,the sap show the grid view at the right side.At the each line of the grid view,you need to select the Condition Type at the first field.And this make me confused very much.Why the sap need me to select one Condition Type but not the Condition table?To the normal logic,it ought not to select Condition table but not the Condition Type!
    Dear all,I'm a new one in sd.May be this is a very stupid question.But it did puzzle me for a long time.If any one can  explain this question in detail and let me understand the concept,I will appreciate him/her very much.Thank you.

    Hi,
    You said that you are using the T.codes VK31 or VK32.
    These transaction codes are used to enter condition records for standard condition types. As you can see a grid left side having all the standard condition types like price, discounts, taxes, frieghts.
    Pl check using T.code VK11 OR VK12 (change mode)
    Here you can enter the required condition type, in the intial screen. (like PR00, MWST, K004, K005 .....etc)
    After giving the condition type, press enter or click on Combinations icon on top of the screen. Then you can see all the condition tables which you maintained for that condition type. Like as you said table 118, table 5, table 6 and table 4.
    You can select any table and press enter, then you can go into the screen in which you have all the field cataglogues you maintained for that table. For example you selected combination of Customer/Material (table 5) then after you press enter then you can see customer field on top, and material fields.
    You can give all the required values and save the conditon record.
    Hope this is clear.
    REWARD IF HELPFUL.
    Regards,
    praveen

  • Another one question about how to download applet (not using external tool)

    Hi
    i write tool for downloading applet on card. I use apdu trace from NXP eclipse plugin as source of information and i read also about cap-file format in Java Card Virtual Machine specification. And i have questions about data transferred by LOAD command.
    As example - from apdu trace i see that transferred data are "C4820E33 DATA1 DATA2". Full length of transferred data is 0x2EE2.
    C4 - OK, this is "Load File Data Block" tag as specified in Global Platform
    820E33 - OK, this length of tag, =0x0E33
    DATA1 - sequence of cap-file components: Header.cap, Directory.cap, Import.cap, Applet.cap, Class.cap, Method.cap, StaticField.cap, ConstantPool.cap, RefLocation.cap. Length of DATA1 is 0x0E33, i.e. DATA1 = 'C4'-tag value.
    DATA2 - sequence of two cap-file components: Descriptor.cap and Debug.cap. These components are out of 'C4'-tag.
    the questions mentioned above... here they are:
    1. Global Platform does not define any data in LOAD command except 'E2' and 'C4' tag. Why DATA2 is transferred out of any tags?
    2. Whether the sequence of cap-file components is important? i.e. Can i load Header.cap, Directory.cap etc. in other order than i see in DATA1 field from apdu-trace?
    3. Debug.cap seems to be optional component. And what about Descriptor.cap component? Need i load it on card?

    666 wrote:
    1. Global Platform does not define any data in LOAD command except 'E2' and 'C4' tag. Why DATA2 is transferred out of any tags?Because the components are either optional or only required when communicating with a JCRE that has debugging capabilities. I assume you ran the project in JCOP Tools in debug mode against the simulator? If you did this against a real card it would fail as it does not have an instrumented JCRE capable of debugging code. You could try running the project as opposed to debugging to see the difference.
    2. Whether the sequence of cap-file components is important? i.e. Can i load Header.cap, Directory.cap etc. in other order than i see in DATA1 field from apdu-trace?Yes it is. It is defined in the JCVM specification available from the Oracle website.
    3. Debug.cap seems to be optional component. And what about Descriptor.cap component? Need i load it on card?No, it is optional and is not referenced by any other CAP file component.
    Cheers,
    Shane

  • One question about Selection screen

    Hi experts,
    I am writing a report, on the selection screen, I need to input the file path and then do the file upload.
    My question is about how to check the file path I put is correct or not? If it is incorrect, I want to get a message and the cursor still in the field and don't jump to the next page.
    How can I do like that?
    Any one has any suggestion, please help me.
    Thanks in advance.
    Regards,
    Chris Gu

    Hi Chris,
        do it this way: check my code after calling gui_upload what condition i am using.
    parameters:
      p_file type rlgrap-filename.          " File name
    *           AT SELECTION-SCREEN ON VALUE-REQUEST EVENT               
    at selection-screen on value-request for p_file.
      perform get_file_name.
    *                       AT SELECTION-SCREEN EVENT                    
    at selection-screen on p_file.
      perform validate_upload_file.
    *  Form  GET_FILE_NAME                                               
    form get_file_name.
      call function 'F4_FILENAME'
       exporting
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
         field_name          = ' '
       importing
         file_name           = p_file.
    endform.                               " GET_FILE_NAME
    *  Form  VALIDATE_UPLOAD_FILE                                        
    form validate_upload_file.
      data:
        lw_file  type string.              " File Path
      lw_file = p_file.
      call function 'GUI_UPLOAD'
        exporting
          filename                    = lw_file
          filetype                    = 'ASC'
          has_field_separator         = 'X'
          dat_mode                    = 'X'
        tables
          data_tab                    = t_final_data.
      IF sy-subrc ne 0 and t_final_data is initial. " here message if file path is wrong
        Message 'File not found' type 'E'.
      ELSEIF sy-subrc eq 0 and t_final_data is initial.
        Message 'File empty' type 'E'.
      ENDIF.                              
    endform.                               " VALIDATE_UPLOAD_FILE
    With luck,
    Pritam.
    Edited by: Pritam Ghosh on May 8, 2009 8:57 AM

  • One question about lcds2.5 link with java

    when i am creating a custom Message Service adapter,found a
    question with rewriting invoke() method.
    java class :
    package test;
    import flex.messaging.services.ServiceAdapter;
    import flex.messaging.services.MessageService;
    import flex.messaging.messages.Message;
    public class TestAdapter extends ServiceAdapter {
    public Object invoke(Message message) {
    MessageService msgService = (MessageService)service;
    msgService.pushMessageToClients(message, true);
    msgService.sendPushMessageFromPeer(message, true);
    return null;
    error:
    service can not resolved about MessageService msgService =
    (MessageService)service;
    please tell me a method :how to write this TestAdapter class.

    ths, i can success.
    but one error occur when i send message from java class to
    lcds2.5 service.
    i tranfer this IMessageUtil interface's setMessage method,set
    param as "test",but no value in mxml file's mx:Consumer .
    my message-config.xml is correct.
    message-config.xml:
    <adapter-definition id="fdschathandler" class="test"/>
    <destination id="fdschat">
    <properties>
    <network>
    <session-timeout>0</session-timeout>
    </network>
    <server>
    <max-cache-size>1000</max-cache-size>
    <message-time-to-live>0</message-time-to-live>
    <durable>false</durable>
    </server>
    </properties>
    <channels>
    <channel ref="my-rtmp"/>
    </channels>
    <adapter ref="fdschathandler"/>
    </destination>
    java class:
    package test;
    import flex.messaging.MessageBroker;
    import flex.messaging.MessageException;
    import flex.messaging.messages.AsyncMessage;
    import flex.messaging.messages.Message;
    import flex.messaging.services.MessageService;
    import flex.messaging.services.ServiceAdapter;
    public class MessageUtil extends ServiceAdapter implements
    IMessageUtil {
    public Object invoke(Message message) {
    try{
    MessageBroker broker = MessageBroker.getMessageBroker(null);
    MessageService msgService = (MessageService)
    broker.getService("message-service");
    msgService.pushMessageToClients(message, true);
    msgService.sendPushMessageFromPeer(message, true);
    return null;
    }catch(MessageException ff){
    System.out.println("fff:="+ff.getErrorMessage());
    catch(Exception e){
    e.printStackTrace();
    return message;
    public void setMessage(String mess) {
    try{
    AsyncMessage message=new AsyncMessage();
    message.setDestination("fdschat");
    message.setBody(mess);
    this.invoke(message);
    }catch(Exception e){
    e.printStackTrace();
    mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="consumer.subscribe()">
    <mx:Script>
    <![CDATA[
    import mx.messaging.events.MessageEvent;
    import mx.messaging.messages.AsyncMessage;
    import mx.messaging.messages.IMessage;
    private function send():void
    var message:AsyncMessage = new AsyncMessage();
    message.body = msg.text;
    producer.send(message);
    msg.text = "";
    private function messageHandler(message:MessageEvent):void
    var msg:AsyncMessage = AsyncMessage( message.message );
    log.text += msg.body + "\n";
    ]]>
    </mx:Script>
    <mx:Producer id="producer" destination="fdschat"/>
    <mx:Consumer id="consumer" destination="fdschat"
    message="messageHandler(event)"/>
    <mx:Panel title="Chat" width="100%" height="100%">
    <mx:TextArea id="log" width="100%" height="100%"/>
    <mx:ControlBar>
    <mx:TextInput id="msg" width="100%" enter="send()"/>
    <mx:Button label="Send" click="send()"/>
    </mx:ControlBar>
    </mx:Panel>
    </mx:Application>

  • One question about arch linux 2009.02 and ext4

    hi,
    i want to download newest arch linux version. i heard i can select file system type as ext4, that sounds cool, because i really want ext4. anyway i heard that you need grub2 to properly boot ext4 arch system. so is grub2 will be included in arch linux 09.02? because my root partition is going to be in ext4 file system. thanks for help

    syms wrote:
    skottish wrote:
    syms wrote:Thanks for help. i have one more question - how much ext4 seems faster than ext3? i mean do you feel that ext4 is faster than ext3 in most cases? thanks.
    I've never done any benchmarks, but I can tell you that file system checks are many, many times faster.
    I do have a warning though, and it can be confirmed by others in this forum: ext4 does not crash gracefully right now. If you're on an unstable system, crashing can cause the loss of at least configuration files. My workstation is rock solid, so I've never seen any issues. Another computer that I was working on was having crashes due to an older Intel card with the newer xorg, and configuration files were being killed all over the place.
    Thanks. another thing is that about application start up. for example for me firefox starts in 4 seconds, when i close ff and try to run it again, it opens in about 1 second. what it would with ext4 system? maybe it would launch in 2 seconds at first start?
    It's hard to guess like that, but it's bound to be the same or faster. You're not losing anything going ext4 and it is a faster filesystem in general.

  • One question about posting periods

    When creating or changing (T-CODE VL02N ) an outbound delivery, I select Edit -> Post goods issue on one of the overview screens.But the sap show the error message:"posting only possible in periods 2000/01 and 0000/00 in company code HJW1".So my question was how to config to let the posting possible in other periods,such as 2007/09?Thank you.

    hi gg,
    follow the steps, if u are working on IDES client then follow this
    1. In spro-> enterprises strusture-> remove all plants assigned to your company code
    2. tcode: omsy> enter fiscal year-2007 & period:09>save
    3.Again In spro-> enterprises strusture-> assign all plants to your company code
    regards,
    Arunprasad

  • One question about the MouseListener and Copy function.

    Hola,
    I want my program to activate a method when the user press left mouse button, but in other window, in other program. I can make it with the Listener, but only when the window of my java program is active. I want to my program to listen for pressing a mouse in other window. And my second question is that I want to make the function like copy - the same, if I am in other window. For example if I have marked one fail to generate copy to the clipboard. Is that possible.
    Thanks.

    Tersit wrote:
    I want my program to activate a method when the user press left mouse button, but in other window, in other program. I can make it with the Listener, but only when the window of my java program is active. I want to my program to listen for pressing a mouse in other window. Your best bet to listen for activities in other non-Java programs is to use a programming language that gets closer to the OS such as C/C++.
    And my second question is that I want to make the function like copy - the same, if I am in other window. For example if I have marked one fail to generate copy to the clipboard. Is that possible.I'm not clear on this. What do you mean by "marked one fail"?

  • HI,I want to ask one question about SRP 521W

       I have one SRP 521W router, It is slow when I configure it,And the memory  utilized very high(94%),but the CPU is nice.
       I was upgraded the last release firmware,The memory utilization keep in 78%,But I am still feeling it slowly when I configured it,How can I fix or correct configure it,Can to reduce the memory utilization.    I have one SRP 521W router, It is slow when I configure it,And the memory  utilized very high(94%),but the CPU is nice.
       I was upgraded the last release firmware,The memory utilization keep in 78%,But I am still feeling it slowly when I configured it,How can I fix or correct configure it,Can to reduce the memory utilization.

    Dear Shipeng,
    Thank you for reaching Small Business Support Community.
    Since the firmware upgrade did not fix the problem, you can try disabling some by default enabled services that you may not need; things like:
    Administration > Remote Management > SNMP and Local TFTP.
    Network Setup > UPnP
    Administration > Log
    Network Setup > Firewall > Firewall Filter
    If no Internet Protocol Television (IPTV), Network Setup > IGMP
    You may also check on the Internet Access Control entries to get rid of any not needed entries.  Please check these out and let me know if there is any further assistance I can help you with.
    Kind regards,
    Jeffrey Rodriguez S. .:|:.:|:.
    Cisco Customer Support Engineer
    *Please rate the Post so other will know when an answer has been found.

  • One question about pricing and condition in sd.

    Dear all.I have created two material m001 and m002.In the sale order,if the customer buy 10 m001 and 5 m002, I want the price of the 5 m002 will have 60% discount.Some one tell me "you can use the BOM to realize it".But I don't know how to do or whether there are other way to realize it.Is there any one could give me some reference or advice in detail to resolve this problem?I will appreciate him/her very much.Thank you.

    hi
    Bonus buy is a functionality we use to give more than one material at a different rate than what we normally give them when they are sold together. Like if A is 15/- and B is 20/- when sold individually but when sold together, we can sell them at say 30/- which is at a reduced price.
    Configuration follows the same condition technique where we create a condition table, an access sequence , a condition type, a pricing schema and activate that schema by assigning it to the required combination of sales area, cust pric proc, doc pric proc. After which finally, maintain the records using transaction code VBK1. Here give the conditon type for which you want to maintain the condition records with proper selection of materials required to be sold as a combo deal.
    bonus buy

  • One question about ThreadPoolExecutor.

    How do I switch between multithreaded execution or single threaded execution at runtime?
    The code is a Runnable object that can be executed by ThreadPoolExecutor or ExecutorService. I can create a threadpool with only one thread (like newFixedThreadPool(1)) and let it handle all the Runnable tasks submitted.
    However, can I modify the number of threads in the threadpool after the program starts? The ThreadPoolExecutor documentation lists various ways to control pool size but they are API methods and not how to do this switch at runtime.
    I have a simple SWING interface with one button that control the switch "Multithreaded Run", click and swith the program from single-threaded execution to multithread execution, but I am stucked here.
    Does anyone know how?
    Any suggestion is deeply appreciated.

    leoku wrote:
    However, can I modify the number of threads in the threadpool after the program starts? The ThreadPoolExecutor documentation lists various ways to control pool size but they are API methods and not how to do this switch at runtime.API methods? What do you mean by that? All methods in the javadoc are API methods
    Edited by: Kaj on 2010-sep-26 22:12

  • I hava one question about deployment

    Hi friend
    Can I deploy ejb by using command line,not deploytool?
    How I can do this?
    bye

    Hai can you tell me how to deploy using deployment tool.First i want to know about how to create deploymentdescripter using/without using deployment wizard.I am using weblogic server6.1.
    kindly help
    srinivask

  • One question about Regular Expression!!!

    I need to creat such a regular expression to match the format "[ ][ ][ ]".
    For example, there is a context,
    (1), " The project manager defines [1][0.400][+goals] for iterations."
    Suppose that there are some spaces or "\n" characters in this way,
    (2), " The project manager defines [    1 ] [  0.400   ]
    [   +goals] for iterations."
    If the pattern match the format succefully, (2) strings should be replaced by (1)strings, in order words, the format of (1) is what I need finally,
    I had ever tried creating a regular expression likes \\[([^\n\s]]+)\\]\\[([^\n\s]]+)\\]\\[([^\n\s]]+)\\] , but it does not work well!
    DO YOU HOW TO IMPLEMENT IT IN JAVA?
    Thanks for your any reply!

    What I really need is that, via the regular
    expression, all the spaces and \n characters in
    square brackets [ and ], ] and [, will be thrown
    away.
    For example,
    Original:
    1) "The project manager defines [   1  ] [
    0.400 ]
    [   +goals] for iterations with the support"
    After matching:
    2) "The project manager defines [1][0.400][ [+goals]
    for iterations with the support"
    String 2) is what I need finally!
    Thanks for your any reply!Well I gave you the answer to that one already :-)
    If you need to preserve the spaces in between words use this one. I'm sure there's a better way to do it, I'm no RegEx master.
        public static void main(String[] args)
            String s = "[ 1 ] [ 0.400 ]\n[ +go als]";
            System.out.println( "Before: " + s );
            System.out.println( "\n\n" );
            s = s.replaceAll( "\\[\\s+", "[" );
            s = s.replaceAll( "\\s+\\]", "]" );
            s = s.replaceAll( "\\]\\s+\\[", "][" );
            System.out.println( "After: " + s );
        }

  • One question about " reconciliation account in company code "

    In t-code AO90,I select chart of account->account determ->balance sheet accounts,and input G/L Acct 4101 in the field of "Acquisition :Acquis. and production costs".But the sap give an error "Account 4101 not yet defined as reconciliation account in company code ".And I use the t-code FS00 to maintain the Account 4101 but can not find the field about "reconciliation".So need some reference or advice.Thanks so much.

    hi melody,
    FS00 > Control data > open item management (must be checked for recon accounts)
    but if you have already posted with this account is not possible to make it as recon account, if is the case, you must delete it and create a new account (open item management checked) and report the postings from the first to new account.
    hope this helps
    assign points if useful
    regards

  • One question about how to use JFrame

    Hello friends,
    I use a JFrame to show one webpage, I want to follow a link in this page by a new window, but when I used it, I find, each time I create a new window to follow a link, the old window will be nothing, what should I do?
    Thanks in advance!
    See the following codes:
    import javax.swing.text.*;
    import javax.swing.*;
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    public class SimpleWebBrowser {
    public static void main(String[] args) {
    // get the first URL
    String initialPage = "http://www.yahoo.com";
    if (args.length > 0) initialPage = args[0];
    // set up the editor pane
    JEditorPane jep = new JEditorPane();
    jep.setEditable(false);
    jep.addHyperlinkListener(new LinkFollower(jep));
    try {
    jep.setPage(initialPage);
    catch (IOException e) {
    System.err.println("Usage: java SimpleWebBrowser url");
    System.err.println(e);
    System.exit(-1);
    // set up the window
    JScrollPane scrollPane = new JScrollPane(jep);
    JFrame f = new JFrame("Simple Web Browser");
    f.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    f.getContentPane().add(scrollPane);
    f.setSize(512, 342);
    f.show();
    import javax.swing.*;
    import javax.swing.event.*;
    public class LinkFollower implements HyperlinkListener {
    private JEditorPane pane;
    private JScrollPane window;
    public LinkFollower(JEditorPane pane) {      
    this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt) {
    if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
    try {
         pane.setPage(evt.getURL());
         window = new JScrollPane(pane);
         JFrame.setDefaultLookAndFeelDecorated(true);
    JFrame t = new JFrame();
    t.getContentPane().add(window);
         t.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    t.setSize(800, 600);
    t.show();
    catch (Exception e) {       

    the old window will be nothingBecause you abandon the old frame.
    Use it forever.
    Beware: Java HTML rendering framework is almost endlessly incomplete. You shouldnIt implement real browser with them.
    See Q6.3.2 - Q6.3.6 of this FAQ:
    http://groups.google.com/groups?hl=en&lr=&selm=cjr8er%24oo0%241%40newstree.wise.edt.ericsson.se&rnum=37

Maybe you are looking for