Filtering data in historic report instances

My goal is to filter data in a managed report instance without refreshing it.  But I am having issues even viewing an instance.  I am using Crystal Reports 2008 Server and the RAS API.  Code below displays reports fine (i.e. SI_INSTANCE=0) but not report instances (i.e. SI_INSTANCE=1).
Approach 1, Use reportSource from PSReportFactory:
//Here is my query:
String reportQuery = "SELECT * FROM CI_INFOOBJECTS " + "WHERE SI_NAME = '" + report.getName() +
              "' AND SI_KIND = '" + CeKind.CRYSTAL_REPORT + "' AND SI_INSTANCE = 1";
// Here I grab the latest report instance
IInfoObjects reports = iStore.query(reportQuery);
IInfoObject oInfoObject = (IInfoObject) reports.get(0);
IReportSourceFactory factoryPS = (IReportSourceFactory)es.getService("PSReportFactory");
Object reportSource = factoryPS.openReportSource((oInfoObject), getLocale());
// Here I prep and attempt to display
viewer.setReportSource( reportSource );
viewer.setDatabaseLogonInfos( newDBConnectionInfos() );
viewer.setEnableLogonPrompt( false );
viewer.setBestFitPage(true);
viewer.setOwnPage(false);
viewer.processHttpRequest();
processHttpRequest above throws:
com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Invalid job number.---- Error code:-2147215357 Error code name:internal
Approach 2, use ReportClientDocument from RASReportFactory...
// Same query as above:
String reportQuery = "SELECT * FROM CI_INFOOBJECTS " + "WHERE SI_NAME = '" + report.getName() +
              "' AND SI_KIND = '" + CeKind.CRYSTAL_REPORT + "' AND SI_INSTANCE = 1";
// Here I grab the latest report instance
IInfoObjects reports = iStore.query(reportQuery);
IInfoObject oInfoObject = (IInfoObject) reports.get(0);
IReportAppFactory raf = (IReportAppFactory)es.getService("RASReportFactory");
ReportClientDocument rcd = raf.openDocument(oInfoObject, OpenReportOptions._openAsReadOnly, getLocale());
// Here I prep and attempt to display
viewer.setReportSource(rcd.getReportSource());
This approach throws an exception from
raf.openDocument()
with error:
Cannot open report document. --- Item SI_NEWOBJECT was not found in the collection.
Of these approaches I prefer the second as I can potentially filter the data. 
Any ideas or help greatly appreciated as I am new to crystal reports.
Edited by: jhall3483 on May 14, 2010 11:24 PM
Edited by: jhall3483 on May 14, 2010 11:27 PM

Good call Ted, and thanks for the reply!  I had a bunch of Failed instances and it was choking on a failed one. 
Now that I have identified a successful instance, I'm having trouble displaying the historical report data. 
When I attempt to display using the PSReportFactory, from first approach above, it displays the report but I
don't get historic data, i.e. it is refreshing from the database.  Of course historic data display works in the
CMC so I'm sure it must be possible.  How can I get the viewer to show the data as it was when the report
was run?
Also, using the preferred RASReportFactory, from second approach, I get the following exception:
ReportSDKServerException: Failed to retrieve initial report values. For example, the database information for this report could be incomplete or
incorrect. This is a configuration problem. Please contact your system administrator.---- Error code:-2147467259 Error code name:failed
This seems odd as I am passing the database logon infos to the viewer, and it works the other way:
viewer.setDatabaseLogonInfos( newDBConnectionInfos() );
viewer.setEnableLogonPrompt( false );
Any ideas about how I can get it to work this way?
Thanks,
--Jeff.
Edited by: jhall3483 on May 16, 2010 9:25 PM
Edited by: jhall3483 on May 16, 2010 9:26 PM

Similar Messages

  • Incorrect date format on report instance

    Hi,
    I have a problem (well a question) relating the the instance detail information behind a report instance in BusinessObjects Enterprise XI3.1 SP2 FP2.5. On one of my servers I can view the history of a report thorough InfoView and then select the link in the 'Status' colum. This displays the 'Instance details' page. On this page the 'Creation Time', 'Expiry', etc. are shown in the format dd/mm/yy hh:mm:ss. But, on my other server the same page shows these records as 'mm/dd/yy hh:mm:ss'.
    I suspect that there is a server setting to be made somewhere, but where?
    Any ideas please?
    Mike

    Hello,
    Found it. I run my SIA under a service account and not a user account. This service account was using the wrong Regional settings. When changed to the correct Regional settings the reports showed the dates in the correct format.
    Thanks for looking.
    Mike

  • Filtering data in QPLD Report

    Hi Guys,
    I am using the below query to  for getting the Stock in warehouse report.
    To get the required result and using filtering option in the report.
    But i need to design a QPLD for this report.I  need to know if i create a QPLD for this query,  shall i filter the data in QPLD like we do in  query report.
    I need the report  for particular warehouses only
    Pls give me a solution  for the above or update the query..
    Actually we are having different locations among which there is different  warehouses for different items .
    Like in location1 we r having 42 warehouses and location 2  has 34 warehouses..
    I need a report    based on posting date(given range) and Item Group and Location(single location) and Warehouse in that particular location.But in my query i am  getting all the warehouses in that location. So, Pls modify the below query according to the requirement.
    [Item code,Item Description,Warehouse name,Location,Item Price,Opening Balance(Stock),In qty(Goods Receipt),OutQty(Goods Issue),Closing Stock,Closing Stock Value(Closing Stock * Item Price)]
    select a.ItemCode,a.Des, a.WareHouse ,a.location, (SELECT (sum(t1.inqty - t1.outqty))
    FROM OINM t1 
    WHERE (T1.DocDate < '[%1]') and (t1.itemcode = a.itemcode) and (t1.warehouse = a.whs) ) as 'OB', a.Price,a.inqty,a.outqty, (SELECT (sum(t1.inqty) - sum(t1.outqty))
    FROM OINM t1  
    WHERE (T1.DocDate <= '[%2]') and (t1.itemcode = a.itemcode) and (t1.warehouse = a.whs)) as 'Closing',
    (SELECT (sum (t1.transvalue))
    FROM OINM t1  
    WHERE (T1.DocDate <= '[%2]') and (t1.itemcode = a.itemcode) and (t1.warehouse = a.whs)) as 'ClosingValue' from (SELECT T0.[ItemCode] as 'ItemCode', max(T0.[Dscription]) as 'Des',sum(T0.[InQty]) as 'InQty',
    sum(T0.[OutQty]) 'OutQty',t0.warehouse as 'whs' ,t0.location as 'loc',
    (select w1.whsname from owhs w1 where w1.whscode = t0.warehouse) as 'Warehouse',(select l1.location from olct l1 where l1.code = t0.location)  as 'Location',avg(T0.[Price]) as 'Price'
    FROM OINM T0 
    inner join oitm o1 on o1.itemcode = t0.itemcode
    inner join oitb o2 on o2.itmsgrpcod = o1.itmsgrpcod 
    WHERE (T0.[DocDate] >= '[%1]' and  T0.[DocDate] <= '[%2]')  and
    (o2.itmsgrpnam >= '[%3]' and o2.itmsgrpnam <= '[%4]' )
    group by T0.[ItemCode],t0.warehouse,t0.location)a
    Regards,
    Vamsi.

    Hi
    try with below query
    select b.code, b.name, b.Wh, b.Bal, b.Val,
    isnull(case when b.days <30 then b.bal end,0)'0-30 Days' ,
    isnull(case when b.days between 30 and 60 then b.bal end,0) '30-60 Days',
    isnull(case when b.days between 60 and 90 then b.bal end,0) '60-90 Days',
    isnull(case when b.days between 90 and 120 then b.bal end,0) '90-120 Days',
    isnull(case when b.days between 120 and 150 then b.bal end,0) '120-150 Days',
    isnull(case when b.days between 150 and 180 then b.bal end,0) '150-180 Days',
    isnull(case when b.days >180 then b.bal end,0) 'Above 180 Days'
    from (
    select a.code,a.name,a.wh,a.bal,a.val,datediff(dd,dt,getdate())'days'
    from (
    select max(t0.itemcode)'Code',max(t0.Dscription)'Name',
    max(t0.Warehouse)'Wh',
    sum(t0.inqty-t0.outqty)'Bal',sum(t0.transvalue)'Val',max(t0.docdate)'dt'
    from oinm t0 inner join oitm t1 on t0.itemcode=t1.itemcode
    where t0.Warehouse=[%0]
    group by t0.itemcode
    )a
    )b order by b.Val desc
    Thanks
    Kevin

  • Incorrect localization wrap-up data in Historical Reports

    When we add wrap-up data in Cisco Desktop Work Flow Administrator everything is correct.
    When we load Agent Wrap-up Data Summary Report we get the discrepancy coding.
    UCCX 8.5 Russian

    Hi Mauro,
    Please refer the "Table 2-36 EEMQueueAgentDetail Table Fields" in the below link,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_7_0/user/guide/uccx70dbschema.pdf
    wrapupData
    Wrapup selected by agent when email is terminated.
    You can use SQL queries (am not good at it) to fetch these values.
    Thanks,
    Anand
    Please rate helpful posts !!

  • CRS Historical reports - Migration

    Hello,
    I have a customer with CRS 4.0(2) and has been recently upgraded to CRS 4.0(5) on a different server. Is it possible to dump the data regarding historical reports to the new server somehow?
    I don't have the installation CDs of 4.0(2) it is not possible to reinstall 4.0(2), apply the restore and then perform the upgrade to 4.0(5) so another solution would be appreciated.
    Thanks in advance

    If the database schema is same then you can migrates the HR data to the new server. Only data migration of HR data occurs during the upgrade process.

  • UCCX 7.0.1SR5 to 8.0 upgrade while also adding LDAP integration for CUCM - what happens to agents and Historical Reporting data?

    Current State:
    •    I have a customer running CUCM 6.1 and UCCX 7.01SR5.  Currently their CUCM is *NOT* LDAP integrated and using local accounts only.  UCCX is AXL integrated to CUCM as usual and is pulling users from CUCM and using CUCM for login validation for CAD.
    •    The local user accounts in CUCM currently match the naming format in active directory (John Smith in CUCM is jsmith and John Smith is jsmith in AD)
    Goal:
    •    Upgrade software versions and migrate to new hardware for UCCX
    •    LDAP integrate the CUCM users
    Desired Future State and Proposed Upgrade Method
    Using the UCCX Pre Upgrade Tool (PUT), backup the current UCCX 7.01 server. 
    Then during a weekend maintenance window……
    •    Upgrade the CUCM cluster from 6.1 to 8.0 in 2 step process
    •    Integrate the CUCM cluster to corporate active directory (LDAP) - sync the same users that were present before, associate with physical phones, select the same ACD/UCCX line under the users settings as before
    •    Then build UCCX 8.0 server on new hardware and stop at the initial setup stage
    •    Restore the data from the UCCX PUT tool
    •    Continue setup per documentation
    At this point does UCCX see these agents as the same as they were before?
    Is the historical reporting data the same with regards to agent John Smith (local CUCM user) from last week and agent John Smith (LDAP imported CUCM user) from this week ?
    I have the feeling that UCCX will see the agents as different almost as if there is a unique identifier that's used in addition to the simple user name.
    We can simplify this question along these lines
    Starting at the beginning with CUCM 6.1 (local users) and UCCX 7.01.  Let's say the customer decided to LDAP integrate the CUCM users and not upgrade any software. 
    If I follow the same steps with re-associating the users to devices and selecting the ACD/UCCX extension, what happens? 
    I would guess that UCCX would see all the users it knew about get deleted (making them inactive agents) and the see a whole group of new agents get created.
    What would historical reporting show in this case?  A set of old agents and a set of new agents treated differently?
    Has anyone run into this before?
    Is my goal possible while keeping the agent configuration and HR data as it was before?

    I was doing some more research looking at the DB schema for UCCX 8.
    Looking at the Resource table in UCCX, it looks like there is primary key that represents each user.
    My question, is this key replicated from CUCM or created locally when the user is imported into UCCX?
    How does UCCX determine if user account jsmith in CUCM, when it’s a local account, is different than user account jsmith in CUCM that is LDAP imported?
    Would it be possible (with TAC's help most likely) to edit this field back to the previous values so that AQM and historical reporting would think the user accounts are the same?
    Database table name: Resource
    The Unified CCX system creates a new record in the Resource table when the Unified CCX system retrieves agent information from the Unified CM.
    A Resource record contains information about the resource (agent). One such record exists for each active and inactive resource. When a resource is deleted, the old record is flagged as inactive; when a resource is updated, a new record is created and the old one is flagged as inactive.

  • Historical Report - Missing data

    Hello,
    We have a problem with Historical Report, for some reason we cannot generate report "Agent State Summary by Agent" on particular date (other report have no problem on that particular date). While generating the report, we get the error message "A runtime error occurred while executing the query. Please check log for more detail.".
    HRC log:
    1: 12/8/2010 3:33:59 PM %CHC-LOG_SUBFAC-3-UNK:The following SQL Command failed due to ()SQL Command=[call sp_agent_state_interval ('2010-11-08 17:00:00', '2010-11-09 16:59:59', 0, 0, 'NULL', 'NULL', 'NULL', 'NULL' )]
    2: 12/8/2010 3:33:59 PM %CHC-LOG_SUBFAC-3-UNK:TraceDBError #1:(ADO Error# -2147467259|Description E21000: (-284) A subquery has returned not exactly one row.|Source Ifxoledbc|SQLState |NativeError -284)
    3: 12/8/2010 3:33:59 PM %CHC-LOG_SUBFAC-3-UNK:Database Error | A runtime error occurred while executing the query. Please check log for more details
    4: 12/8/2010 3:34:04 PM %CHC-LOG_SUBFAC-3-UNK:Failed to run Interpreted SQL Command(call sp_agent_state_interval ('2010-11-08 17:00:00', '2010-11-09 16:59:59', 0, 0, 'NULL', 'NULL', 'NULL', 'NULL' ))
    We are on CUCM 8 and UCCX 8.0(2). Does anyone experience this issue? Any idea what cause the issue? Any solution?
    Thank you,
    sovannary

    To fix this kind of issue we need to check if replication between two server is good or not .
    1)Command :- utils uccx dbreplication status (run this command on both the server's
    2) If replication is good then check the status of historical datastore from control center
    3)if all the services are good then check which report is failing .I mean  if agent report is failing then
    run below command to check if that table if fine
    admin:run uccx sql db_cra select count(*) from agentstatedetail
    you can query different tables depending on reports .
    you will get ISAM error in executing sql query then reboot the server . If it does not resolved the problem then open TAC case . we need to drop the table and create it again .
    If Row's on both server's are not matching then we might need to repair the database.
    Command :- utils uccx dbreplication repair db_cra
    Note:- Please contact TAC before executing these commands.
    I hope this will help you .
    Regards
    Ravi

  • Link to summary report with filtered data set within FormsCentral

    Is it possible to generate a link to a summary report with a filtered data set within FormsCentral?
    If I have 4 sales agents each using the form to submit their repsective sales (with a dropdown indicating the sales agent) is it possible to filter the data so that only Sales Agent A see a report of their sales?
    Thanks,
    D

    Try following forum:
    http://forums.adobe.com/community/formscentral?view=discussions

  • UCCX Historical Reports Not Accurately Filtered by Agent Name

    Hello, we're having an odd problem when running our historical reports.  When we filter a report by Agent Name only a couple of agents have any records.  However when we filter the same report by skill or CSQ name the records for all agents are present, leading me to think that the records are not being tagged properly somewhere in the database.  Has anyone seen this before or have any suggestions for resolving this? 
    For an example, if I run the Agent Call Summary report and filter by all of my agent names, I only get records for 3 people during the reporting period.  If I filter based on CSQ name I get records for all 25 agents.
    We are using UCCX version 8.02

    I'm also having agents show in the filter list that are no longer in the system, and in at least one case reports filtered by a skill report an agent who is not assigned to that skill anymore.  Are these symptoms a result of configuration in some way?  I'm starting to feel like the reporting is buggy in this release.

  • Cisco Historical Report no displays data after an CCX update

    Hi team.
    I have an issue with the Cisco Historical Report.
    On December 14 we performed a version update of UCCX:
    New Version 8.5.1.11004-25
    Old Version 8.5.1.10000-37
    Now I am informed by the Call Center Supervisor can not generate reports in the CHR with dates before 14 December.
    When you request a report, for example, the 1st to March 31, 2012, the error "No report data to display the specified date range." (See attached image Cisco Historical Report (4). JPG).
    When asked the same report, but from the 1st to 31 January 2013, the report is generated successfully and the Supervisor can see the data.
    Anyone have idea why this happens?. You should not miss the update data to make and less with the UCCX server restart. Or can it?.
    Thanks in advance.
    Best regards.
    Ernesto González

    Up

  • Cisco Historical reports Data Mismatches

    dear all
    i need to ask you about cisco Historical reports, i am using UCCX 8.6 and CUCM 8.6
    i am collecting data of calls presented handled and Abundant from these three reports:
    ccdr Call detail
    csq detail
    call abandont detail
    from all these reports data is different and difference is around 1000 calls of all month, abundant presented and handle all three are showing data mismatched,
    Second question is which report i should use to get data of: presented calls, handled calls abundant calls and per agent abundant calls, please suggest 
    please help me to resolve this issue 

    Kindly read the following for better understanding of their relationship
    a) UCCX Reporting Guide - Data reconciliation between reports
    b) UCCX Report Developer Guide - Interpret Database Records
    Thanks!
    -JT-

  • Verifying data coming from Cisco Unified CCX Historical Reports

    Good afternoon
    I (along with a number of other colleagues) are heavily involved in a project to take data from a wide variety of different sources and merge it all into one system so that we can report on it in a joined-up manner.
    The project comprises a number of different types of data source (such as Telephony or CRM). Within each data source type, we have various suppliers of those products. In the case of telephony data (which I'm looking into at the moment), the eventual aim is to make it possible to take data from any of the telephony platforms in use across our business (currently AVAYA, Alcatel and Cisco) and report on it in a uniform way, thus negating the need for an end-user to know what the Cisco definition of AHT is (for example).
    The switch I'm currently looking at is a managed switch, meaning that we don't have any sort of direct access to the back-end database(s). We could probably get it, but I suspect that the company that manages it for us would probably charge a small fortune for that. In view of this, I'm working with a number of the standard reports in the Cisco Unified CCX system. My plan (at the moment anyway) is to identify the reports that we can use that will best provide details of all calls into and out of our contact centres. I'd be looking to get the exact details of each individual call, which could then be rolled up into manageable intervals (such as 15-minute or 30-minute).
    Before I go much further, I'd like to be clear on something: I'm a database developer rather than a telecoms engineer so if I ask something that appears to be obvious then I apologise in advance. I've got quite a bit of experience of working with the CTI system that sits on top of our AVAYA platform, but it's proving to be a bit of a wrench effectively "un-learning" that system so that I can make room in my head for the Cisco solution.
    So, what I've learned (or have guessed) so far is this:
    When I run the Application Performance Analysis report, the Application Names that are returned are effectively the Call Routes that are set up in the system. Each Call Route can be fed by one or more Called Number (which I understand to essentially be a DDI);
    The Application Summary Analysis report shows the same Application Name information as is shown in the Application Performance Report. However this report also shows the Called Number, thus providing slightly more information about the individual DDI being answered;
    My next plan is to try and run an Agent-level report so that I can see exactly which calls each agent handled. This is where I've run into problems: I ran the CSQ - Agent Summary report for the whole of 17th October. I then ran the Agent Detail report for the same period, and ran it out to CSV so that I could "play" with the data. The CSQ - Agent Summary Report shows that a particular agent on a particular CSQ Name (ID) handled a total of 29 calls. However, if I filter the Agent Detail report for that agent and CSQ, I get a total of 30 calls and for the life of me am unable to identify where the missing call is coming from. Initially I'd thought it might be bacause the CSQ in question has two separate DDIs but as far as I can see, this is making no difference.
    I NEED to be 100% sure that when I'm importing the data from the Cisco reports into our system, I am then able to mimic the types of reports that are coming from Cisco, with the same figures. Therefore, if anyone can help me, I'll be extremely grateful.
    TIA
    Ian Henderson

    The "Cisco Unified CCX Historical Reports Scheduler" sits in my startup folder but seems like it doesn't "run" at startup. So I ran a "test":
    - Manually right-clicked the "Cisco Unified CCX Historical Reports Scheduler" icon in the startup folder and chose "Run as Administrator"
    I didn't log off or reboot PC and the reports are running again. I checked the "properties" of the icon and I did make sure it was already set to "Run this program as an Administrator" under the "Compatibility" tab.
    Not sure why it's not working...
    Thank you for any help you can provide....

  • Can xcelsius use crystal report instance to display data?

    HI experts,
    Here we use live office with crystal reports to feed data to xcelsius flash. We schedule the crystal reports every day, and want to use data of the crystal report instance when user open a xcelsius flash.
    Can this be realized ?
    thanks a lot !

    Hi Sam,
    You can do this. Go to Live office and goto to the "Properties for all objects" and select the refresh tab.
    Select the option as "Latest Instance" for refresh option and then save the Excel sheet and re-import into Xcelsius.
    This would refresh the data from the latest instance of Crystal report.
    Thanks,
    Amit.

  • CCX Historical Reports issue

    Hi everyone,
    Hope everything is going ok. I have an issue with the Cisco Historical Report Tool with UCCX 7.0 Premium version.When I opened the tool I only see 3 reports. I only see the Application Performance Analysis, Traffic Analysis or Detailed Call by Call CCDR reports. Ive checked permissions and everything but Im not able to see the rest of them. Yesterday, I was able to see them.
    If you have any ideas PLEASE let me know
    Thanks for your comments.
    Fred

    Hi
    Firstly I'm assuming you've sanity checked that the server/client PC times are correct, user is entering sensible time/dates, and sensible filters?
    Does this affect all reports?
    I've seen this happen when replication fails; sometimes putting in the other server IP when you run HRC may turn up the results. Maybe try that?
    Also go into Appadmin/System/Datastore Control Centre and report back the status of the replication - primarily the Historical datastore.
    Aaron
    Please rate helpful posts...

  • Historical Reports UCCX 7.0

    Hi,
    When I run a query with CCX Historical Report, for example on the activity by CSQ, I see all the CSQ and the CSQ removed.
    This problem also exists for the agents. I found all the device that have been deleted.
    Is this normal ?
    How to completely remove these elements ?
    I encounter this problem with two UCCX 7.0.
    Anyhow, any help would be appriciated.
    Thanks
    Romuald

    Hi Romuald,
    The only way to remove the CSQ's as you suggest is to remove the "appearance" in the filter list of the historical report generator.  Then you will have to use the Filters when creating the report.  The CSQ's are perminent in the database and removing them manually is not supported nor is it advised.  But by changing the query in the reporting template you can remove the CSQ appearances in the historical reporting client.  Note, this is done on the HRC Client machine, not on the Server...
    I have done this before for application names.  So for instance, the ICD_Application_Summary_en_us.xml file which is located under c:\program files\Cisco CCX Historical Reporting\Report Templates\en_US has a SELECT query that appears like the following:
    SELECT distinct applicationname FROM db_cra.dbo.contactcalldetail where applicationname not in ('')
    If I wanted to change the appearance of what is displayed in the filter list I would change this in the following way:
    SELECT distinct applicationname FROM db_cra.dbo.contactcalldetail where applicationname not in ('') and applicationname not in ('Advertising_Acct_Main') and applicationname not in ('Advertising_Accounting_CustSVC')
    So for your issue, to remove CSQ appearances you will likely have to do the same thing but in something like the ICD_Detailed_Call_CSQ_Agent_en_us.xml or if the reports you are running are using a different template you will need to edit those.  In that file you will find the SQL select statement:
    SELECT distinct csqname FROM db_cra.dbo.contactservicequeue
    So you would need to change that to something like the following:
    SELECT distinct csqname FROM db_cra.dbo.contactservicequeue where csqname not in ('') and csqname not in ('CSQ1') and csqname not in ('CSQ2')
    In this way you will exclude the CSQ's from showing up in the filter list.  Someone can run the reports and select all the CSQ's in the filter list and this should exclude the ones you do not want on the report.
    Please let me know if you have any questions about this and if this has been helpful please rate the post.
    Thanks
    Mike

Maybe you are looking for

  • No Data in Reports Details in Custom date range

    Hello, iTunes U Public Site Manager Admins. As the iTunes U Public Site Manager admin, I've been trying to access our institution's iTunes U Reports Details for a couple of days. (I send a monthly report of usage to our course/collection contributors

  • TS1424 itunes wont let me download apps on my iphone4

    itunes wont let me download apps not even free ones says to verify my billing info when i do it says cv code is wrong and its not and wont let me have the option to choose none on payment info page how do i fix it?

  • Error when attaching files from SharePoint library to an Outlook email?

    I've got a user who's reporting that recently she started getting en error whenever she tries to attach a file from a SharePoint library to an Outlook email. When she either drags from the library in Windows Explorer, she receives this: When uses Att

  • Date format in XML Forms

    Hi all, I already have done my article using XML FORMS. I added into the article the date field that I needed. So, I would like to format the date output in Render List as “dd/mm/yyyy” instead of “mm/dd/yyyy”. It’s possible? Anyone knows how to do it

  • Creating Links in DW with PS3 web Photo Album

    How do you create code links in DW on a PS3 web Photo Album I created an imported into DW to includ in my web page? You can veiw the photo album in my web site surfingpictureseast.com in the football section titled "Test of Photoshop Web Photo Album.