Is it possible to add data link at runtime

Hi,
I would like to get the data from a temporary table and needs to create a data link with an existing group at run time to display the temporary data in the same frequecy of the other groups.....thanks Bcj

datalinks can link two tables or queries (of more tables) whether the tables are temp or not. If the temp table needs population at run time, do it in Before Report Trigger.
I think Formula Columns can be employed/calculated in same groups as intended, if datalinks are not used.
DC

Similar Messages

  • In Numbers 08 is it possible to add a link to a file on the local disc within a cell?

    In Numbers 08 is it possible to add a link to a file on the local disc within a cell?

    As it's a feature asked several times, maybe it will be available in the next version.
    I don't know features available in Excel.
    Sometimes ago I posted an AppleScript which may perhaps fit your needs.
    If you insert in a table pathnames of files stored in your HD, select the cell, trigger the script, open the file.
    Here is an updated version :
    --[SCRIPT open_a_file]
    Enregistrer le script en tant que Script : open_a_file.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Library:Scripts:Applications:Numb ers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner la cellule contenant le chemin d'accès
    Aller au menu Scripts , choisir Numbers puis choisir  “open_a_file”
    ouvre le fichier.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: open_a_file.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select the cell containing the pathname
    Go to the Scripts Menu, choose Numbers, then choose “open_a_file”
    open the file
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Save this script as a … Script in the "Folder Actions Scripts" folder
    <startupVolume>:Library:Scripts:Folder Action Scripts:
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/02/02
    2011/04/28 - replaced the getSelParams handler by the get_SelParams one
    --=====
    on run
              set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
                        set maybe to value of cell rowNum1 of column colNum1
              end tell -- Numbers
              tell application "Finder" to open maybe
    end run
    --=====
    set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    on get_SelParams()
              local d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2
              tell application "Numbers" to tell document 1
                        set d_Name to its name
                        set s_Name to ""
                        repeat with i from 1 to the count of sheets
                                  tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                  if maybe is not 0 then
                                            set s_Name to name of sheet i
                                            exit repeat
                                  end if -- maybe is not 0
                        end repeat
                        if s_Name is "" then
                                  if my parleAnglais() then
                                            error "No sheet has a selected table embedding at least one selected cell !"
                                  else
                                            error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                                  end if
                        end if
                        tell sheet s_Name to tell (first table where selection range is not missing value)
                                  tell selection range
                                            set {top_left, bottom_right} to {name of first cell, name of last cell}
                                  end tell
                                  set t_Name to its name
                                  tell cell top_left to set {row_Num1, col_Num1} to {address of its row, address of its column}
                                  if top_left is bottom_right then
                                            set {row_Num2, col_Num2} to {row_Num1, col_Num1}
                                  else
                                            tell cell bottom_right to set {row_Num2, col_Num2} to {address of its row, address of its column}
                                  end if
                        end tell -- sheet…
                        return {d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2}
              end tell -- Numbers
    end get_SelParams
    --=====
    on decoupe(t, d)
              local l
              set AppleScript's text item delimiters to d
              set l to text items of t
              set AppleScript's text item delimiters to ""
              return l
    end decoupe
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Numbers" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Oops, I forgot that you are asking about Numbers '08 which hasn't AppleScript support.
    Yvan KOENIG (VALLAURIS, France) jeudi 28 avril 2011 16:26:39
    Please :
    Search for questions similar to your own before submitting them to the community

  • We have just gone over our limit for data usage this month. Is it possible to add data just for this month?

    We have just gone over our limit for data usage this month. Is it possible to add data just for this month?

    YES.  YOU GOING TO DO A PLAN CHANGE.  WHEN IT GIES YOU DATE OPTIONS YOUR GOING TO BACK DATE IT TO BEGINING OF CYCLE.    ONCE THAT GOES THROUGH DO ANOTHER PLAN CHANGE BACK TO IRIGINAL PLAN AND FUTURE DATE TO BEGINIGN OF NEXT BILL CYCLE.  THIS ALL CAN BE DONE ON MY VERIZON OR IF YOU FEEL SAFER CALL CUSTOMER CARE AND THEY CAN DO THSI FOR YOU

  • Is it possible to add sub-reports at runtime?

    Post Author: saibot83
    CA Forum: General
    Hello,I have a vast amount of reports. The user can select a list of reports and group them.  I want the user to be ableto treat the report group as a single report (I.e. export to a single pdf file instead of 10 etc.) Is is possible to create an empty report that I can use to group all the reports that the user has selected into one?or Is it possible to design  a report at runtime? I am using CR with VS .NET 2005. And have not found a way.  Does the Developer version of CR allow me to do this? Any help will be greatly appreciated. Best Regards,Tobias  Any help will be appreciated.

    Post Author: [email protected]
    CA Forum: General
    At first thought, if each subreport is a parameter, you can put a subreport in each section and conditionally suppress the section when
    isnull(?Parameter)

  • Is it possible to add a link to another form on a form?

    I'm using Adobe Standard 6.0.3 and am rendering the forms using FormServer. I just need to be able to click on a button and go to a URL in a separate browser. I've tried this with xfa.host.gotoURL, but couldn't get it to open in the separate browser. I think launchURL works great with Acrobat 7.0, but we are stuck with 6.0.3. Any ideas?
    Thanks.

    I think you are stuck until you use launchURL in 7.
    You could try something funky along the lines of.. click a button, which submits to the server... server returns a JSP.. JSP uses window.open() to open a new browser with the new URL... then the JSP also uses Form Server to rerender the form you were previously viewing.
    Certainly not a straight forward solution, but all I can think of at the moment.
    H.

  • Possible to validate data entries during Digital Signature?

    I have a form that was built from scratch using Adobe LiveCycle  Designer ES 8.2. I also have Adobe Acrobat Pro 9.3.2. (WinXP)
    I  see numerous articles online related to validating user input prior to  data submission for an online form via a Submit button, however, I  am trying to figure out how to implement the same sort of data  validation during the signing of a particular digital signature field in an offline pdf form. Simply, I want to perform data validation during a digital  signature instead of when user presses Submit button.
    Here's my  use-case:
    1. Form Originator fills out a large number of data fields  and signs form via a CAC cert.
    2. Another person will review,  possibly edit/add data, and sign another signature block with CAC.
    3.  Then there is one more final CAC signature on the form before it is  completed and then emailed to the right folks for processing.
    4. I  would like to be able to enforce the population of several Mandatory  data fields (at least one Radio button and one text input, possibly  others) before the 3rd signature can be applied to the document.
    Again, I  need to emphasize this is all happening in an offline form, no data  submission or database back-end. Also, everything with the digital  signatures (and locking up fields afterword) works totally fine, just interested  in adding Data Validation capability during Digital Signature.
    I am in no way a javascript expert, but I can  probably learn from a good example. Any help or guidance is very much appreciated. Thanks...

    If you are using SignatureField in the form then you will get two events preSign and postSign which you can use to validate the field input just like you do with a Submit button.
    Thanks
    Srini

  • Can I add additional link to "Other links" section of TFS web access home hub page

    Hi,
    Is it possible to add additional links to Other link section of TFS web access home hub page?
    Thanks in advance,
    Hazeq.

    >Do you see any issues if I modify this page? What will happen when TFS updates happens, there are no issue in these scenarios? Currently
    I have TFS 2013 with update 4.
    I didn't see any issue. but when you need to upgrade your tfs, your website also need to be upgrade.
    so I think the code you made will disappear.
    >Can I also use Jquery over here? How should I add jquery library reference?
    sure, you can do everything you want with jquery. just copy it into the sub-folder and reference it.
    !!!Backup your website before you update the code.

  • SQL for adding data linked to the filtering dimension

    This is from the Recipient RFM example where all Recipients are pulled in the initial Query and then we add data linked to the filtering dimension to compute recency, frequency and monetary.
    INSERT INTO wkf505995918_2_2 (dPurchaseHistoryMonetary,tsPurchaseHistoryRecency,iPurchaseHistoryFrequency,iPurchaseHis toryKeysPKey0) SELECT DISTINCT   Sum(P0.dAmount), Max(P0.tsDate), Count(P0.iPurchaseHistoryId), P0.iRecipientId FROM NeoPurchaseHistory P0 JOIN wkf505995918_2_1 W ON (W.iLinksKey1_0=P0.iRecipientId)  WHERE (P0.tsDate >= add_months(CAST((GetDate()) AT TIME ZONE 'America/New_York' AS date), -(18))) AND ((P0.iPurchaseHistoryId > 0 OR P0.iPurchaseHistoryId < 0)) GROUP BY P0.iRecipientId
    Note the JOIN between the linked NeoPurchaseHistory table and the wkf505995918_2_1 table populated by the initial query. The JOIN is ON the Recipient ID.

    it doesnt matter what you name the file. oracle will be able to use it. if you need to change the name to meet your naming conventions, then you will need to take the db down and rename the file at the OS level and then startup mount to rename the file at the DB level.
    why are you puting files in /dev? Thats for devices.

  • Need to Add Help links to ESS pages

    Hello,
    I have a requirement to add helps links to ESS services like address etc.
    The services have the roadmap element. Is it possible to add the link besides the roadmap element and right aligned?
    Which component should the link be added to?
    Is it possible that all the personal info services will have the link pointing to respective URLs?
    I figured that I might have to change the sap.compcui_gpxssutils DC. Am I right?
    But here I face a problem, that the DC is not modifiable in the DTR.
    Please let me know your suggestions.
    Thanks and regards,
    Mayuresh

    Hi,
    In Homepage Framework for ESS, there is a help service with every service. Check if this will help you.
    You can create a service as a help service. EIC_SERVICE_REQUEST is an example of help service provided by SAP. Then you can configure this help service to any service you want. This way you can provide access to help informationm without changing the code.
    To create your own help service, you can upload the help documents(say HTML) in portal KM repository. Create a KM document iView for the document. Create a page out of the iView and configure the PCD path of the page in the Hompageframework service.
    Regards
    Srini

  • How can I add a link in a cell in pages to another document

    Hello I am new to this so be gentle with me
    Can anyone tell me if it is possible to add a link in a (table) cell in pages to another document on my Mac, so when I click on it, it will take me to the document
    Many Thanks
    Charles

    As far as I remember you couldn't do it in PAges 09 and Pages 5 has lost over 90 features that Pages 09 has so I would say no you can't. I can't test it right now. I had a quick look in the help (http://help.apple.com/pages/mac/5.0/?lang=en) and could find that you could link to another document from anywhere let alone a table cell.

  • Ability to add new links on Business Catalyst online editing

    It would be really great if the office staff had the possibility to add new links via the "Edit" option in Business Catalyst. PLEASE add this function in the near future. It would greatly improve our productivity.

    You can edit/modify site contents and then upload to BC, while uploading to BC you can either use the existing site if you already have published the site or you can go with a new trial site.
    If you are referring to replacement of any site in BC with new contents then the same process for site update will work. I am missing out something or you are looking for something else , then please correct me.
    Thanks,
    Sanjit

  • In contacts there is the possibility to add a new event, as the birthdays, but they do not appear in iCal. Is there any way to make that possible? It is normal to have a person with his birthday, anniversary and others key dates you want to link to him.

    In contacts there is the possibility to add a new event, as the birthdays, but they do not appear in iCal. Is there any way to make that possible? It is normal to have a person with his birthday, anniversary and others key dates you want to link to such person, but the only one shows up is the birthday. How to be able to show all those dates linked to people in the agenda in the iCal?
    Thanks

    Hi,
    I sugggest you try my application, Dates to iCal. It is shareware with a 2 week trial period.
    Dates to iCal 2 is a replacement for Apple's birthday calendar for iCal. It has a range of features to allow the user to choose what, and what not, to sync to iCal from Address Book.
    As well as automatically syncing birthday dates from Address Book, Dates to iCal 2 can sync anniversary and custom dates. It can set up to five alarms for each date in iCal and can also set different alarms for birthdays and anniversaries. It allows the option of only syncing from one Address Book group. This application also allows for the titles of the events sent to iCal to be modified to the user's preference.
    Best wishes
    John M
    As I sell software on my site and ask for donations, the Apple Support Communities Use Agreement requires that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Please Help...!!  Is this to possible add data to write excel via java script

    Team:
    Is this possible to write data to Excel using javascript.
    I have created ScriptUI Dialog window. but i can't able to store datas in Excel.
    I can add data column wise in excel( using writeln comment) but I can't able add data to Row wise.
    Please anyone help me to solve this problem...
    Thanks in Advance.
    -yajiv
    Source Window :
    and the outputs wants......
    save the excel name to the Batch ID..

    Hi Everyone!
    I can add data column wise in excel( using writeln comment) but I can't able add data to Row wise.
    Please anyone help me to solve this problem...
    Thanks in Advance...
    -yajiv....
    Code :
    var myDoc = app.activeDocument;
    var myAllLinks = myDoc.allGraphics;
    var myLink=new Array()
    var mySeen = Object;
        var myLogFile = new File("~/Desktop/Link Files.xls");
        myLogFile.open("w", undefined, undefined)
        myLogFile.writeln("Link Name");
          for ( i = 1; i < myAllLinks.length; i++ )
                var myLinkName = myAllLinks[i].itemLink.name;
                var l=myLinkName.length;
               var T=myLinkName.substring(l-4);
                if (T==".tif"){
                    myLogFile.writeln(myAllLinks[i].itemLink.name);

  • Is it possible to add the date to a photo in an iPhoto calendar?

    After a picture is dragged to a day on my calendar the date disappears, is it possible to add or restore the date? I am using the latest update of iPhoto.

    The photo in the calendar replaces the date. You can ctrl-click the photo and add a caption to show the day number.
    Clicking the disclosure triangle to the right of the caption will show a panel where you can edit the font (all this tested in iPhoto 9.5.1), but it does look funny, you'd be better off by not adding the day number:

  • Is it possible to add the date to the notifications center?

    im using the new iphone 5 and was wondering if its possible to add the date to the notification center?  i know the date shows up when you have an event scheduled.

    The photo in the calendar replaces the date. You can ctrl-click the photo and add a caption to show the day number.
    Clicking the disclosure triangle to the right of the caption will show a panel where you can edit the font (all this tested in iPhoto 9.5.1), but it does look funny, you'd be better off by not adding the day number:

Maybe you are looking for

  • Aperture 3 not working after upgrading to OS X Lion.

    Did a clean installation of OS X Lion and the re-installed Aperture. Now I can't see previews of pics in Aperture. Many of the pics would not open either. For the pics that open, I can't edit them as I get an error saying the master picture cannot be

  • Truncate always checked for the some of the dimension tables

    Hi, I found common dimension tables across Finance,Supply Chain and Sales by querying in DAC. In the task level most of the target tables checked as Truncate For Full Load. but some of the tables defined as truncate always, why they defined as trunca

  • Structural Exception During Auto Imports In MDM

    Hi All, We are facing a problem while auto importing bulk data. System is throwing structural exception and preventing data from importing automatically. Is there any way that we could identify which segment in XML is causing this structural exceptio

  • HTML Email Newsletters

    Hi, Im tying to find out the best way to create HTML email newsletters but cant find a good starting point, in terms of what application to use (if any) and a sample template? Thanks in advance.

  • Cannot boot from dvd

    Hi, I have sun blade 1000 with Solaris 9 running on it. I am trying to install solaris 10 on it using a dvd. At the ok prompt boot cdrom command gives me Bad disk label Bad magic number. However I can see the contents of the dvd when I boot the machi