Publication with updateable view

I create publication item for updateable view (using triggers) in my database
but when i trying to add it to publication (addPublicationItem) it failes with error
CONS-10033: Parent table DBO_SOGINSFORORA.FACEJURIDICAL not published for DBO_SOGINSFORORA.V_B2B_JURIDICALFACES viewI really need to add a publication items of the tables in the publication on which the view based on?
may have another way?

So, i create database traces using thi two lines:
ALTER SESSION SET tracefile_identifier = 'MobileServer'
ALTER SESSION SET events '10046 trace name context forever, level 1'And i figured out what createPublicationItem trying to execute this statement:
CREATE OR REPLACE TRIGGER "TEST"."V_B2B_ADDRESS_TYPECTR"
AFTER INSERT OR UPDATE OR DELETE ON "TEST"."V_B2B_ADDRESS_TYPE"
FOR EACH ROW
DECLARE
v_SID NUMBER;
v_TMP CHAR(1);
v_CLID VARCHAR2(60);
BEGIN
v_SID := MOBILEADMIN.C$UPDATE_PACKAGE.SessionSeq;
v_CLID := MOBILEADMIN.CONS_EXT.GET_CURR_CLIENT;
BEGIN
SELECT DIRTY
INTO v_TMP
FROM "MOBILEADMIN".C$ALL_SID_LOGGED_TABLES
WHERE OWNER = 'TEST'
AND STORE = 'V_B2B_ADDRESS_TYPE'
AND SID = v_SID
FOR UPDATE;
IF NVL(v_TMP, 'N') <> 'Y' THEN
UPDATE "MOBILEADMIN".C$ALL_SID_LOGGED_TABLES
SET DIRTY = 'Y'
WHERE OWNER = 'TEST'
AND STORE = 'V_B2B_ADDRESS_TYPE'
AND SID = v_SID;
END IF;
EXCEPTION
WHEN NO_DATA_FOUND THEN
INSERT INTO "MOBILEADMIN".C$ALL_SID_LOGGED_TABLES
(OWNER, STORE, DIRTY, SID)
VALUES
('TEST', 'V_B2B_ADDRESS_TYPE', 'Y', v_SID);
END;
IF INSERTING THEN
UPDATE "TEST"."CVR$V_B2B_ADDRESS_TYPE"
SET VERSION$$ = VERSION$$ + 1, DMLTYPE$$ = 'I', CLID$$OWN = v_CLID
WHERE "ADRESSTYPEID" = :new."ADRESSTYPEID"
AND DMLTYPE$$ = 'D';
END IF;
IF UPDATING THEN
IF NOT (:new."ADRESSTYPEID" = :old."ADRESSTYPEID") THEN
UPDATE "TEST"."CVR$V_B2B_ADDRESS_TYPE"
SET DMLTYPE$$ = 'D', CLID$$OWN = v_CLID
WHERE "ADRESSTYPEID" = :old."ADRESSTYPEID";
END IF;
UPDATE "TEST"."CVR$V_B2B_ADDRESS_TYPE"
SET VERSION$$ = VERSION$$ + 1, DMLTYPE$$ = 'I', CLID$$OWN = v_CLID
WHERE "ADRESSTYPEID" = :new."ADRESSTYPEID";
END IF;
IF SQL%NOTFOUND AND NOT DELETING THEN
INSERT INTO "TEST"."CVR$V_B2B_ADDRESS_TYPE"
("ADRESSTYPEID", VERSION$$, DMLTYPE$$, CLID$$OWN)
VALUES
(:new."ADRESSTYPEID", 1, 'I', v_CLID);
END IF;
IF DELETING THEN
UPDATE "TEST"."CVR$V_B2B_ADDRESS_TYPE"
SET VERSION$$ = VERSION$$ + 1, DMLTYPE$$ = 'D', CLID$$OWN = v_CLID
WHERE "ADRESSTYPEID" = :old."ADRESSTYPEID";
END IF;
END;As you can see it call CREATE TRIGGER AFTER INSERT
I thought that only INSTEAD OF TRIGGER can be created for view.
apparently this is a reason for error
CONS-10049: Consolidator Exception: ORA-25001: cannot create this trigger type on views

Similar Messages

  • Questions about updateable views

    Greetings,
    Some problems which I experienced with Delphi + Crlab ODAC + Oracle DB 10g Express and complex (joined tables) updateable views.
    1. Required field (NOT NULL) in a joined table remains required in the view. My data access components read the meta information and throw error, when nothing (NULL) is put into that field. If something different than NULL is put though, the DB throws error because this is attempt to update multiple tables. That functionality may be disabled
    in the data access components, resulting not that clean and easy to maintain exception
    handling code.
    2. CONSTRAINTS problem. It seems that any constraints on VIEW cannot be applied.
    In the original table. I had UNIQUE field, and I placed UNIQUE DISABLED NOVALIDATE
    in the view as constraint to that field in the view. It didn't prevent me to put several
    rows with the same value in that field, which appeared in the original table.
    It would be perfect if I could somehow manipulate the view meta information so my application can work with it as it was the original table (well, the original table with several read-only columns more). Is that possible in Oracle DB?

    Hi.
    For this part
    "..the DB throws error because this is attempt to update multiple tables"
    You may want to write an Instead-of-trigger
    Regards
    Peter

  • [XI 3.1] Publications with Personalization (Profiles) - Document name

    Hi,
    We have a question with regard to Publications with Web Intelligence reports in XI 3.1.
    We would like to know if it's possible to put the "profile value" (or something equivalent) in the name of the output document?
    For example, we want to deliver 3 versions of a WebI report to 3 user profiles:
    - 1 user profile can see all countries
    - 1 user profile can only see region X
    - 1 user profile can only see region Y
    Name of the output document going to the destination should have an indication for which profile value it ran, output name should contain eg.:
    - All
    - Region_X
    - Region_Y
    There are several placeholders that can be used in the "Use a specific name" option of the destination:
    Title (SI_NAME)
    ID (SI_ID)
    Owner (SI_OWNER)
    DateTime (SI_STARTTIME)
    Email address (SI_EMAIL_ADDRESS)
    Userfullname (SI_USERFULLNAME)
    Viewer hyperlink (SI_VIEWER_URL)
    DocumentName (SI_DOCUMENT_NAME)
    ReportHTML content (SI_DOCUMENT_HTML_CONTENT)
    None of these seem to help us for our purposes.
    Is there a way we can get the above functionality? Can placeholders be add somehow? eg. with the name of the group used in the profile values
    Thanks!
    Raf

    Ravi,
    Thanks for the feedback!
    No, we weren't intending on using dynamic recipients. We intended to use profiles. However, dyn recipients will do if we can get it to work that way.
    Did you by any chance implement or test this?
    Reason for asking: we had kind of the same idea. We did a small test (we just replaced the email address or full name in the dyn rec Excel with region X, etc...). Result we got was: all 3 file names contained the user who ran the publication and its email address (coming from the users credentials in the BO repo). Not the desired result.
    We used a file server as destination.
    Raf

  • Updateable view

    We have an updateable view that joins two tables in the databse. In the java client, we have an updateable result set that is used in a table model to display/edit the data. The only thing is when the data is edited, a "ORA-01446: cannot select ROWID from view with DISTINCT, GROUP BY, etc." is thrown. Is there any way around this, such as a way to tell the result set not to rely on ROWID?

    Elango,
    Thanks for the reply. In my case though the join is done inside the updateable view in the database. The query being run from JDBC does not contain a join, it only selects from the view. If I did the same thing using the generic JDBC-ODBC driver it would work, but since the Oracle JDBC driver relies so heavily on ROWID it does not work. Is there any way around this other than switching drivers?

  • Not updateable view

    I want to create a not updateable view. I want to obtain a not editable JTable to show this view, as when
    we difine a table model with redefined function isCellEditable() returning false.
    Thanks
    Albert Portugal.

    I found another method to do that. Steps:
    1. create a view object (over the table view you will apply read only restrict) with read only checkbox checked.
    2. Then click on bc4jmodule. Take out view object from exported views.
    3. Click over the parent view object FKLink and change relation with the modifiable view for the new read only view. Add FK from destination attributes.
    4. Click bc4jmodule properties and add new view object to export.
    Finally when you display this data block it could not be modifiable.
    The solution explained before is when you need modify this view. So if you are completly sure that some table will not be modified by application the easiest solution is checking read only flag in view object. (table).
    Albert Portugal

  • Transactional publication with updatable subscriptions

    Which system table stored the information of Transactional publication with updatable subscriptions? I would like to check if any publication is using. Thanks

    As Hilary Cotter and Prasharith mentioned above the syspublications view
    exposes publication information and ofcourse this view is stored in the distribution database.
    --To obtain information about Publish Database use this
    SELECT
    * FROM sysarticles
    SELECT
    * FROM syspublications
    --To obtain information about Distribution DataBase
    UseDistribution
    GO
    SELECT
    * FROM distribution..mspublications
    --To obtain information about SubscriberDataBase
    USESubscriptionDatabase
    SELECT
    * FROM MSsubscriptions
    SELECT
    * FROM MSsubscriber_info
    The one i have listed below are DMV’s for Replication, you can try whichever works for you to reterive publication information as well
    /*sys.dm_repl_articles-- holds information about each article being published. It returns data from the database being published and returns a row for
    each object being published in each article. */
            select
    * from
    sys.dm_repl_articles
     /*sys.dm_repl_schemas-- has information about each table and column being published. It returns data from the database being published
    and returns one row for each column in each object being published. */
            select
    * from
    sys.dm_repl_schemas
    /*sys.dm_repl_tranhash--holds information about the hashing of transactions. The syntax is as follows:*/
            select
    * from
    sys.dm_repl_tranhash
    /*sys.dm_repl_traninfo-- revels information about each transaction in a transactional replication. */
            select
    * from
    sys.dm_repl_traninfo

  • Distribute publication via Adobe Viewer.app on iPad?

    Is there anything to stop someone from publishing a publication via the Adobe Viewer.app on the iPad? I realize this wouldn't be ideal, since it's a non-branded viewer, etc., but legally, is this "against the rules"?

    Sorry, maybe I gave the wrong impression.
    What I meant was, is there anything against my sharing a publication via the Adobe Viewer.app on the iPad. I'm not talking about sharing an IPA, I'm talking about sharing the publication within the Viewer.app. For example, I create the publication in InDesign and once it's complete, I then "Share" it via the Folio Builder panel to the people I want to share it with (roughly 50-60 people). Then, using their Adobe ID, they could log in, via the Viewer.app on the iPad, and download the publication to their device.
    Again, not ideal since it's not branded (ie. you have to access the publication via the Viewer.app), but it's a free solution. Not that I'm looking for a free solution, but since doing what I've been asked to do by my client — ie. release a 1-off, in-house app via an iOS Enterprise Developer Account — requires a minimum $50,000+ buy-in for the Adobe DPS Enterprise Edition subscription, this seems like my only option (outside of not using the Adobe DPS).
    Thoughts?

  • TS1381 My left arrow does not work on my macbook pro(model A1226).  I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, test all other keys with keyboard view (all others work)  - HELP!!

    My left arrow does not work on my macbook pro(model A1226).
    I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, & tested all other keys with "keyboard viewer" (all other keys work except for the arrow). 
    In addition, I have gone thru all the recommended checks with universal access and have booted from snow leopard dvd and the left arrow still does not work. 
    I have tried using the left arrow key in all of applications I use such as: excel, ms word, address book, calendar, iphoto, terminal, & highlighting an icon and using the arrows to move to another selected icon.
    Here is the kicker!  In addition, I purchased a logitech solar bluetooth keyboard and the arrows work fine with my ipad but do not work when paired with the macbook pro. All other keys work fine on the macbook pro using the bluetooth keyboard.
    I believe this says that the problem is not in my macbook pro keyboard. So where can it be?
    Can anyone think of any other rabbit holes I can search?
    thanks and regards
    vats3

    I would also like to add that I've reverted the two cd drive and hard drive mods I did and the laptop is back to factory hardware and there is 0 corrosion or mold visible.

  • [SOLVED] Lousy fonts with .chm viewer for Linux

    I installed the .chm file viewer HelpExplorer 3.0 in both Windows XP and Arch Linux (chm = compiled HTML help file).  In Windows XP, with default fonts installed, the fonts in text read with this viewer appear crisp, sharp and anti-aliased.  In Arch with KDE 3.5.7, on the other hand, the fonts appear fuzzy, grainy and don't seem to be anti-aliased, in contrast with their appearance in all other apps (except for a few such as Dillo) which render text good-looking, sharp and anti-aliased.
    HelpExplorer for Linux was provided as a tarball that included a precompiled 'helpexplorer' binary.  The program doesn't seem to allow for customizing font settings.
    The following fonts are installed in Arch (in /usr/share/fonts/):
    ttf-bitstream-vera-1.10-5 is installed by default
    gsfonts 8.11-4 is installed by default
    PostScript Type 1 fonts installed: Century Schoolbook, Nimbus, URW Bookman, URW Gothic, URW Palladio
    ttf-ms-fonts-2.0-1 (Microsoft TTF: Andale Mono, Arial, Comic, Courier, Georgia, Impact, Tahoma, Times New Roman, Trebuchet)
    font-bh-ttf-1.0.0-3 (Luxi BH)
    xorg-fonts-100dpi-1.0.1-1 (courier, helvetica, lucida, new century, times)
    The "Files" section of my xorg.conf looks as follows:
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    I've attached a screenshot of some text displayed in the HelpExplorer reader in Arch (the font is Times New Roman): http://img216.imageshack.us/my.php?imag … ot1zh9.png
    [img=http://img216.imageshack.us/img216/8401/snapshot1zh9.th.png]
    What do I need to do to improve the font appearance in this program in Linux?
    Last edited by RobF (2007-10-02 18:06:46)

    I found a solution of sorts by installing and running the Windows version of HelpExplorer in Wine or Crossover.  There is still very little control over fonts but when I enlarge the default font (with 2x CTRL-+) I do get a nice-looking anti-aliased Times New Roman font, and this solution would be my preferred way of reading .chm files in Linux (i.e. better than KchmViewer or Xchm).
    Recap of the problem:
    1. The .chm viewer HelpExplorer Viewer 3.0 when installed in Windows XP renders fonts crisp and clear and anti-aliased.
    2. The Linux version of HelpExplorer Viewer 3.0 (delivered as a precompiled executable in a tarball) doesn't render fonts antialiased, regardless of what I tried, and they look grainy and unattractive.
    3. The Windows version of HelpExplorer Viewer 3.0 when installed and run in Arch in Wine or Crossover does render the default font they offer (looks like Times New Roman) fairly crisp and clear and anti-aliased, at least at the enlarged setting.
    Can someone explain to me what might be going on?  Why is it that the Linux version cannot render fonts anti-aliased when the Windows version running in the emulator in Linux can?  Is there something that I have to change in my fonts config, fonts location, symlinks or path to get the anti-aliased fonts to work in HelpExplorer in Linux?
    Robert

  • Master-detail with dynamic view object

    How can you create a view link with a view object that is dynamic? I have created a master-detail relationship on a UIX page. I change the master view object at runtime using a view definition and SQL and then I bind the view object to an iterator on a UIX page. I need the new dynamic view object to maintain the link between the detail view object. Is this possible?
    The reason why I have to change the view object at runtime is because I am implementing a search module and the tables in the from clause can be modified at runtime so I need to have a dynamic view object.
    Thanks,
    Sanjay

    After playing around with ViewObjectImpl's setQuery() method some more I found out that this solution might not work for me due to the following reason: when the user tries to sort a column in the result table, the original contents of the view object get executed instead of the run time query.
    <p>
    I would like to go back to my original solution that included creating a view definition based on the runtime query and then creating a view object from that which I bind to the RowSetIterator. The missing piece to the master-detail functionality is with the detail Iterator being in sync with the master. I have tried the following but I get a ClassCastException <p>
    DCIteratorBinding detailBinding = ctx.getBindingContainer().findIteratorBinding("DetailIterator");
    detailBinding.getViewObject().<b>setMasterRowSetIterator</b>(masterBinding.getRowSetIterator());
    <p>
    here is the relevant stack trace:
    java.lang.ClassCastException
    at oracle.jbo.client.remote.ViewUsageImpl.getImplObject(ViewUsageImpl.java:1829)
    at oracle.jbo.client.remote.RowSetImpl.setMasterRowSetIterator(RowSetImpl.java:512)
    at oracle.jbo.client.remote.ViewUsageImpl.setMasterRowSetIterator(ViewUsageImpl.java:1147)
    at oracle.jbo.common.ws.WSViewObjectImpl.setMasterRowSetIterator(WSViewObjectImpl.java:1005)

  • ICal bug with month view

    I primarily use week view on iCal, but sometimes i switch to month view for a larger perspective. Often, i use month view to check for any leftover events from the previous month in case i forgot to delete one or two.
    I just found a bug concerning this. If i click on "month" today, it'll take me to the month view for june 2011, and from there i can navigate forwards or backwards. However, may 2011 seems to have a bug. If i click on < from june, it does nothing; if i click again, it takes me to april 2011. Similarly, if i click on > from april it does nothing and if i click again it takes me to june.
    It doesn't end there. The june/may thing happens only when the selected day (the one shaded light grey on the month and week views and bright blue on the little month tab on the left) is after 04 june. If a day from the first week of june (i have my weeks start on sunday) is selected, the < button does take me to may, but several events which i deleted a long time ago are showing up.
    Now, i have an event set for today (04 june). Since the first four days of june are in the same week as the last three of may, the month view for may shows these four days, as any normal calendar app would.
    If i use the month tab to the left to navigate, i can access may 2011 by selecting any day on that month. However, iCal's behaviour depends on which day was selected previously. If the previous day was in april 2011 or earlier, iCal will show the month of may completely empty, which is great because i have no leftover appointments from may; however, the box for 04 june is also empty, which it shouldn't be. If the previous day was in june 2011, it'll show may with a repeating event on every sunday except the first, which is completely absurd, since i have deleted this event (and why isn't it showing on the first sunday in may?); the box for 04 june, however, will correctly show the event i have set for this day. If the previous day was in july 2011 or later, it'll show may with the repeating event on all sundays (including the first one) and it won't show anything on the box for 04 june.
    Obviously, there is a bug with may 2011.
    In case it helps, i do have a repeating event set to all sundays until the end of existence, but i have deleted all the entries from may and previously, since they have obviously already happened. Also, i had many other repeating events set to happen on different weekdays; these are to repeat themselves weekly until about halfway through june, and they started on april or may (can't remember right now). Like the sunday one, i have deleted all the entries from may because they have already taken place. Strangely (and thankfully), none of these appear when i visit may from june or later, as does the sunday event.
    Any help would be greatly appreciated. Or am i forever stuck with week view, which has so far proven to be bug-free?
    (I did a search on Google and another on the Apple forums for this issue but could find nothing, so i decided to ask the question myself. I apologise if somebody has already asked this question and i just couldn't find it.)

    Greetings,
    I have a vague recollection of someone else with this issue but haven't experienced it myself nor encountered it recently.
    Troubleshooting:
    1.) First make an iCal backup: http://support.apple.com/kb/HT2966.
    2.) Remove the following to the trash and restart your computer:
    Home > Library > Caches > com.apple.ical and / or "ical"
    Home > Library > Calendars > Calendar Cache, Cache, Cache 1, 2, 3, etc. (Do not remove Sync Cache or Theme Cache)
    Home > Library > Preferences > com.apple.ical (There may be more than one of these. Remove them all.)
    __NOTE: Removing these files will remove any shared (CalDAV) calendars you may have access to. You will have to re-add those calendars to iCal > Preferences > Accounts.
    Once the computer is back up and running open iCal and test.
    Hope that helps!

  • How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM.

    How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM. I found that it can be
    done by using XsltListViewWebPart class but how can I use this one by using shraepoint client api.
    shiv

    Nice, can you point me to the solution please ?
    I'm  trying to do this but I get an error : 
    Web Part Error: Cannot complete this action. Please try again. Correlation ID: blablabla
    StackTrace:    at Microsoft.SharePoint.SPViewCollection.EnsureViewSchema(Boolean fullBlownSchema, Boolean bNeedInitallViews)     at Microsoft.SharePoint.SPList.GetView(Guid viewGuid)   
    All help really appreciated.

  • Problem with a view in XK01 transaction

    Hi All,
    I am working on upload conversion for Vendor Master. While doing conversion, i am getting a problem with a Contact person view in XK01 transaction. In contact person view the telephone field column sometimes allowing to add data ,sometimes it's not allowing data which results an error in conversion program saying that the telephone field in not an input field. I don't know why the view is showing the telephone field like that.
    Can any one suggest the solution for this problem. I know this is configuration problem with a view but i posted in ABAP forums.
    Thanks

    Hi Ben,
    I assume that you are writing a BDC program to upload contact person information. If so, you are trying to populate a table control here. Please check to see if you are calculating the index to assign values to the correct rows.
    if you are calculating index in your program then i think it should be configuration problem as you said.
    Thanks,
    Ganesh.

  • Creation of Article with purchasing view.

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

  • Problem with HTML viewer

    Dear All ,
    I am facing a problem with HTML Viewer . My senario is as follows :
    1. I have created one HTML page . On that page there are 4 Images
    2. I imported that HTML page in SAP with the help of transaction SMW0
    3. I Called that HTML page in my ABAP program using the method "load_html_document" of class cl_gui_html_viewer
    4. This is happening perfectly ok on the machine on which all this developement was done.
    But the issue is when I execute my ABAP program on a different machine , those Images on that HTML page are not displaying.
    Can you please guide me how to remove that machine dependancy?
    Regards,
    Nikhil

    Hi Nikhil,
    Please check if the image is properly imported properly. Also check if there is any option which you might have forgotten while imported like dependeency.
    Regards
    Abhii...

Maybe you are looking for

  • Non-opaque colours

    Greetings, This question is a bit of a sequel to this other thread. The last couple of days I've been trying to find visual 'pleasing' way to show an 'alert' or 'alarm' status for some real time processes. With the help of Camickr I started off using

  • All the traffic go through IPsec tunnel(site to site ) ,but something seems not working correctly

    Hi, all,   I have seen a good post in google.com about how to make all the client's traffic though IPsec tunnel then out to the Internet from the Main site,now I attach this configuration and application for discussion, and what the problem is that I

  • Application Review Problem

    Hi I am having problem with releasing my app. it's been a month my app. doesn't get posted on the app store and the reviewer doesn't respond to my e-mails to be able to resolve any problem if exists, I was wondering where should I contact. Thank-you.

  • Microsoft Outlook 2003 will not open after downloadin​g BlackBerry Desktop

    I just upgraded from a BB 8303e to the BB Tour 9630. When I downloaded BB Desktop manager to my computer the program required that I must download Microsoft.net Framework 2.0 SP1, I did that, and was able to bring over all current contacts and calend

  • Sort Spotlight results by creation date?

    Hi All-- At work, I've recently switched from an old old version of MS Outlook to Entourage 2004, which seems much better. I'd like to archive my old mail, and use Spotlight to search it. This works very well, except that with e-mail, the "date recei