Automatic triggering of Lead document from another preceeding lead document

Hi,
In my project we are using two lead documents for qualification of a Prospect one will be done by call centre employees and other by the sales rep.
  I want to create a Second lead document automatically from the first lead document Qualification level. Can this be achieved by an action profile or would BAdI implementation be needed? Please provide a solution for this. Thanks in advance.
With Regards
Selvam T

Hi Robert,
  Thks for your suggestion. I tried to configure but i face some issues in Triggering. Can you explain it in Detail.
With Regards,
Selvam T

Similar Messages

  • How do I get rid of the Microsoft Setup Assistant loop? I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word, and stuck in a loop?

    I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word (for 2008), and stuck in a loop?
    Whenever I select Word Microsoft Setup Assistant appears, asks for feedback, then after selecting okay (both on saying yes or no to feedback) goes on to a registration page. When I click on this it says I've already registered so I just click okay, and then move on to a update page. After this, if I click on Word, the process repeats itself.
    As I said, I don't have the disk to reinstall, and can't find the Office Settings to delete as many pages have suggested I should try. Safe Boot restarting also hasn't worked... Really stuck and need Word very soon for work.
    If you can help, that would be great, and feel free to ask any questions about the situation as I'm not an expert here.
    Cheers,
    Jack

    First, export your contact from iCloud.com and save them on your computer in a safe spot some where (like you desktop).  Use this to help you do this: http://support.apple.com/kb/PH3606
    Next, on both of your devices, go to Settings > iCloud and turn on contacts and select Merge. Then turn off contacts and select 'Delete form my [device]' when prompted.
    Now go back to iCloud.com and select a contact (yes they will all be messed up again) and select Command+A on a Mac or Control+A on a PC to select all of the contacts.  Tap the delete key on your keyboard (or right click /control click a contact and select delete).
    You iPhone, iPad and iCloud.com should not be empty for contacts.
    Go back to Settings > iCloud on both devices and turn on contacts again (you should not see merge this time).
    Next, go back to iCloud.com and import your contacts (those exported .vcards).  You can either drag and drop them into the empty contacts list in your web browser, or you can use the gear icon to import.
    You cleaned up contacts should import correctly into iCloud.com and sync to both of your devices.
    Good luck.

  • How can I retrieve my pages documents from another account in the iCloud

    I was using pages in my ipad. Then I bought a Mac Pro and signes with a new iCloud account. In order to sync it with my ipad I deleite the previous iCloud account from the divise and started it with the new account. I previously choose to keep all the documenta before deleten the account.
    Now when opened pages I can not see any of my previous doccuments

    You'll need to copy the Pages documents from the old iCloud account to the new one.  To do this, go to iCloud.com from your Mac and sign into the old account.  Launch Pages beta and confirm that your documents are still there.  Assuming they are, select them, then click the gear icon on the menu bar and choose Download Documents and choose the Pages format.  This will download copies of the documents to your Mac.  Drag the downloaded documents to your desktop and double-click on them to extract them from the .zip files.  Next, sign out on iCloud.com and sign back into your new iCloud account.  Launch Pages beta in the new account, then drag and drop the documents from your desktop to the Pages beta window to upload them to the new account.  You can now access the documents from devices signed into your new account.

  • Importing Mail file and documents from another account on same Mac

    Hi,
    I a new to Mac. Have a great new iMac. It's all working fine.
    Initially to simplify things I have set up everything under the main admin account (mine).
    In particular, I have installed both my and my wife's e-mail account documents in the Mail and Documents folders of the master account.
    Now that we're 'stable', I have set-up a separate account for her such that we keep our preferences, e-mails and documents separate.
    When setting-up her account I now can't find how to import 'her' folders from the Master account Mail application and Documents folder. Indeed, those folders appear grey and unaccessible from her account (I guess that's the basic idea abut separate account but I am nevertheless looking for ways to move those files.
    Any pointers?
    Tx,
    AH

    login to the main account and drag the folders to the "Drop Box" folder in her "Public" folder (in her home folder in "Users" at the top level), the go to her account to move the to the correct locations.

  • Error creating document from using list using Document Template

    Hi All,
    I am trying to create a document from sharepoint list and upload it to a document library using item added and item updated event receiver methods. I can create metadata from list update in document library but unable to open the document. The error message
    I get is "we're sorry. we can't open "Filename" because we found a problem with its contents. no error detail available". Please see the below code.
    SPSecurity.RunWithElevatedPrivileges(delegate()
                       try
                           string TemplateUrl = string.Empty;
                           SPWeb web = properties.OpenWeb();
                           web.AllowUnsafeUpdates = true;
                           SPDocumentLibrary olist = web.Lists["NewLibList"] as SPDocumentLibrary;
                           String url = olist.RootFolder.ServerRelativeUrl.ToString();
                           SPFile file = null;
                           file = web.GetFile(olist.DocumentTemplateUrl);
                           if (file != null)
                               SPListItem oItems = properties.ListItem;
                               web.AllowUnsafeUpdates = true;
                               byte[] readStream = file.OpenBinary();
                               SPFile uploadedFile = olist.RootFolder.Files.Add("http://site/subsite/Libraryname/" + properties.ListItemId.ToString() + ".docx", readStream,
    true);
                               SPListItem listitem = uploadedFile.Item;
                               listitem["Firstname"] = oItems["Firstname"];
                               listitem["Lastname"] = oItems["Lastname"];
                               if (uploadedFile.CheckOutType != SPFile.SPCheckOutType.None)
                                   uploadedFile.CheckIn(string.Empty);
                               listitem.Update();
                               uploadedFile.Update();
                               web.AllowUnsafeUpdates = false;
                       catch (Exception ex)
                           EventLog.WriteEntry(EventLogName, ex.Message, EventLogEntryType.Error);

    Hi,
    Please try to use the code below:
    SPSecurity.RunWithElevatedPrivileges(delegate()
    try
    string TemplateUrl = string.Empty;
    SPWeb web = properties.OpenWeb();
    web.AllowUnsafeUpdates = true;
    SPDocumentLibrary olist = web.Lists["NewLibList"] as SPDocumentLibrary;
    String url = olist.RootFolder.ServerRelativeUrl.ToString();
    SPFile file = null;
    file = web.GetFile(olist.DocumentTemplateUrl);
    if (file != null)
    SPListItem oItems = properties.ListItem;
    web.AllowUnsafeUpdates = true;
    Stream readStream = file.OpenBinaryStream(); //file is SPFile type
    SPFile uploadedFile = olist.RootFolder.Files.Add("http://site/subsite/Libraryname/" + properties.ListItemId.ToString() + ".docx", readStream, true);
    uploadedFile.CheckOut();
    SPListItem listitem = uploadedFile.Item;
    listitem["Firstname"] = oItems["Firstname"];
    listitem["Lastname"] = oItems["Lastname"];
    listitem.Update();
    uploadedFile.Update();
    uploadedFile.CheckIn(string.Empty);
    web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    EventLog.WriteEntry(EventLogName, ex.Message, EventLogEntryType.Error);
    If the issue still exists, I suggest you dubug your code and check whether line of code error.
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • DOM - create new document from part of other document

    Hi.
    How to create a document from part (sub tree) of the other document?
    document 1.
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
    <meta1>blaa blaa</meta1>
    <meta2>blaa2 blaa2</meta2>
    <data>
    <info>
    <name></name>
    </info>
    </data>
    </root>
    document 2 shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <data>
    <info>
    <name></name>
    </info>
    </data>
    Or can I just remove root and meta elements?

    Something like this:DocumentBuilder db = // create a DocumentBuilder;
    Document newDoc = db.newDocument();
    Node newRoot = // the Element you want to be the root of the new document;
    Node root = newDoc.adoptNode(newRoot);
    newDoc.appendChild(root);

  • Generate MSDS document from another system

    Dear All,
    We have one EHS system (HQ) with all the report templates & variants for MSDS document in place.
    Now we're going to implement roll out EHS in another server (country).
    The MSDS report must be control and same with the one in the HQ. 
    But we don't want to manually maintain the report template & variant in the country server but read it from the HQ system instead.
    Is it possible to do this?
    Or any better idea to achieve this?
    Thanks.

    Hello Peer
    assuming you would like to use system B to use "report shipping" functionalities you need to consider these topics:
    1:) first you must distribute your substance (REAL_SUB) using SUBMAS (ALE)
    2.) second you must distribute PHRASMAS (ALE) (you need phrases to prepare accompanying leter)
    3.) You must distribute the materials from REAL_SUB to B
    4.) you must distribute the Business partner information from A to B
    5.) You must link WWI servers on system B
    6.) You must make available corresponding GENVARs manually ! (if you do not change the number of GENVARs this need ot be done only once) and you must prepare report symbols (chapter 1 !)
    7.) You must prepare the "accompanying" letter in system B
    PLease refer to SAP EHS documentation (how to perform ALE transfer)
    As explained: it is very important and critical that the EHS customizing of A and B must be the same and you need a DMS/DVS or Archive in system, B as well !
    Furthermore you must prepare the whole EHS customizing to do the report shipping topic; schedule jobs (report shipping) , assign printers etc. etc. prepare access concepts (so that e.g.  cg50/cg54 can be used)
    If you have performed the necessary set up in most cases keep this in mind: you must actively mark a substance (REAL_SUB) as ALE relevant. There is to my knowledge no automatism. Therefore if new REAL_SUBs are generated with materials having MSDS which need to be distributed from system A to B then you must perform this activity manually.
    In any case: the set up described above is possible and stable. You can use the ALE( there are some Exits there) to make sure that only MSDS which are valid in e.g. FR must be distributed and not all MSDS etc.
    With best regards
    C.B.
    Edited by: Christoph Bergemann on Sep 15, 2011 4:47 PM
    Edited by: Christoph Bergemann on Sep 15, 2011 4:47 PM
    Edited by: Christoph Bergemann on Sep 15, 2011 4:48 PM
    Edited by: Christoph Bergemann on Sep 15, 2011 4:48 PM
    Edited by: Christoph Bergemann on Sep 15, 2011 4:49 PM
    Edited by: Christoph Bergemann on Sep 15, 2011 4:49 PM
    Edited by: Christoph Bergemann on Sep 15, 2011 4:50 PM

  • IOS/Android client - Open document from another app

    Hi,
    Is it possible to call the SAP Mobile Documents client for Android and/or iOS directly opening some specific document?
    I would like to know if I can integrate Agentry Work Manager with Mobile Documents, so the goal is to have some kind of link for each Work Order document in the Agentry client, and when user taps on it, open the related document already synched and stored in the Mobile Documents client (it should work offline).
    Is this possible?
    Regards,
    - Marçal

    Hi,
    SAP Mobile Documents can connect to many backends (CMIS compliants ones, ABAP backend etc..)
    Each documents in the backend through SAP Mobile Documents can be accessed by unique URL.
    These URLs are described here: URLs for App-to-App Integration of SAP Mobile Documents - SAP Mobile Documents - SAP Library
    You have to simply fire these URL from your app and SAP Mobile Documents Mobile Apps will highlight or open it for your based on your type of URL.
    Regards,
    Ashwani Kr Sharma

  • How can I force browser to open a pdf document in a new tab from another online pdf document?

    Hello everybody,
    I create the internal magazine in InDesign. Then I create a pdf document in which there are some URL. After having verified that every link works, I upload this pdf on our website to be read online. The pdf document opens in the browser.
    The problem is that when people read the pdf, they click on the links but they open in the same tab than my pdf.
    What can I do to make sure that every link opens in a new tab?
    My apologies for English mistakes and thank you for your answers.

    I already found the Javascript solution in Acrobat... It works more or less (layout problems), but it's impossible to do one by one as I have many links in my doc...
    I don't understand why it's not possible to make it directly with InDesign before exporting it in pdf or while exporting it. There should be an option in the "new hyperlink" dialog box or in the pdf parameters.
    Does someone have another idea?

  • If I try to cut and paste to firefox from another site or document, it wont paste- why not?

    I have tried to move some text from my website forum on Explorer and Facebook to my website opened in firefox, but nothing happens, just comes up with a vertical cursor, like a capital letter I, but no text pastes.

    Let's start with the assumption that it's most likely to be a temporary glitch.
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    Firefox menu) > Preferences > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the AOL webmail site:
    Tools menu > Page Info > Security > "View Cookies"
    Here you can remove your individual aol cookies.
    Then try reloading the page and logging in again. Any improvement?
    Microsoft Word has a special way of constructing HTML that preserves attributes unique to Word documents. However, when you paste that special HTML into a webmail editor, it may not be interpreted the same by different sites, all of which want to cleanse dangerous elements from that HTML. Maybe AOL has changed something? Do you know whether the messages appear blank in other browsers?
    As a temporary workaround, if the messages do not contain embedded images or other non-textual elements, you could strip the HTML formatting by first pasting into a plain text editor such as Notepad, then copying from there and pasting into your email. To restore formatting (e.g., bold, italic, underline), you would need to use your webmail program's tools.
    Finally, I'm not familiar with Firefox 5.1.9. Could you double-check that version number?

  • Link to one keynote document from another

    Hi there,
    like many designers, I use Keynote for doing mobile/web design & prototyping. While never meant for this, it's actually one of the fastest tools out there. One of the things that is limiting though, is that you for sane reasons only can have one slide size per presentation.
    But in some cases I need to "zoom in" on design details, and make a bunch of slides with smaller resolution. Is there a way to link to another keynote file from a slide? I still have 5.x and obviously 6.2.x and I'm happy to put the linked file anywhere locally. I get that I can e.g. link to a dropbox file but that doesn't quite do it.
    Thank you!
    Simon

    It is awful that Apple has dropped this functionality from Keynote. For me as university teacher this is quite painful and requires major revisions for nothing and without any real satisfying solution, not even with AppleScript. All my courses and lectures are made with Keynote and since complex, made from many files, which I could easily swap as needed, a system that made good use of this wonderful file linking feature as available in previous versions.
    I find it appalling that Apple has started to neglect power users like me in recent years!

  • Start Keynote document from another iPad app

    Hello,
    We would like to call Keynote from an iPad application we made. It seems that there is no URI scheme supported.
    We have the document in our application's sandbox and the goal is to call Keynote to make it open this document.
    Thanks for your help.
    Felix

    It is awful that Apple has dropped this functionality from Keynote. For me as university teacher this is quite painful and requires major revisions for nothing and without any real satisfying solution, not even with AppleScript. All my courses and lectures are made with Keynote and since complex, made from many files, which I could easily swap as needed, a system that made good use of this wonderful file linking feature as available in previous versions.
    I find it appalling that Apple has started to neglect power users like me in recent years!

  • Sending email in one account, triggers a password request from another

    I have several email accounts operating in MAIL. I have recently noticed that when I send an email in one account, a second account pops up and requests a password. I used to type in the password, but then I thought: has a nasty virus infected my system and somehow, whenever I send emails, they are also secretly being sent somewhere else via this second password-seeking account.
    There is nothing in the Outbox for the second account, so I'd like to find out what is going on. Is this an indication of a virus, or has MAIL gone haywire?
    I can get around the problem by clicking OK to the password request from the second account (but not having typed anything in), which sends me to a window asking me if I want to use another account to send the email. I select the first account (the one I actually want to use), it asks me for the password, and away it goes.
    Thanks in advance for any comments.
    Guy Burns

    Guy,
    You need to provide us with some additional info about the SMTP you are using as the Outgoing Server for each account, and what, if any, relationship that SMTP has to both accounts. The use of the SMTP provided by your ISP, for example, if Authenticated either by Password or by SMTP after POP3 methods, can trigger a password prompt that looks the same as that for the Incoming server of an account provided by that ISP.
    More info, please.
    Ernie

  • Triggering a Scheduled WF from another WF

    Hi,
    My requirement is like, I have to check the DB table contineously to find the status of the user. If the status is changed from "Peding" to "Complete" then I have to send a mail to user and terminate the workflow.
    So, What I am thinking is, I have to a created a main WF from that I am planning to trigger the scheduled WF. Main WF should be kept in hold till the scheduled WF returns the result.
    In Short : Scheduled WF should be programmed to check the status in a DB table. If the value is changed from "Pending" to "Complete", Control should come back to main WF and Both WF's should be terminated.
    All your valuable suggestions and inputs are welcome. If any one can help me I would be apreciative.
    Thanks
    Ilayarajan

    You should create a mini-workflow that monitors the user status and returns a true/false if the status is Complete.
    In your main WF, you can add an Activity that invokes the other WF, assigns the arguments to the WF and wait for the response. Depending on the response, you can make a transition in order to create a loop, in which the Activity is executing the monitoring WF until it retunrs a true.
    The only issue that you have to resolve is to add a delay in the process. It may be implemented as a Java method or whatever you want.
    Here is an example of the WF call:
    <!-- In your main WF... -->
        <Activity id='2' name='executeMonitoringWF'>
            <Variable name='complete'/>
            <Action id='0' process='Configuration:MonitorUser'>
              <Argument name='user'>
                <ref>user</ref>
              </Argument>
              <Return from='complete' to='complete'/>
            </Action>
            <Transition to='Checkin View'>
              <isTrue>
                <ref>complete</ref>
              </isTrue>
            </Transition>
            <Transition to='executeMonitoringWF'>
              <isFalse>
                <ref>complete</ref>
              </isFalse>
            </Transition>
            <Transition to='end'/>
            <WorkflowEditor x='160' y='415'/>
          </Activity>Hope it helps

  • Automatically Log In to APEX from another site

    Check out this code:
    <FORM method="POST" action="http://whatever.com:1234/pls/apex/wwv_flow_custom_auth_std.login">
    <input name="p_flow_page" type="hidden" value="104:1">
    Username: <input name="p_uname" type="text" value="yourusername"><br>
    Password: <input name="p_password" type="password"><br>
    <input type="submit" value="Login to APEX">
    </FORM>
    If you save this code on any website (even on a different server), people can use the form to log into your APEX application.
    The problem though, is when you change your Authentication Scheme to something other than the default.
    I'm using a custom Auth Scheme, and it works great for normal logins, but it unfortunately breaks the above code. Anyone have any ideas on what to change in the above HTML to fix this?

    Scott,
    I'm using APEX v3.0.0.00.20
    My custom auth scheme uses an Authentication Function that returns a boolean.
    Under "Authentication Function" on the Authentication Schemes Page, I have:
    return apps.validate_login_bool
    which basically checks if the user/pass is in my custom table. No other changes were made to the login page.
    The custom auth scheme works (meaning it only lets people log in if they use their user/pass from my custom table), but only if they go to the APEX login page, and manually type their credentials.
    If a user uses the HTML form above to login, they are brought to the URL http://whatever.com:1234/pls/apex/wwv_flow_custom_auth_std.login, which shows a pure white page, regardless of whether they use a valid username/password to login.

Maybe you are looking for

  • Need help in writing a .jsp page

    Hi Guys, I am new to JSP. My requirement is " I have a link on my webpage. When the user clicks that link, a HTML page is displayed which has parameters to be entered (for ex: from_date , to_date). When the user clicks the submit button, a jsp page s

  • How do I export a freeze frame in CS4?

    There's no longer an "Export/Frame" menu option in CS4 (as there was in CS3). How can I export a simple freeze frame from Premiere into another editing program, such as Photoshop? Thanks.

  • Problem with the trackpad

    I am new to Mac .. I got my laptop a month ago and I wanted to clean it.. with a little wett peace of fabric it was turned off and after I finished I left it turned off till the next day.. then I turned it on and found out that the trackpad is too sl

  • Lenovo Thinkpad Yoga Camera problem

    Hi all, I had my screen replaced under warranty a few months ago due to the retention problem, after I got it back I noticed the webcam wasn't working I didn't put much thought into it and thought i had to update drivers since it had been replaced. N

  • CommandFailedException : A350 NO FETCH failed

    javaMail 1.4.4 demo msgshow.java using IMAP protocol An exception occurs during reading a "Undeliverable" message genérated by Microsoft Outlook 14.0 This is the message envelope Oops, got exception! A350 NO FETCH failed. Mail cannot be parsed. javax