Can we pass Custom Varaiables from COD to CRM?

We are defining Custom Variables within the Call Flow. One can access the $ANI variable in the Call Detail Page. On the same Line, We would like to access the Custom Variables defined in the Call Flow wtihin CRM. Is this Possible? We dont want to use any Web Servcies though. If so, how?

Dave,
In COD under the Company there's the CRM Integration tab. One of the options there is Custom Tab. Does that do anything? I tried putting a test page in there in a custom tab and nothing happened.
If it did work, couldn't you pass a custom variable (or at least a paramater) to a web page. The admin manual seems to state that you can pass a parameter to a web page. Appendix C and E.

Similar Messages

  • How can I pass the photos from one iphone to another?

    how can I pass the photos from one iphone to another?

    Use the Beaming feature. See the info at the ? In iPhoto for iOS.

  • How can i pass the music from my ipod touch to my mac

    how can i pass the music from my ipod touch to my mac

    If the music on the iPod was purchased through iTunes you can try Transfer Purchases.
    Connect the iPod to the Mac and launch iTunes. Right click on the iPod name on the left side of the iTunes window under the devices heading and select Transfer Purchases. That should transfer the music into the iTunes library on the Mac.
    iTunes Store: Transferring Purchases

  • Migration from CoD to CRM.

    Hi Experts,
    I need to migrate Opportunity data from CoD to CRM on premise for my client.Could you please let me know if the table structure in CoD is same as that of CRM on premise? Any tips on the migration strategy would also be appreciated.
    Regards,
    Aneesh

    Hi,
    What version of CoD is your customer currently using?
    Regards,
    Parul

  • Bdoc Error: PRODUCT_SRV while download Customizing Objects from ECC to CRM

    Hello,
    we have tried to download Customizing Objects from ERP to CRM we getting Bdoc error PRODUCT_SRV
    Please any help us in replicating customizing objects ECC6.0 to CRM7.0 Ehp1.
    Bdoc Type:PRODUCT_SRV
    Thanks,
    adi

    Adi,
    Where do you get the erorr? If you're downloding PRODUCT_SRV, then this is not a customizing object. Please check for related inbound and outbound queues in CRM and ECC for errors. Please also check SMW01 and see if you have any BDoc's in error. Give us the full error text of any errors found.
    If you get the problem with customzing objects, please let us the object name(s). Is it just one object or all customizing object?
    Best regards,
    Brian.

  • Can we download employee data from ECC to CRM using standard middleware?

    HI,
    Can we download employee data from ECC to CRM using standard middleware? If yes pl give me the procedure.(not using HR ALE/IDOC)
    Thanks,
    Regards,
    PV

    Standard replication for employee to CRM is using ALE.
    BDoc send information for CRM for other business partner. If you want to use BDOC message for send employee to CRM, you should build your own BDOC message that read HCC Table and send this information to CRM.
    However send this information using ALE is not difficult. Why don't you wan to use ALE?
    Regards,
    Lyda

  • How can I pass a variable from Test Stand to CVI by reference

    Hi!
    I can't to pass numeric or boolean variable from Test Stand (for example: FileGlobals.StopFlag) into the step (CVI function).
    Function prototype: 
    void __declspec(dllexport) __cdecl PC2_WaitWhileResponceAppear(tTestData *testData, tTestError *testError, int *iStopFlag).
    When variable has bin changed I can't see this change from my function.
    CVI 2010, Test Stand 2010
    Can anybody help me?

    Hey Rombar,
    It is certainly possible to pass variables by reference; for example, if you go to <TestStand Directory>/Examples/Demo/C and open the computer.seq file, you can see one of the example sequences that uses CVI modules. If you click on one of these steps, you'll see that some of the parameters, such as the error information, is passed with pointers. This is a pass by reference.
    To help narrow this down, it'd be good for us to figure out a few things about how the code is run. First, if you go to Configure > Adapters, select the CVI adapter and choose Configure, you can see options for this adapter. Do you have it configured to run in an external instance of CVI or as an in-process call?
    Also, if you're wanting to see a change made in TestStand in your external code, this makes me think that you're wanting to run the code and then continue to execute your TestStand sequence while the code runs. How did you configure this behavior? For example, are you calling this code as a separate sequence in a new thread, or are you using another method to run this code while the sequence continues to run?
    Finally, if we could see a screenshot of how you're configuring the parameters on the TestStand step, that might be helpful as well.
    Daniel E.
    TestStand Product Support Engineer
    National Instruments

  • How can I pass an exception from one thread to another thread

    If I create a new class, that will extends the class Thread, the methode run() can not be use with the statement Throws Exeption .
    The question now: Is there any possibility to pass an exception from one thread to another thread?
    Thx.

    It really depends on what you want to do with your exception. Is there some sort of global handler that will process the exceptions in some meaningful way? Unless you have that, there's not much point in throwing an exception in a thread, unless you simply want the stack trace generated.
    Presuming that you have a global handler that can catch exceptions, nest your Exception subclass inside a RuntimeException:
    public class NestedRuntimeException extends RuntimeException
        private final m_nestedException;
        public NestedRuntimeException(final Exception originalException)
            super("An exception occurred with message: " + originalException.getMessage());
            m_nestedException;
        public Exception getNestedException()
            return m_nestedException;
    }Your global handler can catch the NestedRuntimeException or be supplied it to process by the thread group.

  • How can I pass Global Variable from Page1 to Page2

    I have the following senario.
    Pag1 - report is based on following PL\SQL
    declare
    g1 varchar2(100);
    begin
    g1 = select * from emp where dept = 10;
    return g1;
    end;
    Now I have Page2 - based on following PL\SQL
    declare
    g2 varchar2(100);
    begin
    g2 := g1; -- here i want to use variable g1???
    return g2;
    end;
    My question is - How can I use variable g1 from P1 in my new page P2.
    Thanks,
    Deepak

    Hi Andy,
    Thanks for the clarification.
    I did exactly the same, created a new Region with HTML (PL\SQL) and got the output. it was fine.
    Now when I am using exactly the same code in a Report (PL/SQL function returning a SQL Query), I am getting the following error.
    DECLARE
    g VARCHAR2(100);
    BEGIN
    g := 'This is a test string';
    APEX_UTIL.SET_SESSION_STATE('G_SQL_STRING', g);
    htp.p(v('G_SQL_STRING'));
    END;
    ERR-1002 Unable to find item ID for item "FLOW_SECURITY_GROUP_ID" in application "4000".
    ERR-1002 Unable to find item ID for item "G_SQL_STRING" in application "4000".
    I am doing the same thing, nothing changed....only difference is in 1st case I am using HTML (PL\SQL) Region and in 2nd case using the REPORT Region (PL/SQL function returning a SQL Query)
    thanks,
    deepak

  • Can you send custom events from one form to another?

    I have a compli
    cated application, where I about hundred inp
    uts organized in several input forms. Some of the forms
    require data which has been input in other forms. I have tried to
    dispatch custom events from one form to another, but it dispatches the
    whole form and I only need one or two items.
    Ha anybody else come across such a problem?
    Svend

    One way is to share data in a static singleton

  • Delta load of customizing objects from R3 to CRM

    I need to set up a delta load for customizing objects for ex: DNL_CUST_BNKA from R3 to CRM.  Is there any documentation on this subject?  Please advise.  Thanks.

    This is what I got from SAP
    Bank Details information is a customizing object, and is not designed
    for frequent changes, because there's no delta download for customizing
    objects. If you create new Bank/change detail or delete an old one,
    you have to perform initial load manually for DNL_CUST_BNKA again.
    You can also do a request download of the replication object
    'DNL_CUST_BNKA'to get some bank data added later on.
    (Transaction \R3AR2 ).
    You will need to do a request download of bank data from time to time
    whenever you change the bank details. This is currently how it can be
    done in SAP Standard.
    If you change regularly bank master data:
    The data has to be in sync between R/3 and CRM. If you make changes
    often to the bank master data, you might consider scheduling a regular
    job. See below for steps.
    1. Transaction R3AS
    2. Load Object = DNL_CUST_BNKA
    Source Site = your R/3 system
    Destination Site = your CRM system
    3. Menu Goto > Variants > Save Variant
    4. Enter a Variant Name and Description
    5. Start Transaction SM36 to define a background job
    6. Select the Job Wizard button:
    In step Defining a Job Step, select ABAP program step
    In step Define an ABAP Program Job Step, enter ABAP program name
    SMOF_DOWNLOAD and the variant you created in step 4
    7. Click on Job Wizard and follow the steps, choose ABAP Program
    SMOF_DOWNLOAD and the variant you created in step 4
    8. Select start time Immediately
    9. Press Complete to finish
    10.Choose Job Selection (SM37)
    11.Enter the Job Name -> should have status finished
    Schedule the job (SM36 > start condition) according to how often you
    change your bank

  • Customer replication from ECC to CRM

    Hello everyone,
    I am having some difficulty replication a customer from ECC to CRM.
    In our environment, customers are generally created from CRM & then replicated to ECC.
    Now we are creating a new Distribution channel & hence want to extend all our existing customers to the new DC.
    Since I am a SD Consultant, I was thinking of extending the customers in ECC.
    I tried extending a customer which was originally created in CRM. When I extended it to the new DC in ECC, it dint come over to CRM.
    I cannot see any BDOC in SMW01 also.
    Also when I checked the Filter setting in R3AC1 for objects BUPA_MAIN & Customers .. there is nothing set in the filters for the source ECC.
    Do I have to check any additional objects which I need to check ?
    Or is it that no settings means nothing created in ECC would come over ?
    Can anyone guide me so as to understand why this is happening.
    Also if there are any filters which i need to check, can anyone tell me what tcode & what adapter objects do i need to check ?
    Thanks
    Vin
    Edited by: vinit parkar on Aug 3, 2010 10:58 PM

    Hi,
    If you are downloading Customers from ECC(XD01/XD02/XD03) then CRM uses the adapter object CUSTOMER_MAIN and not BUPA_MAIN. You can check if there are any filters in this object.
    Alternately you can check if the delta is active in ECC. I do not remember the transaction for checking this but you can find the same from the menu path.
    Cheers
    Binai

  • Access Report Custom Functions from code

    Post Author: leedo
    CA Forum: .NET
    Hello,
    I am using VS2005 (VB) and was able to change formula text from within code using the "FormulaFieldDefinitions" object. However, I am having problems finding out how I can do the same to Report Custom Functions.  The reason I am doing all this is that I noticed during my Windows app is running the source of my .rpt file is thrown in the user "Local Settings\Temp" folder and all code is revealed by simply opening that file. Please help. ThanksLeedo

    Post Author: MJ@BOBJ
    CA Forum: .NET
    It looks like it is not possible to access the custom functions within a report using the CR .NET SDK.  However, to address the potential security issue that you may be concerned about, is this a Windows or ASP.NET application?  If this is an ASP.NET application, then you shouldn't have to worry about the security as the end-user (client) will not be able to access that folder since the rest of the web server is typically unaccessible by the client. 
    Another way to secure your reports is to use what we call "managed reporting" solutions such as Crystal Report Server or Business Objects Enterprise, which manages reports securely and your users are only allowed to access/see what you allow them to.  These solutions also provide public SDKs so you could incorporate the system into your own applications.  For more information, go to www.businessobjects.com/products.

  • How can I view customer information from SOST report to whom mail was sent to?

    Process I have followed:
    I run F.27 transaction to send the monthly account statements to customer, I can see the detail of the mails sent to customers from SOST report but a recent requirement has come up and I want to see the detail of customer e.g. Customer Number, Customer Name e.t.c. these details are not visible in SOST report. As I am sending mail to multiple customers hence I can not use the display document feature to view them independently.
    In SOST report I can see only the email address to whom the mail was sent to, but how can I see the customer's number or Customer name to whom mail was sent to. Is there any other way to view this detail?

    This works! But when I assign C_FINAA-MAIL_BODY_TEXT to a text lets say:
    *C_FINAA-MAIL_BODY_TEXT in the process exit 2310*
    C_FINAA- MAIL_BODY_TEXT = 'Hello'.
    It does not display in the email body, do you know what might be the problem here?

  • How can i pass parameter values from html to a shell script

    Hi Guys...
    I had a requirement where i need to execute a sql statement and print the output in HTML page. This report has parameters to enter. So i created a HTML form which accepts parameters. When the submit button is pressed, the action tag in the form invokes unix shell script file. It will open sqlplus and run the sql script file .sql and print the output in the HTML page.
    sql script contains the query and some set options which prints the output in HTML page. Like "SET MARKUP HTML ON"... The query has some parameters like "select * from emp where empno = &&empnumber. I will use the same name "empnumber" while created the HTML parameter form like " <input type = "text" name="empnumber" size="10" align="left">.
    user sees this parameter form and enters some value in to that empno text box.
    My question is how can i catch these parameter values in a shell script and pass it to the sql script to execute it.
    Help Appreciated
    Thanx

    This is a A Bad Idea (tm). This type of CGI processing is old and were (and still is) full of security holes. Very easy to inject stuff (Unix commands and SQL) into it.. To get those parameters into SQL*Plus requires using Unix shell commands to process it - and something like a backquote allows all kinds of nasty stuff to be injected. The Unix shell was never designed to be used as a secure CGI environment.
    There are far better and far superior alternatives. Perl (with Perl_DBI) and PHP (using Zend Core for Oracle) come to mind as web scripting languages.
    Even easier is using HTMLDB. Very few moving parts. Is free. Supports Oracle 9.2 and 10G.

Maybe you are looking for

  • Is there an example of populating a tabular form by selecting node in tree

    Hi, I am using apex 4.1. I have created a tree region, and would like to click on a child node and have it populate a tabular form. My tree attribute has the following query: select case when connect_by_isleaf = 1 then 0 when level = 1 then 1 else -1

  • Import fla file in Flex Project

    I've just found this nice effect in flash. Would it possible to import it in a Flex project? Thanks in advance. Greetings!

  • Role of S Partition in Installing New Operating System

    Hello, I've been taking a look on here and understand that the Q partition is for the backup to factory settings and the S partition is part of the start up system (working with a 2009 T400). I am looking to install Windows 7 and have no interest in

  • How large can a Muse website get?

    Would Muse have any problems with building a website that would be upwards of 50 or 60 pages? There is a potential client that has a TON of content and I'm wondering if this type of project would tax Muse.

  • This is odd- win7 installed and it's OSx airport that's acting up(??)

    So, I've been a lurker in the forums for years, and a previous apple consultant; and I've never had this or seen this problem before! I had to dirty my baby with Win7 for a program, and after a system scrub and time machine restore- everything is bac