Possibility of variable data

I am creating a one off sales presentation for a client. They would like to be able to tailor the presentation to each individual contact by personalizing a headline with their name, much like variable data. Is it possible to accomplish this without having to resubmit a publication each time? Possibly by linking the presentation to an HTML file that gets updated with each sales pitch?

You may use Web Content Overlay to dynamically load content using a URL.

Similar Messages

  • Is it possible to import data into Captivate 5?

    Is it possible to import data back into a Captivate 5 lesson, that was  stored to a server or database from earlier in the Captivate 5 lesson?   We would like to redisplay data from one screen to another.  Some if it  is quiz results, some just responses to questions we ask the user and we  sould like to show it again for discussion on the next screen or in an  entirely separate lesson.  Thanks.

    You can easily store data in user variables that will persist for the duration of the user's browser session for a given Captivate lesson.  But if you want to have the same data persist over multiple browser sessions you need to write this data to cookies on the users PC or else write it to a database somewhere online and pull it back from there in later modules.
    The first option using variables is quite easy to do with Advanced Actions.
    The second option using an external database is much more difficult and would require ActionScript programming skills as well as database programming skills for the specific database technology you use and the scripting technologies used to write and retrieve data from it.  If you don't have these skillsets yourself, you're going to need to put together a project with a budget to hire the designers and developers required to pull it off.

  • How can I do a multiple record data merge, but specify that a specific text frame with variable data only merges on the first record?

    I'm doing a multiple record data merge, I have 2 frames both with variable data placed inside.
    I would like to specify that one of the text frames only merges once(first record) and the other frame multiple times for each record in the data file.
    Is it possible?
    I thought that perhaps if I place the text frame that must merge once on the master page, it would work.  But you are not allowed to place variable text on the master and on the document page.
    I'm going to try it through scripting next, but thought that perhaps there is an easier way that I'm not aware of.
    Thanks,
    Suzanne

    Suzanne,
    If you were trying to post a screen shot, you would need to return to the forum and post it using the "camera" icon at the top of the post editing windows.
    I use a plug-in from Em Software called InData. One of the benefits for what I do is there are no individual frames on a page to deal with post-merge. Individual frames are great for simple merges (address labels, post cards, etc.). But I typically do more other types of merges.
    That said, there is a drawback--one needs to come to an understanding of writing expressions that actually parse the incoming data. So in the spice price list example, that looks like:
    It's reasonably easy once one does it a few times. And it can be far more complicated. The above is from Em Software's samples that has been tweaked. The best thing I can recommend would be to download the trial and see for yourself. They are good at responding to specific questions if you get stumped.
    I imagine this all could be scripted somehow in ID. But I have no idea how and the plug-in just lets me keep working.
    Mike

  • Presentation variable(Date) in German Format

    Hi,
    I like to know whether it is possible to use date(prompt) in German format.
    e.g., We need to filter out the date(06.01.2009) which is given in Dashboard prompt as a Presentation variable.
    The date which we have given in prompt should be accessed by reports to perform some calculations and return back the calculation values.
    As we have tried the presentation variable(date) in US Format,it is working fine.
    Regards,
    Sakthi

    Hi kishore,
    I am not clear with the above mentioned forum link.
    We are using presentation variable for dynamic calculations inside the report.
    Suppose if we are giving date for dynamic calculation,as far as we are using this format (01.Jan.09) and convert the above format in required as used for calculations.
    The problem comes when german date format(01.Dez.2008) is given in prompt,it will throw an error.
    Because both German and US will have January & Januar Jan(First 3 letters as same) but when it comes for some months like December(Dezember(German)),we cannot convert into required format.
    Is there any solution for the above issue.

  • CVP Call Studio - concatenate variable data

    Hello,
    I'm new to Call Studio, do not have my hands on the software yet.
    Is it possible to concatenate variable data within a call studio script?
    The business wants to capture IVR menu selections for reporting purposes.  The IVR is complex and will require a CVP VXML server application.  My plan is to utilize a call variable within call studio, update the variable with flags/values for each menu selection, then send this data back to ICM.  In ICM, I will analyze this variable and set call types accordingly for reporting.
    Thanks in advance,
    Mike

    Got it.
    ok, so in call studio i would do it like this.i would define one variable say session data "retVAL" and update its value based on menu selection.
    if you closely loom at attached screenshot everything is there. value of all 3 menu options are concatenated and assigned to session data called retVAL using substitution  builder.
    and the value of same variable is returned to ICM using CVP sub dialog return.
    regards
    Chintan

  • Is it possible to delete data selectively from Business content cubes

    Dear Experts,
             Requesting you to help me out to know, is it possible to delete data selectively from Business content cubes.
    When I'm trying to delete selectively from Business content cubes, the background job gets cancelled with ST22 logs stating
    A RAISE statement in the program "SAPLRSDRD" raised the exception  condition "X_MESSAGE".                                                                               
    Since the exception was not intercepted by a superior program, processing was terminated.  
    and i tried  with few more Technical content cubes but the same thing happens.
    Pls let me know how to selectively delete data from Business content cubes if it's possible?.
    Thanks in advance for your favorable assistance.
    Regards,
    Ramesh-Kumar.

    Hi Ramesh,
    Follow below steps for selective deletion:
    1.     Transaction code: Use the Transaction code DELETE_FACTS.
    2.     Generate selective deletion program:
    A report program will be generated of the given name, here .
    3.     Selection screen:
    Take the deletion program u201CZDEL_EPBGu201D to the transaction code SE38 to see/execute the program.
    After executing it will take you to a selection screen:
    As we need to carry out deletion selective on Calendar week, we need to get the screen field for the field Calendar week. For this, click on the Calendar week field and press F1.
    Click on the technical information button (marked in red box above) you will get below screen:
         ABAP program to carry out the Calendar week calculation
    Problem scenario: As stated earlier the requirement is to delete the data from the cube based on the calendar week. Thus a code must be developed such that the number of weeks should be taken as input and corresponding calendar week should be determined. This calendar week should be then passed to the deletion program in order to carry out the data deletion from the InfoCube.
         Transaction code: Use T-code SE38 in order to create a program.
    Logic: Suppose we need to delete the data older than 100 weeks.
    a.     Get the number of weeks and system date in variables and calculate the total number of days :
    lv_week = 100.      *number of weeks      
    lv_dte = sy-datum.     *system date
    v_totaldays = lv_week * 7.      *total days
    b.     Get the corresponding calendar day from the total days. This is obtained by simply subtracting the total no. of days from the system date.
    lv_calday = lv_dte - v_totaldays. *corresponding calday.     
    c.     Now in order to get the calendar week corresponding to the calculated calendar day we must call a function module 'DATE_TO_PERIOD_CONVERT'. This function module takes input as Calendar day and Fiscal year variant and returns the appropriate fiscal period.
    Get the sales week time elements
      call function 'DATE_TO_PERIOD_CONVERT'
        exporting
          i_date                      = lv_calday
          i_periv                     = lc_sales
        importing
          e_buper                     = lv_period
          e_gjahr                     = lv_year
        exceptions
          input_false                 = 1
          t009_notfound               = 2
          t009b_notfound              = 3.
      if sy-subrc = 0.
        ls_time-calweek(4)      = lv_year.
        ls_time-calweek+4(2)    = lv_period.
      endif.
    v_week = ls_boots_time-calweek.
    Note: We can pass the fiscal year variant which can be obtained from the table T009B.For e.g. here fiscal year variant lc_sales = Z2. LS_TIME will be any table with suitable time units.
    d.     Now we have obtained the required calendar week in the v_week variable. This calendar week is the week till which we need to keep the data. And older data than this week will be deleted. This deletion will be done by the deletion program
    Submitting the Data deletion program for ZEPBGC01 and key field
    SUBMIT ZDEL_EPBG WITH C039 LT v_week.
              Here the calendar week value is submitted to the deletion program ZDEL_EPBG with the screen field of calendar week.
    Hope ... this will  help you..
    Thanks,
    Jitendra

  • Variable data and InDesign interface

    I have a proposal that will have variable data in it and needs to stay editable. I created the document in InDesign and not sure what program I can use to create the interface in.
    What I want is to set up an interface that either I or someone in my office fill out or select certain items they want in the proposal and it creates a document (that is still editable, just in case there are a few tweeks they want)
    The variable data would include the basics such as:
    Client/Company name
    Address
    etc.
    They also want to be able to select a menu of "benefits" to pick from.
    For example the interface would say:
    What benefits would you like to include in proposal?
    X  Benefit A
        Benefit B
    X  Benefit C
    X  Benefit D
         Benefit E
    Then the ones with the "X" would appear but not the rest.
    Certain verbiage they use such as "customer or member" depending on what type of business they are writing the proposal for. For example:
    What type of company?
    A ....(verbiage would be customer)
    B ....(verbiage would be member)
    C ....(verbiage is customized)
    Then there is some pages that will include math:
    Product name                      prod $ (won't change)          qty                total investment                 
    Is this even possible?
    Ok discovered Conditional Text....very cool. So that answers the verbiage question.
    Is it possible to create a dreamweaver page, import that into excel and then run a data merge or am I over thinking it....even bigger question is it too complicated for someone else to do?

    I have a very similar project in mind for a client and am trying to figure out how to best research this. I'm struggling to even use the right terms to find discussion threads. This is the first one I have come across that comes very close. My client wants to have a bunch of documents available for a proposal, then have a window where he checks the documents he wants to use and the order they should appear. I imagine some of those documents will need to be created prior to this process or a window would allow them to fill in the variable data...client info, etc. I was thinking a more rudimentary way would be to build all the chapters and optional files out organizing them well in folders, then just using Acrobat to choose and combine the files, ordering them as needed. I guess that's my back-up plan, but would love more input/suggestions on how to be more dynamic within InDesign itself.

  • Variable data persists through transfer

    Good afternoon all!
    Problem: Calls that are answered by CTIOS agent and then transfer fail with busy signal to queue if no agents are available at LAA
    Components: UCCE 7.5, UCM 7.1.3, IP IVR 7.0.4 (Hardware conferencing used via 3845 ISR device)
    I've run across a challenge that has probably been happening for a while.  I've started to see a lot of calls failing through queues to agents.  One of the things we do is all calls come into our center and hit an IVR for the customer to pick a department.  So right off the bat we transroute the call to VRU for IVR treatment.  The customer picks their option and the call is sent to the agent in the center who answers the customer.
    The problem begins when the agent determines the customer may need to be transferred to another group due to whatever reason the customer ended up in the wrong department.  The customer will press the CONF button in CTIOS and enter the 4 digit transfer DN for the next group.  Sometimes that goes through another transroute sometimes not depending on agent availability.  The first thing all calls should do in every script is check Variable9 data to see if the call has already passed through a transroute to VRU node.  If that is TRUE the call goes around the transroute and connects to the queue to skill node.
    At  this point the customer is on hold in CTIOS and the agent is trying to find another agent in another group via supervised conference.  What I'm seeing is when the above happens the second leg of the call (the conference call) will KEEP the Variable9 data saying its been through a transroute and the call will take the fail path on the queue node and ring busy.  If I put ANOTHER transroute under there it transroutes successfully.  We use hardware to bridge CONF/Transfer calls through our PBX also so not sure if the 3845 is playing any tricks in this scernario.
    My question would be can I stop the CONF leg of the call from passing variable 9 data since it's a new leg on a call so the transroutes properly work as designed or should I just continue to drop another transroute under queue paths to cover this perceived issue?  I'm also open to all other suggestions on best possible scenario to handle this situation.
    Edit: In the interest of rewriting my entire post I do understand I want all my variable data to pass to the new agent being conferenced ultimately.  My goal is for that to happen AFTER the conf and not on both legs of the call which seems to cause this issue.

    Surya,
    Please take a look at the Wiki e-book.  It seems you are trying the Chart of Accounts template.
    https://wiki.sdn.sap.com/wiki/display/B1/SAPBusinessOne...ToGo-10.DataTransfer+Workbench
    Also, the SDK Help files have useful information about the valid values for different objects.
    Suda

  • Variable Data in Symbol

    Windows XP AI SC3
    Not sure if AI is suited for this or not...
    I would like to be able to create a symbol, that when placed in a document, it can pull from a dataset to populate certain data.  The customers phone number and address for example.
    I have played around with variable data for some things, but trying to accomplish this has been less than fruitful...

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Specifically, I was referring to AI's "Variable" panel and Dynamic object.  Dynamic Text to be more exact.
    So all the Variables are text Variables? There are no GraphData, Visibility, or LinkedFile Variables involved?
    For my own purposes, I have devised a Javascript that populates the Variables Palette with DataSets from ordinary tab-delimited text. But again, I would have to see a thorough description of your problem to tell you if it is applicable to your situation.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    I am pretty sure I can get the Dataset file to load when a file is opened (custom plug in).
    Assuming the XML file is formed to Illustrator's liking, you could also probably accomplish the auto-import with a Javascript that runs at launch. But that would, of course, just load one row (one DataSet) of the data into the bound objects. What's the big deal about using the Import XML command when the file is opened?
    So, if I have a template that has Dynamic Text elements, I should be able to open a file and have the data pulled from the XML dataset on open, automatically populating the variable text elements.
    Again, I don't know what you mean by "have the data pulled." The bound objects on the page will only contain one DataSet (one "row" of the data, were it tabular data) at a time. You could then use a mere Action (macro) to cycle through the DataSets and export the versions, if that's what you're talking about. But a startup script would only import the data Variable Library into the Variables Palette. Again, that's a one-shot deal; I don't see what's the big deal about invoking one command in the UI to load the whole Library.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    This will work well for variable text elements that are in the document.  However, if I create an Illustrator symbol and try to make the text dynamic, it does not appear to work.  I can go through the motions, but loading different datasets doe snot appear to affect the symbol.
    Ilustrator Symbols cannot be bound as Variable objects. There are four types of Variables: Text, GraphData, LinkedFile, and Visibility. Why do you need this to be a Symbol? Is it required that multiple instances of the same column from the DataSet occur in various places on the page? If so, the Variables Palette is probably not your best solution. You would have to have multiple columns in your DataSet containing the same value, because even with ordinary textFrame objects, you cannot bind several to one Variable.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    First, I would like to accomplish this within AI if possible, so whatever tools AI may give me, is what I am talking about.
    Workarounds are conceivable. But frankly I probably wouldn't bother (again, depending upon the specifics of the problem). InDesign provides a proper and straightforward data merge feature that works with ordinary tab delimited text, so you can enter the same placeholder as many times as you need on a page, and anywhere within a textrange (whereas Illustrator's Variables feature does not allow binding of multiple variables within a single textFrame).
    JET

  • Variable data in Illustrator

    Hello,
    Before I go crazy here, I am wondering if you can populate a document with a different image and name using variable data.
    Can the image and name be outside the document in an excel sheet for example? If so, how would images be handled...
    If anyone could lead me to a really good tutorial on this, I would he very grateful.
    The ones I have found so far, are not helping me.
    thanks!!
    babs

    Babs,
    You can use the Variable Data feature (the Variables palette) to create DataSets. You can then "bind" objects on the page to act as "placeholders," so to speak, for the text, images, visibility settings, or graph data that is contained in the current DataSet. You can then switch between DataSets to automatically re-populate the "placeholders." You can then semi-automate the swapping out of the DataSets to, for example, run exports or saves or prints in batch mode.
    The file that contains the data can be an external file that you import as an Illustrator Variables Library.
    However, the Variables feature set is based on XML, not on ordinary tab-delimited rows/columns like you are accustomed to in Excel. So you can't import an Excel file or any other ordinary row/column delimted text file into the Variables palette to create your DataSets. Excel and other programs (FileMaker Pro, for example) can export  XML from their rows/records. But unfortunately that's not all there is to it.
    XML is a tag-based markup language. An XML file doesn't necessarily follow a consistent rows/column kind of order germane to a spreadsheet or database table. The occurrances of Column/Row intersections (Elements) can be arbitrary. For example, imagine a spreadsheet with columns A, B, and C, and rows 1, 2, and 3. The arrangement in an XML file is not necesarily:
    1A, 1B, 1C
    2A, 2B, 2C
    3A, 2B, 2C
    It may be:
    1A, 1A, 3A, 2B, 2C, 1B, 1B, 1B....
    ...or any other arbitrary order and/or nesting arrangement of the Elements.
    So an XML file has to be "described" in order to be understood by the program that imports it. The XML file contains reference to a Schema or a Document Type Definition (DTD file) for that purpose. So to use Illustrator's Variables palette in that way, you have to get somewhat into the arcana of XML.
    That's about the extent of what I know about XML. Correction by anyone who acutally understands and works with XML is welcome.
    I haven't taken any polls, of course, but I dare say that the vast majority of users who actually ever touch the Variables palette just tediously enter the data directly into the bound objects in the Illustrator document and capture the DataSets as they go. A small minority does that with just a few sample DataSets, then exports the DataSets as a Variables Library (an XML file), and uses that file as the "template" into which they then insert the rest of the data from their spreadsheet or whatever, using a script or some other semi-automated routine. An even smaller minority actually creates the ready-to-import XML file from scratch.
    I have found it possible to import XML exported from FileMaker Pro directly into InDesign. But I cannot do that in Illustrator. For text-only purposes, I have resorted to writing a Javascript that lets me enter (or paste) ordinary tab-delimited text into a text object in Illustrator. The script then converts that text to Variable DataSets. I imagine it would not be hugely difficult to modify that script to also accommodate references to linked images, but I have not had the occasion or need to do so.
    I personally think the Variables feature would have been of much broader value across the AI user base had it been based on straightforward tabular data, like the data merge features in many programs, instead of XML. I guess that would be anethema to the XML users whom I assume must have asked for this feature being implemented this way. Or, it may have just been driven by Adobe-internal "me, too" gotta-have-it direction.
    JET

  • Variable data entry in BPC

    Hi Forum,
    Does anyone know if it is possible to have a mechanism for variable data entry in the budget process in BPC ? What we are trying to do is setup a budget data entry template which allows budget holders to input a variable number of capex projects as rows, this will not be a set number and will have different descriptions but will be a variable number depending on the business unit. There is no way that I can see to setup this centrally in the BPC administrator so the options we have are to store this on the budget template and then send the consolidated value (ie sum of the projects) using the BPC send or have some kind of relational form which the end user inputs to.
    I would apprecitae it if anyone can let me know if my assumptions are correct or if there are any other approaches that I can take ?
    Thanks,
    Brian

    Ok,
    Hoe bout this? I have a process where users needs to allocate new stores to different brands that they need to open. This number can vary and they all know how many stores that they would like to open per brand.
    So what we did was let them capture the number of stores that they want to open. In the background (hidden section) we submit a 1 against a long list of new stores members (we created a dim fir this). The next step would be to create a EVDRE that would suppress everything that does not have a value of 1 for the account/entity combination. This gave every user the correct list of stores that will be opened for the year and it varied for every brand.
    Is that the functionality that you are looking for? You would just have to identify the maximum number of stores or in your case projects.
    Cheers,
    AvdB

  • Text Manipulation and Variable Data in Photoshop

    Our company is getting into variable data printing. There are a few ways to get variable data into photos. I've played with a program called Direct Smile. Its text manipulation tools are rather good. It lays a grid over the text and you can select each grid intersection and pull and push to get the text into the shape you want.
    There are other programs that work through InDesign and Photoshop, using scripts to insert the variable data into the Photoshop text layer.
    When I tried to warp the text in Photoshop I found that beyond a certain point, you have to flatten the text, at which point, it's no longer a text layer that can accept variable data from a database.
    Is there anything like the grid tool in Direct Smile in Photoshop?

    I’m unfamiliar with Direct Smile.
    But for text-manipulation in Photoshop You might want to consider converting the Text to a Smart Object which can then be warped or treated with the Distort-Filter Displace, all the while maintaining the text-layer within the SO and thusly its editability.
    And if I remember correctly one can even make Liquify applicable as a Smart Filter, but one would have to save the Mesh separately … possibly too problematic a solution.
    Or You could go via Illustrator which offers Envelope Distort (which provides a grid-based »plasticity«) and then embed the result thereof as a SO in the Photoshop-file. Unfortunately Illustrator doesn’t Script as comfortably as Photoshop in my limited experience and Envelope Distort my be unscriptable altogether.
    But if I understand correctly You will want to automate all that stuff, so maybe You should check out the respective Scripting-Fora.

  • In Design and Variable Data Printing....

    Does In Design have VDP capabilities.  I am thinking of designing a 2 part NCR form that is numbered.  Is it possible to include the numbering sequence in the design so that as it prints it numbers each form sequentially (similar to name and address info but a specific number)?
    Thank you!

    on the indystimer website there is no set of instructions or tutorials but the script is only used to generate the range of numbers that I want for the database e.g. 000201-000500. this can be done in excel too but i just find the indysnumbergenerator a lot quicker.
    in terms of actually making a datamerge, see the adobe tutorial http://www.adobe.com/designcenter/indesign/articles/indcs2at_datamerge.html
    to make a datamerge so that the end result is pages printed single sided but in duplicate so the records appear:
    pdf page 1 - record 1 top sheet
    pdf page 2 - record 1 bottom sheet
    pdf page 3 - record 2 top sheet
    pdf page 4 - record 2 bottom sheet...
    is to design the merge on one page including the variable data, BUT once it is finished, duplicate the page from the pages palette so that there is now two pages in the file. when exported to PDF via the data merge as above should result.
    is this what the OP is after?

  • How do I create multiple-up pages populated with variable data?

    I am trying to create a variable data Illustrator file but with a catch, I have to create multiple points of data on one artboard.  I am using a template with 36 identical shapes, and I'm trying to add a different image to each based off of using variable data.  I understand the premise of creating multiple output files based off of an illustrator file and data, but I have to create a single output file using 36 points of data, all QR codes.  The reason is that this 36-up 14.5" x 14.5" sheet will be printed on a large format inkjet and then be fed into another machine (not a cutter) that requires that specific layout for it's process.  I cannot create individual files, I need sheets based off of my 14.5" x 14.5" 36-up template.
    Any suggestions other than making each shape in the template a separate variable (even though they are all the exact same shape) would be greatly appreciated.
    My goal is to populate each of these shapes with a different QR code and then output the whole sheet as a single .EPS or .PDF file.

    My goal is to populate each of these shapes with a different QR code and then output the whole sheet as a single .EPS or .PDF file.
    You're barking up the wrong tree for this with Illustrator's Variables palette.
    Think of it like this:
    Imagine a typical spreadsheet with multiple rows of the same kind of data, except for the first row which serves as the "labels" of the columns.
    The on-page objects which you define as Variables in Illustrator correspond to the first row; the column labels.
    The datasets correspond to the following rows of values below the label row.
    Cycling through the datasets simply moves up and down the rows, revealing one row's data at a time for each of the column labels.
    Your multi-up array does not fit that data model. You are essentially trying to make a layout showing all the individual cells below the single label of one column (downward across all rows). (Illustrator's Variables feature doesn't even let you put multiple instances of a single variable in the document, so that the same value occurs in multiple places.)
    You're trying to build the functional equivalent of a typical "gang up" press sheet, like a 10-up layout of business cards, each showing the same kind of data (name, phone, etc.) for multiple employees, so that you don't have to do separate press runs for each employee. That's certainly a common need, and one quite appropriate to a program like Illustrator. But Illustrator's Variables feature does not do that.
    Essentially, what you are wanting to do is to replicate the basic functionality of any program which is used to print labels from data (like the typical mail merge function for address labels which are ganged up with some number of different labels on a page). What you want could be done in Illustrator via a custom JavaScript, but it would be a pretty silly exercise in reinventing the wheel. If it were me, I'd probably build the solution in FileMaker Pro (a database program), depending on the specific graphics requirements. However, you should be able to do it in InDesign, using its data merge feature.
    JET

  • Is that possible to transfer data from old apple id to new apple id becoz my old apple id is not working

    Is that possible to transfer data from old apple id to new apple id becoz my old apple id is not working.

    Merging of Apple ID accounts is not possible.

Maybe you are looking for

  • How to change the style of a single component using oracle skin Jdev 10.1.3

    my hole applications is using oracle skin, I only need to change the color of the menuTab, but I don´t want to create a new skin family... I tried this link http://www.oracle.com/technology/products/jdev/101/howtos/adfskins/index.html but the dont te

  • Error while posting transaction to Internal order

    Hi We tried to make a transactions to the internal order, having available amount and we have posted the transaction less than the available amount yet received a yellow error message that the internal order budget almost exhausted. We checked the in

  • Mac Mini with two VGA displays

    Hello. I have a MacMini (2.4 Core 2 Duo) recently connected to 2 Dell E197FP screens. The main screen works fine (HDMI to VGA) but the second screen is blank (Mini DVI to VGA) even though it is recognised in Displays and I can set the resolution. Any

  • How to load PDF files into oracle database and display them in APEX

    Hi All, We have a requirement for loading the Loading PDF files (lots of PDf files) to the oracle database and then display the PDF files in the Oracel APEX report. So that User can view the PDF files. Our current APEX verison is 3.2.. Please let me

  • HT1430 after i installed version 6.0.1 i cannot send or receive emai.?

    How do i begin to send and receive emails again? After i installed OS 6.0.1 i cannot send or receive emails on the main "mail" app. I get the message that "cannot connect to the server."