SUS survey send working funny and BP transfer so two questions

Hi all
When a vendor registers via the weblink a BP is create is SUS client.  This is fine.  However, my system for some reason is sending the survey without me having to click on Send Survey Pre-select vendors.  I only want the survey to send once I select the accept the prospect and send the survey.  I don't want them to get the survey in case I reject them.
Additionally when I attempt to transfer the vendor to the backend from Manage business partner > transfer  the vendor leaves the prospect list but there is nothing in the supplier monitor and the vendor does not transfer to the back end.  I've maintained the SBM_PRESCREENING in the buyer attributes against the Cat ID.
Any thoughts on these two issues?
Thanks
Tracey

HI Tracey,
As soon as suppliers fill in the initial registration form and select certain product categories, they will be sent questionnaires pertaining to those categories and you as a buyer can accept/reject them based on their response. This is standard system behaviour.
By vendor transfer to backend, do you mean transfer to ECC?
Regards,
Nikhil

Similar Messages

  • HT5312 IT docent show me below the questions if i want to send my self and email to change my questions

    IT docent show me below the questions if i want to send my self and email to change my questions

    Go back to the article you asked this question from and use the link to contact the iTunes Store staff in the 'Additional Information' section. If you don't already have a valid rescue email address, you can't reset the questions yourself, and nobody on these boards can reset them for you.
    Setting up a rescue email address requires correctly answering two of the questions.
    (95194)

  • Thumbnails populate slowly, and file import twice (two questions)

    Lately, I've been noticing that thumbnails take longer than usual to populate for existing images in the Grid View.  I'm using LR 5.6, Windows 7-64 Professional.  Plenty of RAM and an SSD where the catalog and .lrdata reside.  Any thoughts on how I might improve matters?
    Also, I notice when I import images from my camera that already imported images sometimes get imported again.  I've checked the box "don't import suspected duplicates" and I'm selecting "New Photos."  Again, any input would be appreciated.
    Thank you,
    Robert 

    Lately, I've been noticing that thumbnails take longer than usual to populate for existing images in the Grid View.  I'm using LR 5.6, Windows 7-64 Professional.  Plenty of RAM and an SSD where the catalog and .lrdata reside.  Any thoughts on how I might improve matters?
    Also, I notice when I import images from my camera that already imported images sometimes get imported again.  I've checked the box "don't import suspected duplicates" and I'm selecting "New Photos."  Again, any input would be appreciated.
    Thank you,
    Robert 

  • Oracle service bus: Work manager and Throttling

    Hi
    Flow is PS_C--->BS_A (based on PS_A)
    I created a http protocol based proxy service PS_A and a business service based on PS_A, i.e. BS_A.
    Now this BS_A is deployed on four different managed servers. I have implemented failover so at a time copy of only one of the managed severs will be accessed by multiple external clients through PS_C. To say all will hit Managed server-1 copy of BS_A. If Managed server-1 is down then it will hit Managed server-2 copies of BS_A.
    I have created a workmanager named "CustomWorkManager" which has MaxThreadConstraint=1. PS_A has not enabled CustomWorkManager. i.e. PS_A works under default policy.
    My goal is to process only one request at one time through BS_A.
    In business service, BS_A I can see work manager and throttling options.
    My question is this:
    Scenario I: I make throttling enabled and set maximum concurrency=1 for BS_A
    Scenario II: I apply CustomWorkManager to BS_A
    Scenario III: I do both Scenario I and Scenario II
    What is the difference between I, II and III?
    Fundamentally, what is the difference between throttling with maxConcurrency=1 and MaxThreadConstraint of workmanager=1 for a http business service?
    Thanks and Regards,
    Swapnil Kharwadkar

    @Abhishek: Thanks for descriptive reply.
    @Anuj: Thanks for links, I am having a look..
    Use case:
    What is the target app/service? Is it DB, HTTP or anything else?
    Back end: Amadeus web services
    Role of DB:
    1. It will store data to attach transaction context to a request. This is to call more than one services in the backend - it is necessary for backend to understand in which context services are being invoked.
    For example, if I need to make PNR related changes, I need to invoke service X and fetch transaction context from back-end. The transaction specific identifier (read session) will be received in header part. After retrieve suppose I need retrieve PNR, I will invoke service Y. When I invoke, I need to put the transaction specific header part received in response of service X and then change body as per request format of service Y (read the response header of X will be the same as request and response header of Y) which will actually make changes and commit in the backend. (So back-end will understand that service X and Y are invoked as a part of single transaction, and transaction can be identified through logs)
    3. Once my X+Y call is over and transaction is committed, the context for transaction specific part received in header to the transaction is removed from back-end. Then I can use session again for the next transaction.
    4. To re-use session I am storing it in DB and retrieving as per need for each call to Amadeus.
    Problem is, it is absolute necessary for all transactions which are being processed simultaneously, to have unique session in header.
    For example,
    I do the following:
    Request 1: receives session from service X, uses for service Y. After use, inserts session in DB. Now context for that session is removed from back-end.
    Request 2: looks for session DB, puts in header and invokes backend. Context for Request 2 is attached to session retrieved from DB.
    Request 3: looks for session DB, puts in header and invokes backend. Context for Request 3 is attached to session retrieved from DB.
    As you can see if Request 2 and Request 3, pick up the same session from DB and invoke back-end, back-end services won't be able to understand which request the session belongs to, and will fail both requests. Ideally Request 2 should retrieve it from DB use for itself and Request 3 should make a call to service X at back-end to receive context. With this new context Request 3 should proceed for transaction.
    Why are you using a BS to call from one Proxy to another Proxy?:
    1. To interact with DB, I use DBAdapter business services with QueryByExample/Update/Insert operation.
    2. My PS_A is proxy which orchestrates these operations. (Read: SelectandUpdateDBForSessionRetrieve, UpdateDBWhenTransactionOver functionaries) Since there are two admin and four managed servers, all copies of PS_A will try to access DB simultaneously, and concurrency will fail.
    3. Hence I made BS_A on the basis of PS_A. BS_A is deployed on all four managed servers, used Load Balancing Algorithm as "None" and gave hard-coded urls of four managed servers in sequence of MS1, MS2, MS3 and MS4.
    4. Idea is if MS1 is ok, all requests will go to BS_A of MS1 only, and if somehow if I make it single threaded *(Read from DB+mark retrieved data as "in use" so other request can not use it)*, concurrency issue will not arise. In case MS1 is down, the requests will automatically forwarded to MS2 and since that is also single threaded, concurrency issue won't arise. In short both fail-over and concurrency can be achieved with BS_A making out of PS_A.
    The problem as you have correctly pointed out, is that OSB is stateless and one request has no relation with another. Somehow, I need to make every retrieve/update/insert to database as single threaded, i.e. once one is done then another should not be done at the same time. Else entire point of this pooling will fail.
    Please share any thoughts you might have. Even another approach to handle this single threaded need will do.
    Thanks and Regards,
    Swapnil Kharwadkar

  • I m trying to send a email and sms alert using php and it works fine on all systems except on Iphone,the problem is swedish charcters doesn't show on iphones used by people in sweden but works absolutely fine on iphones in india. plz help

    I m trying to send a email and sms alert to people and it works fine on all systems expect on Iphone,the problem is swedish charcters doesn't show on iphones used by people in sweden but works absolutely fine on iphones in india.
    the code i m using is right below,plz have a look and not into the problem as problem is a bit strange.
    $headers = "MIME-Version: 1.0\n" ;
                $headers .= "Content-Type: text/plain; charset=\"UTF-8\"\n";
                $headers .= "X-Priority: 1 (Highest)\n";
                $headers .= "X-MSMail-Priority: High\n";
                $headers .= "Importance: High\n";
                // Additional headers
                $headers .= 'From: Rakesh <[email protected]>' . "\r\n";
                foreach($disemail as $email)
                    $to = $email;
                    $subject = $succMessage['email_subject'];
                    $message = $smsText;
                    mail($to,'=?UTF-8?B?'.base64_encode($subject).'?=',$message,$header);
            if (stripos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE) {
            $smsText = utf8_encode($smsText);

    i have tried this new charset combination specifically for iphone and i m waiting for response from sweden alliance.....i hope this works fine as iso works great for 8-bit characters.
    would like to have your thoughts though.
    $headers .= "Content-Type:text/plain; charset=\"iso-8859-1\"\n  format=flowed Content-Transfer-Encoding: quoted-printable";

  • TS3276 Well it happened again. Why does my apple me account stop sending mail for no apparent reason. One minute it is working find and 10 seconds latter you get error messages that it does not recognize your password. I am really fed up with the mail sof

    Things were going well. Mail was working fine and then the following error message appears out of nowhere. I had not changed any settings. From that point on all efforts to send mail failed, and the error message appeared even thought I used the password to log back in after I quit. Now, an hour after the problem started it takes my password (on the second try after the error message appears) once and sends a test message. Then, one minute later it gives the error message again and refuses to send anything. Why is mail so inconsistent? What can I do in the future to address the problem?
    Error message reads "The SMTP server "xxxxx" rejected the password for user "xxx" Please re-enter your password or cancel.
    When mail does work again. Should I click the remember this password in keychain or am I just asking for more trouble?
    I'm writing this using my IMac computer in a different room. The error also occurs on my powerbook running my new MacBook Pro 12 inch.
    Fed up Mac user.

    I"m no expert but this used to happen to me all the time (stop downloading, asking for my password, nothing downloading, walking away- 24 hours or more later, all is fine, only to later start all over again)
    Well, i gave up for a long time and stopped using that account with mac mail and only accessed it online..recently went and changed the pop3 to only pop and now it works beautifully and seamlessly. Don't ask me why or how, but it does so thought I'd share.

  • Since updating to 7.0.3 on iphone 4s i can no longer send pic messages and my imessage works only sometimes....please help!!

    I have tried everything, restoring the phone, turning the phone off then on, turning imessage and facetime both on then off and nothing is working!!! I could always send pics before and never had a problem with imessage, what can I do to fix this?

    The ipad cannot send SMS or MMS messages because it is not a cellular phone.
    You can send such messages from your iPad through your iPhone if you have FaceTime activated and Settings > Messages > Text Message Forwarding turned on for your iPad.
    See here: Send messages with your iPhone, iPad, or iPod touch - Apple Support

  • I have Adobe Photoshop Album 1.0 & suddenly cannot send photos thru e-mail.  It looks like it's working ok; but when I hit Send nothing happens and the program stops responding.  Any suggestions?

    I have Adobe Photoshop Album 1.0 & suddenly cannot send photos thru e-mail.  It looks like it's working ok; but when I hit Send nothing happens and the program stops responding.  Any suggestions?

    I have starter 3.0 and cannot share pictures via outlook express. Evidently that version is discontinued and my outlook express does not support the MAPI that is required. I think the only solution is to upgrade to photoshop
    elements or to send photos as attachment to your e-mail.  I have the same problem using Zoom Browser EX sending photos via internet. I spent a whole day trying to resove this issue and have exhausted all options. Just like "Instant share" in HP image Zone that was replace by photoshop album starter 3.0 and now it is out dated.

  • TS4268 Hello, it's been 5 days now since my imessage has not working..and i have chatted to the costumer for two times. I took thier advice and instructions just to enable to send and receive on it but unfortunately until now its still NOT working. Pls.he

    Hello, it's been 5 days now since my imessage has not working..and i have chatted to the costumer for two times. I took thier advice and instructions just to enable to send and receive on it but unfortunately until now its still NOT working. Is there anybody who could help me please?

    Try this even if you have already.  Just make sure to follow the steps specifically.
    Go to settings > Facetime > send and recieve > tap on your apple id and sign out.  If your not signed in then that will work as well.
    Go to settings > Messages > sent and recieve > tap on your apple id and sign out.
    Restart the iPad by doing the slide to power off setup.  Just hold the power button on the top right till it turns off.
    After the iPad has been restarted:
    Go to settings > Facetime > and sign in
    Go to settings > Messages > and sign in
    Wait about 3 min then restart the iPad again.  Same instructions as above.
    When you restart you should be able to use messages again.  If not then call support again and talk to someone higher than the first level support they have.

  • It doesn't work when I press "transfer purchased items from ipod" and I don't know specidicly whitch item I need to transfer

    It doesn't work when I press "transfer purchased items from ipod" and I don't know specidicly whitch item I need to transfer.
    Whenever i press "transfer purchased items from ipod", itunes sync's for about 3 seconds, but I still can't install updates on the ipod without itues warning me about purchased items on the ipod, that aren't in the itunes library. I've tried folowing the steps in itunes help, but I can only find a step guide for when you know the specific item that needs transferring, and I donøt know that specific item.

    This Apple Tech Note explains the process:
    http://support.apple.com/kb/ht1848
    It will transfer all purchased items that the computer you are transferring to is authorised to play: you don't have to select the items.

  • My phone was left in a car overnight and now is not working correctly, screen looks funny and I cannot make calls? Will they be able to assist in  a store?

    My phone was left in a car overnight and now is not working correctly, screen looks funny and I cannot make calls? Will they be able to assist in  a store?

    Make an appointment at any Apple store, see what the genius bar says/does.
    You don't metion whether the car was hot or cold.

  • Read Routing and work center details from transfer order

    Hello
    I am using transaction LT31 to print a form for the transfer order.
    The customer wants me to print a field that is in the work center details of the routing for this material and plant.
    I can see this data with transaction CA02 where i enter material and plant,and then the work centers are beeing displayed.From here i can double click on the work center and see the field Supply area that i have to print.
    My answer now is,how to read details on the work center starting from my transfer order number.Which is the table connection between transfer order table LTAK and the tables where i can find the work center details.
    Thank you

    I have found the solution:
    ltak-tanum = mseg-tbnum
    read aufnr from mseg and go to afko
    mseg-aufnr = afko-aufnr
    read plnnr from afko and go to plpo
    afko-plnnr = plpo-plnnr
    from plpo read arbid and go to crhd
    plpo-arbid = crhd-objid
    from here,we can find the arbpl and the field that i was looking for PRVBE

  • What reports are used to send PO, Conf and Inv from MM to SUS?

    Hi dudes
    What reports are used to send PO, Conf and Inv from MM to SUS?
    Regards
    Raj Kumar

    Hi Raj kumar,
    First implemting MM-SUS or EBP-SUS XI is mandatory. For sending a PO, it 's standard process. You have to define partner profile and once you create a PO system geneartes an IDOC with orders02 and send to XI from there goes to SUS.
    For confirmation you have to run the report rpoddelvery report . this reports sends all the GR's to SUS.
    Please follow the config doc and follow below links
    http://help.sap.com/saphelp_srm50/helpdata/en/56/54f137a5e6740ae10000009b38f8cf/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/62/fb7d3cb7f58910e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/2a/38fd37dcc4e34ce10000009b38f842/content.htm
    Please let me know if any problem
    Thnaks
    Ravi

  • HT5624 I need help changing my account password I know the pass word but its asking me to answer two questions I don't have the answers to. and it gives an Email account to send help to but the Email listed was an old work Email and I no longer have acces

    I am trying to change my apple pass word? I know my Password but when I am trying to change it, it asks for me to answer 2 questions and I have no idea what I put as the answer? there is a button for sending out an Email to help but the Email listed is an old work account and is no longer in use. Can some one help me either change the password or change the old Email address to one that is use?

    You need to contact Apple. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (90031)

  • If I try to send an email ,I got the message "the server doesn't accept this email address".It happened suddenly,before it worked correctly and I didn't change anything

    If I try to send an email ,I got the message "the server doesn't accept this email address".It happened suddenly,before it worked correctly and I didn't change anything

    Change the password on that e-mail account. It's possible that your account has been hacked/spoofed and spammers have used it to blast out junk, leaving you to 'pay the price'. If it's one where you can contact the company, contact them and ask them what's going on. (if this is g-mail, yahoo, hotmail, don't bother, there's no way to contact any sort of support)

Maybe you are looking for

  • How do I find and reload the music that is missing from my iTunes Library

    I lost over 2000 tracks in my iTunes Library They were still on my iPhone but now that I have upgraded to a new iPhone I can't load them onto the new phone Help

  • Google Map Links

    Hi I would like to add links from Calendar events to locations on Google Maps. Ultimately it would be nice if I could create an Automator Workflow that iCal would log in to MyMaps in Google, and link with the location to the actual date. Does anyone

  • Testing file transfer speeds?

    I'm trying to determine the speed at which my home network is running. Is there a Mac application that will allow me to test this? If so, could you please post a link? Thanks!

  • Form Size Memory

    Hello. When I resize or move a form in SBO, the new size and position are stored somewhere by SBO, because the next time I launch SBO and open this form, SBO remembers my modifications. I didn't find anything in the DI/UI API about this. I also tried

  • Can Time Capsule be used as an external drive but not a router

    Greetings,  I have a spare 1TB older Time Capsule that I would like to give to a friend who would like to use it as an external hard drive w/time machine.  They currently have a current iMac with Comcast internet and router which they would prefer to