Vendors display of PO's without SUS

hi all,
we are allowing vendors to directly access EBP system to create confirmations. the standard vendor role does not allow PO displays. However if we add PO transaction (issue PO), then potentially any PO from any vendor can be seen by the vendor, as the search is not restricted by the vendor logged on.
has anyone faced this issue?
regards
Subs

hi,
you can restrict search of PO by Badi if you need.
For your scenrio you really have to think about SUS scenario (security, authorizations,...).
Regards,
Bertrand

Similar Messages

  • Supplier Registration without SUS or XI?

    Can I do Supplier (Vendor) Registration without SUS or XI?  If not, what are my limitations?
    I am using SRM server 5.5, and am not using CCM as the supplier directory. I am not using questionnaires.  ROS_SELF_REG works.  However, I can’t notify vendors via email of acceptance.  Because I don’t have SUS, I can’t use SRMSUS_SELFREG and SRMSUS_SELFEDIT, correct?  To do User Registration, can I use ROS_SELF_EDIT?
    How is workflow WS10000209 (Approving External User Master Record) used?
    I appreciate any feedback.

    Hi Scott
    It's difficult to give a reply hre, but let me give it a try...For more details, try the links given above by other friends.
    You do not need SUS for Self-registration.
    COnfig
    1)Create another client for ROS.
    2)Create RFC destination for EBP system in new client. Similarly, maintain RFC dest for ROS client in EBP system.
    3)Maintain backend systems for ROS system in EBP and EBP system in ROS.
    4)Configure some product categories (need not replicate from ERP) to be used during registration.
    5)Configure the IMG settings for Supplier Self-registration (they are easy..just go through them once.
    6)Configure SCOT settings (check notes 455140) for outbound & inbound mails.
    7)Maintain org plan for purchasing org (ppoma_bbp)& vendor group(ppomv_bbp). No need for elaborate org plan like in EBP...just simple org plan.
    8) Maintain table BBP_marketp_info (Txn:SM30)
    9) Activate ROS_SELF_REG, ROS_prescreen etc ROS services in SICF
    10) Maintain client and logon info in ROS_SELF_REG service (SICF)
    11) In EBP client, maintain SAP client parameter for role SAP_EC_BBP_ST_PURCHASER for BSP link preselect suppliers (right click and change node details).
    12) Maintain catalog call structure settings in EBP client IMG for the ROS supplier directory. The URL shd be taken from ros_prescreen attributes in ROS client.
    Process:
    1) With the service ROS_SELF_REG, a partner can register. System creates a BP (prospect) in the ROS client.
    2) An email is sent to the given email id
    3) Fill the attachment and click 'send survey' button. An email is sent to the system and system copies the survey response to the registered business partner
    4) From EBP client, click on preselect suppliers. System launches the ROS client registrations listing screen.
    5) Check the suppliers registered, check the data and accept/reject the supplier registration
    6) Accepted suppliers data can be pulled into EBP through 'Maintain Business Partners' transaction and create supplier (bidder/vendor) in EBP client.
    Hope it helps
    Best regards
    Ramki

  • Scenarios without SUS

    Hi,
    I'm working with SRM 7.0 EhP2 and I want to configure the  supplier qualification scenario ( Registration, prescreening ecc..) and the function of POC (purchase order confirm). In my istallation is not expected PI and so I think is not possible to use the SUS scenario. My question is: Is it possible to configure these scenarios without SUS? Could you please advise me? Thanks in advance.

    Hi,
    You need PI in ROS if you are using ROS in conjunction with SUS. Say after selecting a vendor you now want to do business with this vendor, so you will have to push him from SRM to SUS system. PI is needed for this push.
    And yes for document exchange (PO/PO response/ASN/IV) between you and the supplier you need SUS
    Regards,
    Nikhil

  • Help needed Displaying ALV  Secondary list without using oops concept

    Hi Experts
    Help needed Displaying ALV  Secondary list without using oops concept.
    its urgent
    regds
    rajasekhar

    hi chk this code
    ******************TABLES DECLARATION*****************
    TABLES : VBAP,MARA.
    *****************TYPE POOLS**************************
    TYPE-POOLS : SLIS.
    ****************INTERNAL TABLES**********************
    DATA : BEGIN OF IT_VBAP OCCURS 0,
    VBELN LIKE VBAP-VBELN, "SALES DOCUMENT
    POSNR LIKE VBAP-POSNR, "SALES DOCUMENT ITEM
    MATNR LIKE VBAP-MATNR, "MATERIAL NUMBER
    END OF IT_VBAP.
    ****************TEMPORARY VARIABLES******************
    DATA : V_VBELN LIKE VBAP-VBELN."SALES DOCUMENT
    DATA : V_MTART LIKE MARA-MTART. "MATERIAL TYPE
    *****************FIELD CATALOG***********************
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    ****************LAYOUT*******************************
    DATA : WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    ***************VARIANT*******************************
    DATA : G_VARIANT LIKE DISVARIANT.
    ****************SAVE*********************************
    DATA : G_SAVE(1) TYPE C.
    *****************EVENTS******************************
    DATA : XS_EVENTS TYPE SLIS_ALV_EVENT,
           G_EVENTS TYPE SLIS_T_EVENT.
    ******************PF STATUS**************************
    DATA : PF_STATUS TYPE SLIS_FORMNAME VALUE 'SET_PF_STATUS'.
    ******************USER COMMAND************************
    DATA : USER_COMMAND TYPE SLIS_FORMNAME VALUE 'SET_USER_COMMAND',
           R_UCOMM LIKE SY-UCOMM.
    ****************SELECTION SCREEN************************
    SELECT-OPTIONS : S_VBELN FOR VBAP-VBELN.
    ***************AT SELECTION SCREEN*********************
    AT SELECTION-SCREEN.
      PERFORM VALIDATE.
    **************START-OF-SELECTION**************************
    START-OF-SELECTION.
      PERFORM GET_DETAILS.
      PERFORM FIELDCAT.
      PERFORM LAYOUT.
      PERFORM VARIANT.
      PERFORM SAVE.
      PERFORM EVENTS.
      PERFORM ALV_DISPLAY.
    *********************FORMS*******************************************
    *&      Form  validate
          text
    -->  p1        text
    <--  p2        text
    FORM VALIDATE .
      SELECT SINGLE VBELN
                    FROM VBAP
                    INTO V_VBELN
                    WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'enter valid vbeln'.
      ENDIF.
    ENDFORM.                    " validate
    *&      Form  get_details
          text
    -->  p1        text
    <--  p2        text
    FORM GET_DETAILS .
      SELECT VBELN
             POSNR
             MATNR
             FROM VBAP
             INTO TABLE IT_VBAP
             WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'no details found'.
      ENDIF.
    ENDFORM.                    " get_details
    *&      Form  fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM FIELDCAT .
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'VBELN'.
      WA_FIELDCAT-OUTPUTLEN = 10.
      WA_FIELDCAT-SELTEXT_L = 'SALES DOC'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'POSNR'.
      WA_FIELDCAT-OUTPUTLEN = 6.
      WA_FIELDCAT-SELTEXT_L = 'ITEM'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-OUTPUTLEN = 18.
      WA_FIELDCAT-SELTEXT_L = 'MATERIAL NO'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    " fieldcat
    *&      Form  LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM LAYOUT .
      WA_LAYOUT-ZEBRA = 'X'.
    ENDFORM.                    " LAYOUT
    *&      Form  VARIANT
          text
    -->  p1        text
    <--  p2        text
    FORM VARIANT .
      CLEAR G_VARIANT.
      G_VARIANT-REPORT = SY-REPID.
    ENDFORM.                    " VARIANT
    *&      Form  SAVE
          text
    -->  p1        text
    <--  p2        text
    FORM SAVE .
      CLEAR G_SAVE.
      G_SAVE = 'A'.
    ENDFORM.                    " SAVE
    *&      Form  EVENTS
          text
    -->  p1        text
    <--  p2        text
    FORM EVENTS .
      CLEAR XS_EVENTS.
      XS_EVENTS-NAME = SLIS_EV_TOP_OF_PAGE.
      XS_EVENTS-FORM = 'TOP_OF_PAGE'.
      APPEND XS_EVENTS TO G_EVENTS.
    ENDFORM.                    " EVENTS
    *&      Form  TOP_OF_PAGE
          text
    FORM TOP_OF_PAGE.
      WRITE :/ ' INTELLI GROUP'.
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  ALV_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM ALV_DISPLAY .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
         I_CALLBACK_PROGRAM             = SY-REPID
         I_CALLBACK_PF_STATUS_SET       = PF_STATUS
         I_CALLBACK_USER_COMMAND        = USER_COMMAND
      I_STRUCTURE_NAME               =
         IS_LAYOUT                      = WA_LAYOUT
         IT_FIELDCAT                    = IT_FIELDCAT
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
         I_SAVE                         = G_SAVE
         IS_VARIANT                     = G_VARIANT
         IT_EVENTS                      = G_EVENTS
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = IT_VBAP
       EXCEPTIONS
         PROGRAM_ERROR                  = 1
         OTHERS                         = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY
    *&      Form  SET_PF_STATUS
          text
    FORM SET_PF_STATUS USING EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'Z50651_PFSTATUS' EXCLUDING EXTAB.
    ENDFORM.                    "SET_PF_STATUS
    *&      Form  SET_USER_COMMAND
          text
    FORM SET_USER_COMMAND USING R_UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN 'DC'.
          READ TABLE IT_VBAP INDEX RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            SELECT SINGLE MTART
                          FROM MARA
                          INTO V_MTART
                          WHERE MATNR = IT_VBAP-MATNR.
            IF SY-SUBRC <> 0.
       MESSAGE E000 WITH 'NO MATERIAL DESCRIPTION FOR SELECTED MATERIAL NO'.
            ELSE.
              WRITE :/ 'MATERIAL NO :',IT_VBAP-MATNR.
              WRITE :/ 'MATERIAL TYPE :' , V_MTART.
            ENDIF.
          ENDIF.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE TO SCREEN 0.
        WHEN 'CLOSE'.
          CALL TRANSACTION 'SE38'.
      ENDCASE.
    REPORT  Z_ALV_INTERACTIVE  MESSAGE-ID ZMSG_50651
                                    LINE-SIZE 100
                                    LINE-COUNT 60
                                    NO STANDARD PAGE HEADING.
    ******************TABLES DECLARATION*****************
    TABLES : VBAP,MARA.
    *****************TYPE POOLS**************************
    TYPE-POOLS : SLIS.
    ****************INTERNAL TABLES**********************
    DATA : BEGIN OF IT_VBAP OCCURS 0,
    VBELN LIKE VBAP-VBELN, "SALES DOCUMENT
    POSNR LIKE VBAP-POSNR, "SALES DOCUMENT ITEM
    MATNR LIKE VBAP-MATNR, "MATERIAL NUMBER
    END OF IT_VBAP.
    ****************TEMPORARY VARIABLES******************
    DATA : V_VBELN LIKE VBAP-VBELN."SALES DOCUMENT
    DATA : V_MTART LIKE MARA-MTART. "MATERIAL TYPE
    *****************FIELD CATALOG***********************
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    ****************LAYOUT*******************************
    DATA : WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    ***************VARIANT*******************************
    DATA : G_VARIANT LIKE DISVARIANT.
    ****************SAVE*********************************
    DATA : G_SAVE(1) TYPE C.
    *****************EVENTS******************************
    DATA : XS_EVENTS TYPE SLIS_ALV_EVENT,
           G_EVENTS TYPE SLIS_T_EVENT.
    ******************PF STATUS**************************
    DATA : PF_STATUS TYPE SLIS_FORMNAME VALUE 'SET_PF_STATUS'.
    ******************USER COMMAND************************
    DATA : USER_COMMAND TYPE SLIS_FORMNAME VALUE 'SET_USER_COMMAND',
           R_UCOMM LIKE SY-UCOMM.
    ****************SELECTION SCREEN************************
    SELECT-OPTIONS : S_VBELN FOR VBAP-VBELN.
    ***************AT SELECTION SCREEN*********************
    AT SELECTION-SCREEN.
      PERFORM VALIDATE.
    **************START-OF-SELECTION**************************
    START-OF-SELECTION.
      PERFORM GET_DETAILS.
      PERFORM FIELDCAT.
      PERFORM LAYOUT.
      PERFORM VARIANT.
      PERFORM SAVE.
      PERFORM EVENTS.
      PERFORM ALV_DISPLAY.
    *********************FORMS*******************************************
    *&      Form  validate
          text
    -->  p1        text
    <--  p2        text
    FORM VALIDATE .
      SELECT SINGLE VBELN
                    FROM VBAP
                    INTO V_VBELN
                    WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'enter valid vbeln'.
      ENDIF.
    ENDFORM.                    " validate
    *&      Form  get_details
          text
    -->  p1        text
    <--  p2        text
    FORM GET_DETAILS .
      SELECT VBELN
             POSNR
             MATNR
             FROM VBAP
             INTO TABLE IT_VBAP
             WHERE VBELN IN S_VBELN.
      IF SY-SUBRC <> 0.
        MESSAGE E000 WITH 'no details found'.
      ENDIF.
    ENDFORM.                    " get_details
    *&      Form  fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM FIELDCAT .
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'VBELN'.
      WA_FIELDCAT-OUTPUTLEN = 10.
      WA_FIELDCAT-SELTEXT_L = 'SALES DOC'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'POSNR'.
      WA_FIELDCAT-OUTPUTLEN = 6.
      WA_FIELDCAT-SELTEXT_L = 'ITEM'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_VBAP'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-OUTPUTLEN = 18.
      WA_FIELDCAT-SELTEXT_L = 'MATERIAL NO'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    " fieldcat
    *&      Form  LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM LAYOUT .
      WA_LAYOUT-ZEBRA = 'X'.
    ENDFORM.                    " LAYOUT
    *&      Form  VARIANT
          text
    -->  p1        text
    <--  p2        text
    FORM VARIANT .
      CLEAR G_VARIANT.
      G_VARIANT-REPORT = SY-REPID.
    ENDFORM.                    " VARIANT
    *&      Form  SAVE
          text
    -->  p1        text
    <--  p2        text
    FORM SAVE .
      CLEAR G_SAVE.
      G_SAVE = 'A'.
    ENDFORM.                    " SAVE
    *&      Form  EVENTS
          text
    -->  p1        text
    <--  p2        text
    FORM EVENTS .
      CLEAR XS_EVENTS.
      XS_EVENTS-NAME = SLIS_EV_TOP_OF_PAGE.
      XS_EVENTS-FORM = 'TOP_OF_PAGE'.
      APPEND XS_EVENTS TO G_EVENTS.
    ENDFORM.                    " EVENTS
    *&      Form  TOP_OF_PAGE
          text
    FORM TOP_OF_PAGE.
      WRITE :/ ' INTELLI GROUP'.
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  ALV_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM ALV_DISPLAY .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
         I_CALLBACK_PROGRAM             = SY-REPID
       I_CALLBACK_PF_STATUS_SET         = PF_STATUS
         I_CALLBACK_USER_COMMAND        = USER_COMMAND
      I_STRUCTURE_NAME               =
         IS_LAYOUT                      = WA_LAYOUT
         IT_FIELDCAT                    = IT_FIELDCAT
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
         I_SAVE                         = G_SAVE
        IS_VARIANT                      = G_VARIANT
         IT_EVENTS                      = G_EVENTS
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = IT_VBAP
       EXCEPTIONS
         PROGRAM_ERROR                  = 1
         OTHERS                         = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY
    *&      Form  SET_PF_STATUS
          text
    FORM SET_PF_STATUS USING EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD' EXCLUDING EXTAB.
    ENDFORM.                    "SET_PF_STATUS
    *&      Form  SET_USER_COMMAND
          text
    FORM SET_USER_COMMAND USING R_UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN 'DC'.
          READ TABLE IT_VBAP INDEX RS_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            SELECT SINGLE MTART
                          FROM MARA
                          INTO V_MTART
                          WHERE MATNR = IT_VBAP-MATNR.
            IF SY-SUBRC <> 0.
       MESSAGE E000 WITH 'NO MATERIAL DESCRIPTION FOR SELECTED MATERIAL NO'.
            ELSE.
              WRITE :/ 'MATERIAL NO :',IT_VBAP-MATNR.
              WRITE :/ 'MATERIAL TYPE :' , V_MTART.
      SUBMIT SLIS_DUMMY WITH P_MATNR EQ IT_VBAP-MATNR
                        WITH P_MTART EQ V_MTART.
            ENDIF.
          ENDIF.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE TO SCREEN 0.
        WHEN 'CLOSE'.
          CALL TRANSACTION 'SE38'.
      ENDCASE.
    plz reward if useful

  • How to display descriptive flexfield values without clicking on the field

    Hi,
    We are using ATTRIBUTE1 in PO Headers to provide a field for entering an emergency PO number. When users query a PO in the Puchase Order Headers form with a value in this field, they want the value to display on the form without having to click on the [] field to open up the DFF. Is this possible? This is the only DFF we're using on this form.
    The user is telling me the 11i instance used to but it is no longer there in R12.
    Can anyone help?
    Thanks.

    Hi,
    Check out Reference field and Default Context at DFF level.
    Regards,
    Sridhar

  • ROS (without SUS) and EBP in same client-Transferred BP status?

    Friends,
    We are working on SRM 7.
    The ROS (without SUS) and EBP are implemented on the same SRM client.
    In supplier registration process, when the accepted business partner is transferred from ROS to EBP, a supplier is correctly created in EBP client with the same business partner number, but the status of the transferred business partner is not updated from 'ACCEPTED' to 'RELEASED', hence there is risk that user can transfer the business partner again.
    As per OSS note 857386, the status released is set automatically by the system when an accepted supplier has been distributed. Also the status is valid only for DISTRIBUTED suppliers, that is, ONLY for suppliers TRANSFERED through OPI.
    I understand, if ROS (without SUS) and EBP are deployed on separate clients in same server then when the accepted business partner is transferred from ROS to EBP, system triggers an XI message to update the ROS business partner status to 'RELEASED'. Is my understanding right?
    How do we update the transferred business partner status to RELEASED when ROS and EBP are on same client?
    Regards,
    Sandeep Parab
    Edited by: Sandeep Meghashyam Parab on Apr 9, 2010 11:43 AM

    Hi Sandeep,
    I too have a requirement to implement ROS without SUS in SRM 7.0 PPS.  Can you send the config guide or steps to follow both in the ROS side and in the SRM Side.  Your kind help will be rewarded and highly appreciated.
    with regards,
    Freemind

  • How to display a html file without tags?

    Hello,
    I am new for Java programming. Now i have to display a html file without all the tags. My code is the fllowing:
    u = new URL("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=protein&val=55584070");
    BufferedReader in = new BufferedReader(new InputStreamReader(u.openStream()));
    while ((s = in.readLine()) != null) {
    System.out.println(s);
    in.close();
    Unforturnately, the output is the soucecode of the html file and I just want the content.
    Please help me.
    Thanks a lot in advance,
    Danica

    Here's a simple example
    http://forum.java.sun.com/thread.jspa?threadID=293830
    I haven't tested it, but I bet camickr did.

  • Audit trial in bpel console should display err msg only without data

    Hi,
    I have requirement where audit trail in BPEL Console should display meaningful error message without displaying payload. Please provide some workaround for the same.
    Thanks in advance.
    Edited by: 786384 on Aug 12, 2010 2:09 AM

    Hi,
    I have requirement where audit trail in BPEL Console should display meaningful error message without displaying payload. Please provide some workaround for the same.
    Thanks in advance.
    Edited by: 786384 on Aug 12, 2010 2:09 AM

  • Create ASN Shipping nonfiction without SUS in SRM

    Dear expert,
    We work SRM Server 5.5 Extended classic scenario.
    We intend to work with POR Purchase order Response.
    And we also want to use the ASN shipping notification
    Can we use inbound ASN without SUS? 
    For example:
    PO>POR>ASN in SRM server without sus.
    Thanks
    Isiaki

    Hi,
    I understand that ASN is document in ERP that called "Inbound delivery",
    Can we get the ASN response from supplier in ERP? Can we see in the SRM system the ASN (created in the ERP) flow Local PO document that created in SRM?
    Mining, we work extended classic scenario and we want to see the ASN details in the SRM LOCAL PO.
    I also want that the confirmation that came after the ASN will create in the SRM. Is it possible?
    Thanks
    Isiaki

  • How to display all distinct values without duplicates.

    Hi Pros,
          I want to present a values list in dashboard, but this list have much duplicates, so when dispalying, I want to display all distinct values without duplicates.

    Hi,
    You can avoid the duplicates from the source side or use a filtered row option in the component.
    Arun

  • ROS Implementation in SRM7.01 without SUS

    Hi ,
    We are implementing ROS functionality with two clients one for ROS and another for SRM, we are having SRM7.01 ,
    So by activating business function Supplier Collaboration (SRM_SUCO_1), will the functionality automatic transfer supplier to ERP be possible without SUS in ROS process.
    Best Regards,
    Raju

    Hi Nikhil,
    Yes, I agree with you Ros and SUS are different process or functionalities, but I  read  in one of the sap documentation,
    in SRM7.01 it is possible to transfer accepted supplier to ERP system, If we have activated the business function SRM, Supplier Collaboration (SRM_SUCO_1), we can use Supplier Preselection in Supplier Self-Services.
    But i dont SUS system separately, I have separate SUS/ROS client. Can you help me on this.
    Best Regards,
    Raju

  • Vendor Master Replication from MM to SUS

    Does any one have experience on Vendor Master Replication from R/3-MM to SUS (scenario without EBP).
    Is this replication made via XI?
    Which are the configuration steps for this scenario?
    Thanks
    antonio

    Hi antonio,
      I hope now you r now transfering vendor to SUS using 
      transaction BD14 with message type Z_CREMAS_SUSMM as  
      SAP suggested.
      Your error due to incorrect mapping in Integration 
      Directory of XI.Kindly check the Interface 
      determination for message type Z_CREMAS_SUSMM.
      If possible send more details for error .Is this at 
      SUS End ?
    Regards
    Sachin S M

  • Program "SAPLSZA1" tried to use screen 0000 - vendor display XK03 - dump

    Hello,
    when i try to display vendor (XK03) program SAPMF02K falls into dump. Problem is in calling subscreen into address area.
    CALL SUBSCREEN ADDRESS INCLUDING 'SAPLSZA1' '0300'.
    this is dump:
    The termination occurred in the ABAP program "SAPLSZA1 " in "%_CTL_INIT".
    The main program was "SAPMF02K ".
    The termination occurred in line 25 of the source code of the (Include)
    program "<SYSINI> "
    of the source code of program "<SYSINI> " (when calling the editor 250).
    Source code extract
    000010   * ABAP-System Include for all programs
    000020   constants SPACE value ' ' %_predefined.
    000030
    000040   * SYST-Felder als SY-Felder ansprechbar machen.
    000050   tables: SYST,
    000060           sy %%internal%%.
    000070   *
    000080
    000090   tables RSJOBINFO.                      "for SUBMIT .. VIA JOB ..
    000100
    000110   data: begin of common part %_SYS%%,
    000120           SCREEN    type SCREEN,
    000130           %_PRINT   type PRI_PARAMS,
    000140           %_ARCHIVE type ARC_PARAMS,
    000150         end   of common part.
    000160   *
    000170   data: %_VIASELSCR type X value '04' %_predefined.
    000180
    000190   system-exit.
    000200     perform (SY-XFORM) in program (SY-XPROG).
    000210
    000220   * Nach Laden des Dynpros
    000230   module %_CTL_INIT output.
    000240    <b> perform %_CTL_INIT in program SAPMSSYD using SY-REPID if found.
         >   endmodule.</b>000260
    000270   * Nach DCO
    000280   module %_CTL_OUTPUT output.
    000290     perform %_CTL_OUTPUT in program SAPMSSYD using SY-REPID if found.
    000300   endmodule.
    000310

    Hi,
    I have checked OSS Note Number 1037961 which is giving somewhat the same Error Description as per your query. Below is the summary of this OSS Note.
    Check whether this is useful for you.
    Summary
    Symptom
    When registering in the R/3 E-Commerce 5.0 B2C webshop the
    process finishes without any error messages, but if you go to the user details the address data is missing.
    The R/3 system has created the customer but when displaying with XD03
    the system dumps in program SAPLSZA1 : screen 0000 does not exist.
    This issue occurs only in ECO ERP 5.0
    Thanks,
    Satya

  • Display image in JPanel without saving any file to disk

    Hi,
    I am fetching images from database. I am saving this image, display in JPanel and delete it. But this is not actually I want.
    I wish to fetch this image as stream , store in memory and display in JPanel without saving any fiel in disk.
    I wonder if it is Possible or any used implementation that I can use in my project. Any idea or experienced knowledge is enough.
    Thanks

    In what format is the image coming to you from the database? If it's an InputStream subclass, just use javax.imageio.ImageIO:
    InputStream in = getImageInputStream();
    BufferedImage image = null;
    try {
       image = ImageIO.read(in);
    } finally {
       in.close();
    // ... Display image in your JPanel as you have beenIf you receive the image as an array of bytes, use the same method as above, but with a ByteArrayInputStream:
    byte[] imageData = getImageData();
    ByteArrayInputStream in = new ByteArrayInputStream(imageData);
    BufferedImage image = null;
    try {
       image = ImageIO.read(in);
    } finally {
       in.close();
    // ... Display image in your JPanel as you have been

  • How to display the search result without reloading the whole page

    HI,
    I have separate fragments for Search Box to enter keyword and Search Result to display the result. Also I have different sections within the page to put these fragments. So how could I display the results without reloading the whole page.
    Also if I have next button in my search result area, how could I display the search results in next page without reloading all other sections present in our page. Please let me know if any service or idoc function present such that result could be shown in search result section without reloading whole page.
    Please let me know how to restrict page reload for every action within a page.
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on May 27, 2010 3:14 AM
    Edited by: Ramesh_Est on May 27, 2010 8:39 PM

    This is default behaviour of the template of your space. You can create a new page template and than you can create a region for the search results.
    Or you can create a custom taskflow were you use the webcenter taskflows to search for the space.
    Take a look at this white paper:
    Extending webcenter spaces: http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    and this one:
    Customizing site templates: http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf
    Edited by: Yannick.O on 13-Apr-2010 02:32

Maybe you are looking for