Shop vicariously through me!!!

There are quite a few of these "what should I buy?" posts and everyone seems to love giving their opinions so consider this:
I'm in Japan and I'll be here at least another year. I live in a tiny apartment with a tiny desk, my Logic use has outgrown my PBG4 and I'm tired of being hamstrung by this tiny screen.
My first instinct is to buy a Mac Pro and one of those big Dell/BenQ multi-input displays. That way Logic is all set for horsepower and display size and I can even watch movies and play Gran Turismo on a nice big screen. Trouble is, this all has to go home (USA) someday. Putting a mac pro and a 24" display through baggage on a plane makes me nervous and I wonder if shipping it is very cost-effective and/or safe.
An imac would be a more streamlined solution and it should suffice for Logic but it's probably only a little easier to ship home and then I wouldn't have the display input options I could get with a third-party display.
I could get a MB/MBP and a big external display but then I'd worry about outgrowing the hardware again and I'm not really sure all that will fit on my desk.
Any suggestions?

You can only use this BADI for customer defined fields. It will not allow you to change standard fields.

Similar Messages

  • Creation of shopping cart through HTTP request

    Hello all, I am trying to create a shopping cart through a HTTP request.
    The URL I am managing is the same that the one that the Web Service BBPSC01 uses.
    Using the following code I cannot connect to the server in background, the error "This browser is not supported" is launched.
    In addition to this, I can open the URL successfully via R/3 when executing online.
    Help very appreciated!
    Thanks.
    data declarations
    DATA: client TYPE REF TO if_http_client.
    DATA: host      TYPE string VALUE 'host',
          host2      TYPE string,
          service   TYPE string VALUE '8000',
          path      TYPE string VALUE '/sap/bc/gui/sap/its/bbpsc01/?sap-client=020&sap-language=EN',
          errortext TYPE string. "used for error handling
    DATA: dest(13) TYPE c.
    dest = 'ZPORTAL_CESTA'.
    CALL METHOD cl_http_client=>create_by_destination
      EXPORTING
        destination              = dest
      IMPORTING
        client                   = client
      EXCEPTIONS
        destination_not_found    = 1
        internal_error           = 2
        argument_not_found       = 3
        destination_no_authority = 4
        plugin_not_active        = 5
        OTHERS                   = 6.
    IF sy-subrc NE 0.
      WRITE: / 'Create failed, subrc = ', sy-subrc.
      EXIT.
    ENDIF.
    set http method POST
    CALL METHOD client->request->set_method(
      if_http_request=>co_request_method_post ).
    client->request->set_version(
         if_http_request=>co_protocol_version_1_1 ).
    client->request->set_header_field( name = '~request_method'
    value = 'GET' ).
    set request uri (/<path>[?<querystring>])
    DATA uri TYPE string.
    uri = path.
    cl_http_utility=>set_request_uri( request = client->request
                                      uri     = uri ).
    FIN: conectamos el final de la peticion
    Send
    DATA timeout TYPE i.
    CALL METHOD client->send
      EXPORTING
        timeout                    = timeout
      EXCEPTIONS
        http_communication_failure = 1
        http_invalid_state         = 2
        http_processing_failed     = 3
        OTHERS                     = 4.
    IF sy-subrc NE 0.
      DATA: subrc TYPE sy-subrc.
      CALL METHOD client->get_last_error
        IMPORTING
          code    = subrc
          MESSAGE = errortext.
      WRITE: / 'communication_error( send )',
             / 'code: ', subrc,
             / 'message: ', errortext.
      EXIT.
    ENDIF.
    CALL METHOD client->receive
      EXCEPTIONS
        http_communication_failure = 1
        http_invalid_state         = 2
        http_processing_failed     = 3
        OTHERS                     = 4.
    IF sy-subrc NE 0.
      CALL METHOD client->get_last_error
        IMPORTING
          code    = subrc
          MESSAGE = errortext.
      WRITE: / 'communication_error( receive )',
             / 'code: ', subrc, 'message: '.
      EXIT.
    ENDIF.
    DATA return_str TYPE string.
    return_str = client->response->get_cdata( ).
    close
    CALL METHOD client->close
      EXCEPTIONS
        http_invalid_state = 1
        OTHERS             = 2.
    DATA html_control TYPE REF TO cl_gui_html_viewer.
    DATA container   TYPE REF TO cl_gui_custom_container.
    DATA html_table TYPE TABLE OF char255.
    Create container for HTML viewer
    CREATE OBJECT container
      EXPORTING
        container_name              = 'CONTAINER'
      EXCEPTIONS
        cntl_error                  = 1
        cntl_system_error           = 2
        create_error                = 3
        lifetime_error              = 4
        lifetime_dynpro_dynpro_link = 5.
    IF sy-subrc NE 0.
      MESSAGE e208(00)
         WITH 'The control HTML_CONTAINER could not be created'.
    ENDIF.
    CREATE OBJECT html_control
      EXPORTING
        parent = container.
    CALL FUNCTION 'CONVERT_STRING_TO_TABLE'
      EXPORTING
        i_string         = return_str
        i_tabline_length = 255
      TABLES
        et_table         = html_table.
    DATA: l_doc_url(255) TYPE c.
    CALL METHOD html_control->load_data
      EXPORTING
        type         = 'text'
        subtype      = 'html'
      IMPORTING
        assigned_url = l_doc_url
      CHANGING
        data_table   = html_table.
    CALL METHOD html_control->show_url
      EXPORTING
        url = l_doc_url.

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • Creating several shopping carts through interfaces

    Hello all, I have the following requeriment and I want to know if this is possible.
    The requeriment is to have an interface that calls the creation of a shopping cart in SRM, so many times as data will be inside a file. The interface will be in another R/3 system.
    I have thought to call the service BBPSC01 with some parameters, each time that needed, is this possible?
    How can I do this?
    Is there a BAPI that emulate the shopping cart creation process?
    Any suggestion, pleasE?
    Thanks in advance!

    Hi,
    Check below FM
    1- BBP_PD_SC_CREATE
    2- BBP_PD_SC_CREATE_EXTERNAL
    Hope this will solve your problem
    Regards
    Sachin

  • Create Shopping cart (or PO) in SRM/EBP from a flat file

    Hi all
           I am looking for a function module or BAPI or any program that i can use to create shopping cart in SRM from a flat file.
    Is there a way to set up a break point in ITS transactions that are used to create shopping carts through portal? Can we debug HTML templates?
    If any one knows how to do any of those please let me know.
    Your help is greatly appreciated.
    Thanks
    Sreenivas

    Hi,
    You would get better response for your question from
    Internet Transaction Server (ITS)
    Regarding your question about break point. yes it can be done.
    Regards
    Raja

  • Purchase Order not created for a Shopping Cart

    We have a few Shopping Carts created in SRM which did not transmit as PO to our backend R/3 system. This happened because our R/3 system went down for a couple of hours and the Shopping Carts were created during this time. We tried to submit these Shopping Carts through the Application monitor later and the SRM system gave a message "Processed Successfully". However, POs for these Shopping Carts were not created and the Shopping Carts have a status of "Item in transfer process".
    The Shopping Carts have already got a PO number assigned to them through the SRM system. However these PO's have not been created in the backend R/3 system
    We are struggling to find the failed RFC calls with the help of BASIS so that we can possibly reprocess them. Alternatively we are also looking for a way to retrigger the PO creation for these Shopping Carts.
    I need ideas to resolve this issue.
    Many thanks in advance.
    Susmit

    Not sure if you received an answer or not, but this is what we have had to do in the past:
    1.  Run BBP_PD for the shopping cart to see what the purchase requisition number will be on the backend system.  The requisition number will still be provided even if it fails to transfer to the backend.
    2.  Run FM BBP_PD_SC_RESUBMIT.  The object key field will be the requisition number; the object ID field will be the shopping cart number.
    Hope this helps.
    Monique Stephens

  • Shopping Cart needs to be Held Status when created from Upload Program

    Hi All,
    Shopping Cart is created from Custom Upload Program. In Upload Program, we used BBP_PD_SC_CREATE, BBP_PD_SC_UPDATE, BBP_PD_SC_SAVE and BBP_PD_SC_COMMIT.
    Once the Shopping Cart is created from this upload program, I want ot put Shopping Cart as Helad Status.
    I exported the parameter I_PARK as 'X' in BBP_PD_SC_CREATE and BBP_PD_SC_UPDATE. But it is not working i.e., the SRM system is not keeping the Shopping Cart as Held Status.
    Scenario:
    I am uploading the Shopping Cart Items (Shopping Cart creation) on behalf of my manager. My manager has to approve Shopping Cart.
    If shopping cart is created maually and Shopping cart value is within the spending limit, work flow is not triggered approval proceess. If I am creating shopping cart behalf of some one, I am adding the approver manually while creating.
    When ever we create shopping cart through custom upload program, the shopping cart needs to be approved by the Requestor (my manager, to cross check shopping cart items). So I want to park the Shopping Cart and I want to add Approver as my manager.
    Please suggest me or guide me to get the solution for my issue.
    Thanks,
    Sudarsan
    Edited by: KOYYA SUDARSANA NAIDU on Nov 14, 2008 9:12 PM

    Completed

  • Error on shopping cart : "No purchasing group exists"

    Hi,
    While the user tries to add items to shopping cart through portal, he is getting error "No purchasing group exists" which stops the user from saving the shopping cart.
    We have checked org structure where all the necessary configuration is existing. Please suggest what could be the reason for the error.
    Thanks in advance.
    Tejas Jani

    Hello Tejas,
    System is not able to determine the PGrp. 3 things are important for determining PGrp
    a. Organization Unit
    b. Product category
    c. Logical System  
    To check whether its a data issue or system issue. Best way is to update one of the PGrp
    1. Ensure in function tab PGrp is flagged & assigned to backend PGrp
    2. Maintain Responsibility tab Product responsibility as * & Organization responsibility as highest node in Org structure.
    Now, create a new shopping cart. It should pick this PGrp. If not, check if you have implemented BBP_PGRP_FIND BADI in system. 
    Hope this helps.
    Ashutosh

  • Approval Preview not displayed in Shopping cart

    Hi,
    On creating shopping carts through Plan Driven procurement, we are changing the cart status from the default "Ordered/Approved" to "Awaiting approval". The approvers are displayed in BBP_PD for this Shopping Cart, however the same is not visible in SRM portal.
    We have also refreshed all the templates, but the Approval tab and Overview link, is not displayed in shopping cart.
    We are on SRM 5.0, 5.5 server, Extended Classic scenario with SP 17 and have implemented N-step approval work flow BADI to determine approvers based on the cost center entered in shopping cart.
    Kindly provide inputs to have approvers displayed in SRM portal.
    Thanks,
    KB

    Hi,
      SAP does not provide the standard solution for triggering the WF from external system ( ECC )... any document create outside the SRM, system will automatically put the status to approved... even 0-Level wont trigger... you can activate the nstep workflow by following step by step help...
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/5082a622-7310-2c10-1a9b-ef31dd69a770
    Saravanan

  • Different PO through SOCO with different delivery address

    Hi,
    We are facing issue with sourcing cockpit. While creating purchase
    order for multiple shopping carts through Sourcing cockpit, If multiple
    line item have different shipping location it is creating different
    Purchase orders.
    We have requirement to create one PO with same vendor for multiple line
    items. For above problem we are keeping same vendor even though it
    creates two seperate POs.
    Kindly advise.
    Thank you
    Ritesh

    Hi Ritesh,
    Please check the answers in this thread :
    PO split  in  sourcing cockpit   ?      :-(
    BADI BBP_SC_TRANSFER_BE
    Method GROUP_PO
    Kind regards,
    Yann
    Message was edited by: Yann Bouillut

  • Creating PO in SRM through external interface

    Is there a way to create a PO in SRM through an external interface without creating a shopping cart?  I see that we can create a shopping cart through BBP_PD_SC_CREATE_EXTERNAL.  But we need to create a PO in the SRM system without the shopping cart.  Is this possible?  It's neither the classic nor extended classic nor the standalone SRM scenarios that all have the shopping cart generate the PO.  Is there a way to create the PO without the shopping cart?  Is there a BAPI to do this?
    Right now, we generate an XI ABAP server proxy which allows us to push the PO information from an external system through XI into SRM, but we do not know what SRM function we need to invoke.
    Any help would be appreciated.
    Thanks,
    Jay
    SAP Integration Consultant

    I can give you the technical example of how to create a PO. You can get the sample logic of creating PO's from the program MBT_PO_MASS_CREATE.
    Regards,
    Mani

  • PM SHOP PAPERS

    Hi PM Gurus,
    We have a problem while printing shop papers through t code IW3D.
    There are 2 shop papers for the order.
    First paper prints the long text also but second shop paper does not.
    Can anyone tell if there is any setting in config which allows/prevents this.
    Matter most urgent.
    Any reply will be rewarded suitably.
    Thanks,
    Manish

    hi
    may be only one operation or operations fits to the one page have long text .kindly specify the shop papers you are trying to print
    regards
    thyagarajan

  • Upload Shopping Cart

    Hi All,
    It would be great if anyone come across this kind of issue to help me!
    My customer requirement is to create a shopping cart through an upload file which contains  Supplier,Course ID, Course Ref , Course Name, Start date, Cost centre,Course cost, VAT and Quantity. Is there any stadard function module or piece of code available?
    Thanks and appreciate for your inputs
    Regards,
    Narsaiah

    Hi,
    Check this post for reference.
    /thread/327554 [original link is broken]
    Regards,
    Satya

  • Order shop paper - default setting - can be restricted to planning plant

    Hi,
    We define Shop papers, through transaction code OIDF. Next we assign the shop papers for Order types through OIDG. Here, there is no restriction to Planning Plant.
    Is there any possibility, to make setting to restrict for Planning plant to print shop papers.
    For example,
    We have Planning plant 1000 and 2000.
    We have Shop papers Z001, Z002 and Z003
    We have order types, PM01, AND PM02.
    Here we made setting in OIDG,
    Doc type   Paper    Selection
    PM01        Z001          X
    PM01        Z002          X
    PM01       
    Z003       
    PM02        Z001 
    PM02        Z002
    PM02        Z003,         X 
    I think this is the possibility in SAP.
    Here we need to restrict with Planning Plant,
    Planning Plant    Doc type         Paper          Selection
    1000                    PM01              Z001            X
    1000                    PM01              Z002            X
    1000               
       PM01         
      Z003             
    1000                    PM02              Z001       
    1000                    PM02              Z002         
    1000                    PM02               Z003           X
    2000                     PM01              Z001           X
    2000                     PM01              Z002
    2000                     PM02              Z001            X
    2000                     PM02              Z002            X
    2000                     PM02              Z003            X
    Is this any possibility to restrict the default printing of shop papers with respect to Planning Plant with Order type.
    Please provide your suggestions.
    Raja 

    Raja ,
    Have you tried the the User Specific Print Control values (OID3).
    Switch-on the PM-Specific fields which opens the Plant field. Then make settings as required making sure the User field is "*".
    PeteA

  • Has anyone set up a Paypal account that is shared with another non-BC website or eBay shop

    I am needing to set up Paypal on a 2nd site for 2 separate clients. Both new sites are on the BC platform using the standard Paypal options in eCommerce thus requiring me to set in the website preferences in Paypal the return url address.
    My issue is that one of these clients has another website taking Paypal payments and the other client has an eBay shop paying through Paypal.
    I am trying to understand how I can set up the BC sites payment gateway in view of the fact that we need to set the return URL address in the Payal preferences which of course is no good for the other sites sharing this same Paypal account.
    Has anyone done anything similar and if so can you tell me how I should go about it preferebly without having to create an additional Paypal account.
    BC support could not help out and advised contacting Paypal who were quick to tell me it is all in the email acocunt I use until I expalined we use the API setting a return URL. I am now searching for a practical solution.
    Many thanks.

    In the paid partner form there was a reference to setting up the PayPal std gateway saying that the PayPal Customer Id must not only be the primary email on your Paypal accunt but it went further to state that this email accunt must be yru admin account email address of your website... This is the first time I have ever heard this. Is this really so.
    In reference to my original question... does the email address we enter into PayPal Customer Id have to really be the primary or can you use one of the alternate email addesses becasue advice form PayPpal is just to provide one of the emails set up in Paypal.
    UPDATE 4 July:
    After spending several hours on the Paypal customer service merry-go-round over 2 days I have been finally advised that becasue BC requires the Paypal preferences to set the return URL back to the BC website we can't share the Paypal account across multiple websites. Obviously paypal have not heard of the concept of profiles where you could set preferences against the 8 individual email accounts you are allowed to set up and use for otehr payment processing.
    A word for the wise before you rush in to set up an additional Paypal business account - there are some rules you must follow:
    Your Paypal accounts must be in different names (real names not the email address)
    You can't use the same bank account or credit card across any 2 Paypal accounts
    You can't share email addresses between Paypal accounts
    Other than that - it's simple...
    The above is the situation with Paypal standard business accounts - If anyone has better information please share
    Message was edited by: Greg.Tomkins

  • What is meant by Print Shop Papers

    Hi ,
    What is meant by Print Shop Papers?. What is its use?.
    Thanks in advance

    Dear ,
    Print Shop Papers : It is one of gthe custom developement  based on your Standard Production Orders .In any manufacturing plant , when Production Engineer and his team  have certian product developement , they need a comprehensive production information like Bill Of Material , Operation sequence , Operation Hrs , Prodiuctuion order reservation number , MTO means MTO sales Order number , customer information if required , Operation Star and Ened datses , times , Production Schedule Start /Ened etc .A shop paper contains those above information and SAP system has Print Programme to rtigger those shop papaers through Stanrda Txn like CO02/CO04N or any Z tsxn by your ABAPer.
    Specially , it will be with Production Supervisor at Shop floor where production is happening and will be followed those instruction interms of material to operation  till the completion of the order.
    Carry out a SND search in SDN PP forum , you will find number of wiki , theards having technical information related to Print Shop Papaers .
    All the best
    Regards
    JH

Maybe you are looking for

  • Separator Field in ALV

    Hi everybody. Is there any way to add a separator field whithin an ALV??? Is there any pre-built field or property for this requirement?? Thanks in advance.

  • How to redownload final cut pro on different computer without installation disc?

    I purchased a laptop that has final cut pro on it but it didnt come with an installation disc or anything. I need to put my final cut pro on a different computer...What can I do?

  • Bom down level and upper level at a time explosion

    Dear all, My requirement is if we give a sub assemble code as input to a function module  , output must be its downlevel as well as i want upper levels also. Could you help me in this regard. Ihave function module for downlevel explosion. but i want

  • Chart showing percentage of groups of cells

    Hello everybody, I am a teacher and I am new to Numbers. It is the end of the term and I have prepared a table with the students' names and marks they got during the term. That table also shows the average sum of their results. I managed to create a

  • Small Application for Beginners

    I am new to the world of coldfusion and taking training since 2 months..... I have gone through macromedia live documentation My problem is that when i see the code i understand the flow very easily .. But i am not able develop the logic.. can anybod