Problem with Market Place

When I try to access to Market Place I receive the following message :
Error Message - Access denied (R/3)
What happened?
You do not have permission to access this Object
What can you do?
Please contact a consulting adminstrative
Error code: WEBSMP109-20080509125205-0015
Error details: 2491DD9-702/1A053/3162-71A9CFA5-3CB9265-2992F9
Service Name: SAPIDB
Service Server: WEBSMP109
Process-ID: 1656
Thread-ID: 4520
Sorry for any inconvenience.
Your SAP Service Marketplace Team

Hi,
I suggest to contact SAP support or SAP administrator in your company. maybe you do not have a permission to browse the website.
The website service.sap.com is as same as https://websmp209.sap-ag.de/,
I've seen that the error message mention WEBSMP209. I am afraid you do not have the permission
Rgds,

Similar Messages

  • Problems with decimal places and formatting

    Hi , we are having problems with an add on running on different localization companies. Decimal places separatd by "," differ from other localizations. We dont know if this is a SQL collation setting or somethng related to code or requirements to run add ons on different servers and languages.
    Any ideas??
    Thanks

    Hello
    Follow up with this thread:
    [Re: How to get the numeric value of DocTotal from UI API]
    Regards,
    J.

  • Install Problem Android Market Place

    Using Android 2.2.1.  Get error when trying to install Flash Player.  From a barcode it says the app is not found from the market place it says the same thing.  Running on a Star S3000 with MediaTek MTK6516, 416MHZ processor.

    Hi, This is the latest info as far as I know on these devices:
    http://www.adobe.com/flashplatform/certified_devices/   
    You may want to contact your Carrier or Manufacturer for more information. From all I've seen and read it seems like getting Flash Player on these phones is a best kept secret, LOL
    Hope you can find it.
    Thanks,
    eidnolb

  • Problem in Market Place

    Hi,
    Anyone have any problem with his user to access to obtain a new license key or to create a new note to SAP ?
    I cant do that and neither send notes and read my inbox.
    Regards.

    Hi Antonio,
    I just tried now and don't have any problems.
    The link I use is https://websmp206.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000706510&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E& and then on the right I select Inbox or License Key Request.
    You must of course have your S number and password.
    Hope this helps.

  • BAPI_ACC_INVOICE_RECEIPT_POST problem with Business place

    Hi Experts,
    I'm using the the BAPI  "BAPI_ACC_INVOICE_RECEIPT_POST" for the F-43 posting, it's working fine. But I have a little problem here, Even though I pass the correct values to the fields "Valuation type" and "Business place" in the posted document I could see only "?".
    Could you please some one help me in finding what might be the problem.
    Thanks
    Nivash

    hi
    hope it will help you.
    <REMOVED BY MODERATOR>
    BAPI_ACC_GL_POSTING_CHECK
    CALL FUNCTION 'BAPI_ACC_GL_POSTING_CHECK'
    EXPORTING
    documentheader = w_documentheader
    TABLES
    accountgl = it_accountgl
    currencyamount = it_currencyamount
    return = it_return.
    Populate the corresponding tables with the data you have.
    For the Date do convert it.
    PERFORM convert_date USING it_header-bldat
    CHANGING w_documentheader-doc_date.
    w_documentheader-comp_code = 'z998'
    w_documentheader-doc_type = 'SA'
    "and fill the respective tables this way .
    <b>
    BAPI_ACC_GL_POSTING_POST
    </b>
    call function 'BAPI_ACC_GL_POSTING_POST'
    exporting
    documentheader = doc_header
    IMPORTING
    OBJ_TYPE = l_objtype
    * OBJ_KEY =
    * OBJ_SYS =
    tables
    accountgl = t_accountgl
    currencyamount = t_curramt
    return = t_return
    * EXTENSION1 =
    Edited by: Alvaro Tejada Galindo on Feb 7, 2008 9:51 AM

  • [InDesign C# Script] Problem with textframe.place(imageName)

    Hi everyboy !
    I am beginning with the InDesign Scripting in C#, and the documentation is very poor. I have a problem and I can't find the solution.
    I have to place an image into a textframe on my document's page.
    I create my textframe without any problem :
               myDocument.Layers.Add();
            InDesign.Layer lastLayer = (InDesign.Layer) myDocument.Layers[myDocument.Layers.Count];
            InDesign.TextFrame myPicture = myPage.TextFrames.Add(lastLayer, InDesign.idLocationOptions.idUnknown, myPage);
            myPicture.GeometricBounds = new string[4] { myY, myX, myY2, myX2 };
    Then I try to place my Image, but I can't find which type of object is returned by .Place méthode :
    First try :
    InDesign.Graphics myGraphic =  (InDesign.Graphic) myPicture.Place(pathName, false);
    And I have got this error :
    {System.InvalidCastException: Unable to cast COM object of type 'System.__ComObject' to interface type 'InDesign.Graphics'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{C85A4AB3-9492-4C40-8A7B-F8305706C8B8}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
       at Service.createPhotograph(XmlNode photo, Page myPage) in c:\Documents and Settings\melaniep\My Documents\Visual Studio 2005\WebSites\WebSite6\App_Code\Service.cs:line 204}
    And I saw this tutorial in javascript for placing images  at http://www.adobe.com/devnet/indesign/pdfs/indesigncs4_scriptingtutorial.pdf
    //Display a standard open file dialog box to select a graphic file.
    var myGraphicFile = File.openDialog("Choose a graphic file");
    //If a graphic file was selected, and if you didn't press Cancel,
    //place the graphic file on the page.
    if((myGraphicFile != "")&&(myGraphicFile != null)){
    var myGraphic = myDocument.pages.item(0).place(myGraphicFile);
    //Since you can place multiple graphics at once, the place method
    //returns an array. To get the graphic you placed, get the first
    //item in the array (JavaScript arrays start with item 0).
    myGraphic = myGraphic[0];
    So I tried :
    InDesign.Graphics myGraphics =  (InDesign.Graphics) myPicture.Place(pathName, false);
                InDesign.Graphic myGraphic = (InDesign.Graphic) myGraphics[0];
    But I have got the same error.
    Someone have an idea? I am really lost, and I don't know what to do :'(
    Another little question.
    My picture is smaller than my textFrame.
    And I want my picture fits to the texframe.
    MyGraphic.HorizontalScale = widthOfTextFrame
    MyGraphic.VerticalScale = heightOfTextFrame
    Does it works? Or Am I in the wrong way?
    Thank you very much (and sorry for my bad english, I am french )

    Are you also beginning with C# ? Then please reconsider, and follow tried paths with JavaScript - plenty more support around here. You could at least write a draft of your program, and only if it works move it to C#.
    To get further on your issue, I'd follow the idea outlined here:
    http://msdn.microsoft.com/en-us/library/ms173183(VS.80).aspx
    If that does not work, I'm sorry - last time I used C# is years ago, and targeting some pocket PC. No InDesign involved.
    Dirk

  • Problem with business place and section code in miro screen

    hi experts,
    i have done the following config. for validate the b/place and section code at the time of invoice and payment.
    in prerequisite-com.code=l001 and (posting key=31 or posting key=29 or posting key=21 
    in check-business place=1001 and section code=1001
    by this config. in t code fv60 and f-48 b/place and section code showing mandatory but in miro screen w/o b/place and section code system alowing to save the entry.
    please suggest me where i am wrong and what to do next?
    thanks and regards
    konishko

    hi
    i have written the condition as follows
    in prerequisite:bseg-bukrs=l001 and (bseg-bschl=31 or bseg-bschl=29 or bseg-bschl=21)
    in check:bseg-bupla=1001 and bseg-secco=1001
    by doing this in fv60 and f-48 screen is not allowing to post w/o b/place and section code but in miro screen system allow me to post w/o b/place . if i validate the miro screen then after giving the b/place it is not allowing me to post the same and giving the error message which i have created.
    how to solve this problem?
    please suggest me and please give me the steps.
    regards
    konishko

  • Problem with icon place

    hello,
    is it only me?
    i spend 20 minutes rearranging the icons according to my taste, under iTunes
    and after sync, i see on the iPod that the icons were randomly placed...
    and then i unchecked some apps and then sync'd...
    but all the 148 apps were still there on the iPod...
    so i guess it's serveral bugs....
    i have the latest iTunes and the news 3rd 32g iTouch

    Already i suggested you buddy if you really want to work with GridbagLayout, you have to do practice on this because what ever you are asking for that is not big task if you will do it.
    first of all going through all basics and try to understand all GridBagConstraints.
    I hope you will be able to do your own. All the best.

  • Problem with Subform placement

    I have two subforms that are visable when their checkboxes are clicked (Let's say SubbformA & SubformB). I have it so the user can view one or both subforms at the same time.
    I want Subform B appear at the top of the current page IF only Subform A isn't selected. Otherwise if both are clicked- Sub B stacks perfectly behind Sub A.
    It all works fine if I just click Sub B.........But if I select Sub A first and then deselect it then click B, SubB appears on the next page. Does that make sense? How can I fix this? Any suggestions would be greatly appreciated.

    George,
    yes, that is an annoying bug.
    I use the following work-around. When the blue circle vanishes, I go to "Metadata > Manage my Places" and create a new place there. Then I locate the photo using "Metadata > Assign location" and enter the name of the new place in the search field. That will bring back a blue circle, that I can adjust.
    -- Léonie

  • Problem with text placement

    I have not a clue what is going on. The body of my text is ignoring all of the tables on the right. I have tried all I can think of. Does anyone have ideas as to what may be the issue?
    Thank you!!

    For starters, run your code through the validation tools below and fix any reported errors.  Code errors account for most if not all page rendering problems.
    Code validation tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    If that doesn't cure the problem, come back and post the URL to your web page.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Problems with bookmarks after update to version 16

    My bookmarks used to appear in the bookmark drop-down menu but now are only available in the bookmark sidebar. I have tried the reset to default option. I have tried deleting the places.sqlite file and the localstore.rdf file from the profile, but no change. Should I also try deleting the places.sqlite-shm and places.sqlite-wal files??
    How can I get my bookmarks back to where they were?
    Also, I am unable to export bookmarks to html -- goes through the motions, but no file is created.

    Problems with bookmarks and history not working properly can be caused by a corrupted places.sqlite database file.
    You can check for problems with the places.sqlite database file in the Firefox Profile Folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can try to check and repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Crash when use indexe array with in place element structure

    Hello !
    I have a problem with in place element structure. I want index a waveform array (16 elements) and when i execute or save that labview close....
    I dont have problem with waveform array 15 elements or less, but i need index 16 elements...
    Thanks for your help !!!
    Solved!
    Go to Solution.
    Attachments:
    Test.PNG ‏8 KB

    I give you my code but it work because i used a waveform array with only 15 elements. I can't save or execute with 16 elements...
    So add it (like picture Test.png) and you will see.
    Thank you
    Attachments:
    Test.vi ‏25 KB

  • Problems with Saved Watermarks - Wrong Font Size

    Hi,
    I am having problems with "Saved" Watermarks, as when I selected them they have the wrong font size.
    I created a Watermark (Draft) to be placed on the lower right
    corner of a PDF, using font Arial-10. This watermark has been save using the "Save Settings..." in Watermarks.
    When I add this this "saved" watermark to a new PDF, the font size is wrong
    (much much bigger), even though the Add Watermark windows reports Arial-10. Only by a selecting a different font size and changing it back to the saved font size (10) I get the correct Font Size in the PDF.
    I had a similar problem with the placement, but managed to solve that by setting the Preference>User&Guide to the used Unit (Page&Ruler = centimeters). But for the font size I can't find anything in the preference.
    Any Help or Suggestions ?

    Hi,
    Sorry forgot to add, I am using
    Acrobat Professional 8.1.2 on Windows XP Prof.
    Cheers
    Johannes

  • Facing problem in using market place in lumia510

    I have sent a problem regarding problem in downloading & updating contents from market place & about SkyDrive too. Now I am able to sign in my SkyDrive but in case of market place it still showing the same message that "windows live ID services is unavailable",please tell me what's the problem & tell me the solution, plllllleeeeaaaseeee...

    In order for us to help you will need to provide a lot more information. However, I would start with this:
    1. Have you compile the webutil.pll file in to a .plx?
    2. Is the PLX included in the FORMSxx_PATH?
    3. Have you attached the WebUtil objects (from the Object Library) to your form?
    4. If you are developing your form on Windows and trying to run it on Unix, have you recompiled the PLL and FMB?
    5. If you sub-classed the WebUtil objects in to your form, the webutil OLB will need to be in the FORMSxx_PATH
    Try using the WebUtil Demo form:
    http://www.oracle.com/technology/products/forms/htdocs/webutil/Webutil_demo.zip
    Read the WebUtil doc. It may be necessary to detach and reattach the WebUtil Library. Then execute a COMPILE_ALL. Refer to the WebUtil doc Section 5.1 "Adding The Required Objects"
    http://www.oracle.com/technology/products/forms/htdocs/webutil/web_util.pdf

  • Market Place is a scam! Ridiculous return problems! I feel betrayed an tricked by Best Buy!!!!

    I didn't even know there was a Market Place!  Until I just tried to return something I purchased online to Best Buy local Store.  Imagine my surprise as an Elite PLus Member when they told me I had to contact each vendor individually to return something I purchased from BestBuy.com.  Thats when they showed me the teeny tiny little bitty blurb of text on the item page that said sold by xyz company.  I'm busy ordering a bunch of stuff online for Xmas.  How am I suppose to stop and read every blurp of text on a Bestbuy.com website to see if they changed how they sell stuff they apparently don't offer at Best Buy but is instead sold by shady third persons.  I shop at Best Buy because I know Best Buy policy and return procedures.  I like their customer service in the local store.
    If I wanted to buy crap from third party vendors, then have to pay to send it back to them, I'd buy from a catalog sold at the corner magazine rack.  I shouldn't have to endure this sort of process from Best Buy.  (removed per forum guidelines) who blatantly shows you that your not buying from (removed per forum guidelines) will handle your problem like you did buy it from (removed per forum guidelines) and even ship it back to (removed per forum guidelines) on their dime!!!!!
    I feel what Best Buy did was sneaky, deceptive, and in no way what I'd expect as a long time customer.  That fact that I have to find each indiviually seller I purchased from, call or email them to ask for a return request, assuming I don't have to call or email several times to get ahold of them.  Then to make me have to pay to return the item???  Becuase I can't take it to a Best Buy store to return it as I have always been able to do?!!!
    This is the last time I buy anything online from Best Buy.  At least if I buy it in the store I know I can return it if I need to.  Not sure I even want shop again with Best Buy after this!!!  I already warned all my Friends on Facebook an twitter about what has happened.
    I should write a article an post to (removed per forum guidelines) an see if they will run the article so others won't have to endure what I'm going through.
    Listen up Best Buy!!!  If I wanted to purchase from shady third parties I would!!!  But I don't want to.  I shop Best Buy because I can return it to the store!  If I have a problem or I can call Best Buy customer service an they take care of it.  I don't want to deal with some third party shady shop in NY running a business in the subway station on his cellphone.
    NOT a happy customer!!!  The fact I have so much run around to return two items I purchased from what I thought was my normal Best Buy dot com store an instead was some third party yahoo people who make me pay to return it after three days of trying to get a hold of one of them pisses me off.  The fact I still haven't heard from the second vendor after emails and phone calls really annoys me.  Even your own customer service can't get ahold of the business.  Just a message machine where no one calls you back.
    You just lost an Elite Plus Member!!!

    Hello Mav2u,
    I was very disappointed to read about your experience in attempting to return your Marketplace purchases from BestBuy.com. I apologize for any confusion about Best Buy Marketplace purchases and our approved third-party retailers who make their products available on our website.
    We do our best to inform you on our website which products are sold by Marketplace partners and who those partners are. All you have to do is roll your pointer over the word "Marketplace" for a description of what that means. For even more details, you can visit our What is Best Buy Marketplace? page.
    I'm disheartened to read that this experience may influence your future shopping destination. It's my hope that you will give BestBuy.com another chance to win you over one day soon.
    Thank you for writing to us and for your feedback on Marketplace.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • USING MULTIPLE CONTROLLING AREA in the column

    Dear Experts, As per my requirement i need fetch the data from multiple controlling areas in to one report. please let us know how many ways are there? can i able to use controlling are in the column of the report. when i try to select the controllin

  • Error in vednor creation throu PRAA?

    Hi experts, while creating vendor master using transaction code PRAA with reference to employee master data. System throwing below error. "No entry in table T001 for argument 0618" How to rectify the same. In which system problem occurred, whether it

  • Windows but not iTunes is recognizing the iPod

    My friend has a 20 GB iPod (Gen. 4) and whenever he connects it to his Toshiba Satellite (running Windows XP and purchased in Taiwan) the computer pops up with a window asking if he wants to have the device open in Real Player, Windows Media Player,

  • Problem in bundling gifs in jar file.

    Hello all, I am having following package structure. /* For example */ com.course.explorer; com.course.explorer.toolbar; and an image directory having all images in com/course/explorer/images Now to associate an ImageIcon with a button in toolbar pack

  • Blank images in Crystal reports

    I'm trying to put image files from a sql server DB (gif format) in a report but they are blank in the report. Any ideas?