How to link accounts of campaigns and see account information '

Hello

(1) I want to associate campaign accounts. Since there is no existing relationship, I tried to do this by using a custom object.

I use the custom object 01. I would like to associate this object cutom, I could do since there is an existing relationship with account on cutom account object.

I created a custom field on the custom object, and I want to create a workflow, such as on the creation of a new record, the value of the custom field is updated to match the address of the associated account.

How do I get there?

The function JoinFieldValue won't let me access the account the field "Billing" address (perhaps because it is a block). But not only it let me access another account field, which I renamed him among the fields of abbreviated text provided by OnDemand. I renamed it as e-mail.
I try to open it with this-> JoinFieldValue ('< account >', [< AccountId >], ' <>email address "")

This is the error I get:
The definition of integration component field 'Email' for the integration component 'account' in the 'Account_Occam' object is not valid. (SBL-DAT-00425)
It works fine when I use the field for example < AccountNamel > or < region >.

There is a campaign Id on the account but its not available in account page layout Wizard or account details available in the country.


(2) also, is there a document, in addition to the doc to help that I already, who can tell me the names of system fields of all types of records. For example the name of the account is AccountName, but I don't see any account or other type registration areas, some not all, in the help document. It would be a great help.


Kind regards

(1) address fields count
JoinFieldValue ('', [],"" ")
JoinFieldValue ('', [],"" ")
JoinFieldValue ('', [],"" ")
JoinFieldValue ('', [],"" ")
JoinFieldValue ('', [],"" ")

(2) when you say the name of system... looking for the third parameter of the JoinFieldValue function? If so, it is in fact the XML of the field tag and you can get it from the WSDL web services administration object

Tags: Oracle

Similar Questions

  • How zoom down to the street and see the Canadian city and Provinces name

    Hi all

    I use Mapviewer 11 g with OBIEE 11.1.1.7.1 (Patch of July 2015) version. I'm working to create reports of OBIEE card for Canadian users. I use mapviewer MVDEMO default schema.

    I created some Canadian Provinces and themes of city by using the ISO_A2 query = "CA". I also created a simple Tiler at my end by using a new base map, but it's somehow does not show the Canadian provinces and the names of the cities in the map. It shows all porvinces limits and it is filled with the color but I want to see him as we see in google maps. Can you please help me to fix it? I would like to know how to enlarge it to the street level, but I want to see the name of city, the Provinces and the indicated streets on the map first.

    Thank you and best regards,

    Amit Garg

    OBIEE SampleApp has good examples of this.

    A view of the map consists of the following:

    -A (theme mapviewer) layer to make the measure by location (for example, revenue per State)

    -A background page for additional context (for example, the street level detail). This can come from an external source, if the clients (browsers) to access the OBIEE server have access to the internet.

    -BI analysis with measures and location ID (for example, revenue per State)

    In your case you can use an external symbol tile layer as a background map and use the Canadian provinces and cities themes (aka BI layers) to display the measurements for the card.

  • How can I talk to someone and see and hear without the purchase of a helmet.

    I was contacted by a friend in toronto but I could only hear him for a second, and also could not hear or see me.

    Hello

    1 What is an internal or an external webcam?

    2. If an external webcam, what is the brand and model of the webcam?

    3. in the case of an internal webcam, what is the brand and model of the computer?

    4 is the issue specific to Facebook video chat?

    I suggest you to update the webcam drivers and check.

    Updated a hardware driver that is not working properly

  • How do rotate on a date and see the sum of the value of another column

    Hello

    I searched through the forum and cannot find a query similar to my question feels so post this new thread.

    First of all, it is probably useful indicating that I am using Oracle 10 g.

    I have a table that is used to store the details of the booking (essentially a booking system) and I would use this data to display the details of the customers stay on one line.

    The table has the following columns:
    BOOKING_ID
    CUSTOMER_ID
    DATE_OF_ARRIVAL
    NUMBER_OF_NIGHTS
    NUMBER_OF_PEOPLE
    Some example records could be:

    BOOKING_ID    CUSTOMER_ID     DATE_OF_ARRIVAL    NUMBER_OF_NIGHTS   NUMBER_OF_PEOPLE
    --------------------------------------------------------------------------------------------
    1                    201      13-JAN-2010        5                   1
    2                    202      13-JAN-2010        3                   2  
    3                    202      13-JAN-2010        4                   1
    4                    203      15-JAN-2010        2                   3
    On this basis I would like to display the output so that I can show a sum of the NUMBER_OF_PEOPLE reserved to per customer per day, as such:
    CUSTOMER_ID     13-JAN   14-JAN   15-JAN   16-JAN   17-JAN   18-JAN   19-JAN 
    -----------------------------------------------------------------------------------------
    201                   1       1        1        1        1        0        0
    202                   3       3        3        1        0        0        0
    203                   0       0        3        3        0        0        0
    I watched analytical functions in the documentation and several books of Oracle that I have, but have so far struggled to find how to make the performance desired. Even using the excellent response to the previous post on the forum, I got Re: how to count the occurrence of a date in a range I was not able to get a feasible request.

    Any help or advice would be much appreciated.

    Kind regards
    Stu

    Published by: macmanxie on January 10, 2011 21:16

    Hello

    macmanxie wrote:
    ... The suggested approach goes only to return a number if the DATE_OF_ARRIVAL corresponds to the date in the CASE statement, however I have the added complexity of wanting to show a count of all the days that the customer is booked, for, by making use of the NUMBER_OF_NIGHTS. I tried to use some of the examples provided on morganslibrary.org, for example:

    sum( CASE WHEN  TRUNC (arrival_date) between '01/13/2011' and TRUNC (arrival_date+no_of_nights) THEN nvl(no_of_people,0) ELSE 0 END) AS jan_13
    

    but this does not produce the desired result.

    You check if arrival_date is between January 13 and arrival_date + no_of_nights (as if the arrival date could all be posterior to the arrival_date + no_of_nights).
    Are not really interested in whether or not January 13 ib between arrival_date and arrival_date + no_of_nights?

    NVL ( SUM ( CASE
                    WHEN  TO_DATE ( '01/13/2011'
                           , 'MM/DD/YYYY'
                         )          BETWEEN  TRUNC (arrival_date)
                             AND       TRUNC (arrival_date) + no_of_nights
                 THEN  no_of_people
             END
           )
        , 0
        )          AS jan_13
    

    Always format your code. It is important to format your code if you are the only who who will ever read but it is even more important if you are posting on a forum like this and ask other people to read.
    Not to compare the DATEs in the strings; explicitly use a conversion function, like TO_DATE, above, where necessary.
    Both
    SUM (NVL (x, 0)) and
    NVL (SUM (x), 0) get the same results, but the latter is more effective. If you have 1000 lines, the first way is calling NVL 1000 times, but the second way is calling only once.

    If your previous thread
    Re: How to count the occurrence of a date in a range
    Gets you the right data, but it has one row for each distinct combination of customer_id and date, then you can switch it to a form that contains a line by the customer and another column for each date.

    If you need help, post CREATE TABLE and INSERT statements for some examples of data and outcomes from these data. The post you are trying better to a request, including a subquery that gets no cross-the raw table dynamic results.
    There will be a fixed number of columns in the output swing? If this is not the case, how do you deal with that? Which of these options in the thread I posted above)
    Re: County report and the sum of the number of rows by multiple columns
    ) is best for your needs? Than others is acceptable?

  • How to link with ActiveSync4.1 and Tecra M2 via Bluetooth

    I can't establish a Bluetooth ActiveSync connection between my SPV600 Orange and my Toshiba Tecra M2 (20th PTM) portable computer.

    Details - Mobile: Orange SPV 600, OS; Windows Mobile 5.0 ActiveSync 4.1 (build 4841)
    Computer laptop Tecra M2, OS; Windows XP SP2

    Direct connection cable is working Fine.
    Aid?

    Have you ever seen the site Toshiba Bluetooth HowTo section?

    http://APS.toshiba-tro.de/Bluetooth/redirect.php?page=pages/HOWTO.html

  • How to open a vi twice and see the 2 facades.

    Hello.

    I want to put a Sub - VI twice on the block diagram and run them on the same time, showing the 2 front panels.

    The VI has a certain time-loop inside, because I want to use the paradigm of parallel loops.

    It does not work, it shows only 1 front panel at the same time.

    Is this possible?

    Do the reentrant VI (in properties of VI)

  • coffee spilled on a macbook: how to save files with critical and time sensitive information

    Daughter just spilled coffee on his macbook pro with the basic files needed for papers and research in a week.  How can she recover the files needed to access and use the work by the end of the term.

    The Mac dry for 24 hours then try to start.

    If after 24 hours he does not start, make an appointment at the Genius Bar

    If you can't go to an Apple Store, look for an authorized service provider > Apple - find

    If necessary, if all goes well it will be able to restore these files from a Time Machine backup > use Time Machine to back up or restore your Mac - Apple Support

  • How FDF auxiliary accounting information can be transferred to GL?

    Hello

    Is it possible that using FDF in AP R12.1.13 and module when the transfereing GL entries, respective FDF of each line on the AP invoice can be transferred as well?

    How can it be achieved / fact?

    Kind regards

    There is no standard method to do this, but what I had done in the past is to encode the gl_import_hook_pkg to transfer FDF of auxiliaries to GL

  • I have MSN messenger - and now I want to use my web cam in order to discuss and see my friends. But I do not know how:)

    I live in Sweden and want to be able to chat and use my web cam with a friend in England... I don't have any idea what to do - so if anyone out there could help you please me step by step... I feel so helpless :(

    What I do... I logg in and then I don't know much more8 should I go to Hotmail or msn or what else he know?... VERY THANKFUL for an answer... (If its questions my laptop is a Compaq (Windows Vista) Chrome Web browser...) I know a friend who has exactly the same laptop as me - and she uses her webcam - but I can't reach her in time LOOONG so she can help me... So please help me please... It's really important right now :/
    Best regards / / / Anna, Sweden.

    Hello

    Try the steps below and see if they help you in using Webcam on MSN messenger.

    Step 1: Make sure that the Webcam is on

    (a) open MSN Messenger on your computer.

    (b) click on the 'Tools' menu and select 'Options' from the drop-down list.

    (c) look for the "Staff" link and click it with your mouse.

    area d) find the "My Webcam" and select or deselect the option beside where it says "Allow others to see that I have a Webcam." This is convenient for those in your chat list to see if you can have a video chat with them - they have Webcams or not.

    Step 2: How to use Webcams on MSN Messenger

    (a) sign in to your account on the MSN Web site

    (b) locate the "Webcam" icon under your display picture.

    (c) click on the "Webcam" icon

    (d) select "Send my Webcam" to the person you want to send your video.

    (e) wait for your chat partner to accept your Webcam invitation. Once he or she accepts it, your video stream live will begin.

    (f) finishing by sending the stream by clicking the video new "Webcam" icon.

    (g) open the MSN Messenger program on your computer

  • How can I cancel a subscription and get a refund? An application does not work, the "assistance of the developer page" link provided by itunes is broken.

    How can I cancel a subscription and get a refund?

    An application does not work, the "assistance of the developer page" link provided by itunes is broken, and email provided by the application developer's sole means of support, but no response in 3 weeks to multiple addresses.

    The page you posted has since how to stop an auto-renewal subscription to renew again (see, change, or cancel your subscription - Apple Support).

    To contact iTunes support try http://reportaproblem.apple.co or https://www.apple.com/emea/support/itunes/contact.html

  • How to link to my lazy account?

    I couldn't see where my bx57, I can enter my account information real slacker so I can get all my custom radios. Ditto for Pandora. Help!

    You must register your Blu - ray player first to the essence of my Sony @ https://internet.sony.tv/customer.
    Click Custom music and video Services and select the service that you want to link with the device.

  • How can I prevent anyone using a shared computer to open Windows Live Mail and see my email?

    We have a shared computer in our House running Vista Home Premium. When you open Windows Live Mail my email inbox is displayed. How can I prevent anyone who uses the computer to this opening program and see my email?

    The only way to do is to setup Windows user accounts for each user.  Other users cannot see what another user sees.

    Steve

  • My old MSN e-mail account was hacked and blocked. I created a new Windows Live Hotmail account. How can I access the emails and blocked my old account contact information?

    My old MSN e-mail account was hacked and blocked. I created a new hotmail account. How can I access the emails and blocked my old account contact information?  Thanks for any help!

    original title: hacked E-mail

    Hi BigByrd,

    I'm afraid it's almost impossible to access the old MSN your Hotmail account is newly created account.
    See you soon ~
  • I deleted some of my documents folder undeletable file, and after reboot, I see that lost my desktop icon, how can restore my icon file and office

    How can I solve this problem?

    Original title: with a peogram I deleted some of my documents folder undeletable file and after reboot I see who lost the icon on my desktop, how can I restor my file and desktop icon?

    Have you tried a System Restore yet?  Restore to a previous State could solve your problem.

    For Windows 7 and Vista: [link]
    For Windows XP: [link] (scroll down to restore from a Restore Point)

    Also, could you please tell us what do you delete?

    Thank you
    Digilodger

  • How to share a link to a file and have the other person to download the file without having to add them explicitly as a member, as does dropbox?

    With Dropbox, I right click on a file in my designated Dropbox folder and choose sharing link Dropbox.  This operation copies a single URL that I can send to anyone then download this file and this file only.  I didn't add people to my access list to allow the download.

    How do I do this with Oracle Documents?  I have an out of the large files that I prefer not to send by e-mail, however, I won't add everyone in society as a member to access my list.

    There is an option called public links that allows you to do. Select your article and click on share. This throws a pop up dialog box. On the left side of the dialog box, you can have 3 options - members, links, public links. If links Public option no there is not, then your service administrator has rejected their use. Links Public option is controversial in the enterprise space. Initial offering of DropBox didn't hesitate to the provision of the public links because the content was guaranteed to be owned by the user to dropbox. However, at the level of the company, the content belongs to the company owner, so service administrators can choose not to allow this feature. It's down to your organization.

    If you see the Public links option, click it and the right side of the pop-up dialog box will change. You can specify:

    • a name for each link you create (so you can keep track of what link is which).
    • Link permissions, only the following are available for obvious reasons - Viewer, Downloader, contributor
    • Link the Date of expiry - date after which the link does not work
    • Access - code an access code which you may disclose to the recipient expected by other means of your choice. This access code guarantees security on a link that could otherwise be used by anyone

    You can create several public links to the same article, and each of them may have the settings above, then you might have a link to downloaders and a separate link for contributors, for example. Each link can then be sent, either by copy/paste via the email button to the right of the link. You can also change the link using the pencil icon, so you it unexpire or reset the expiration date. You can also remove a link by using the trash beside him.

    I hope that explains the function public link.

    Kind regards

    Frank.

Maybe you are looking for