Transactional Replication - Generate a snapshot for a new art only

I will apreciate any help on this, thanks ahead!
We are running the below script that works well for us at dev and other environments but when running on prod the generated snapshot is for all articles in the publication rather than the desired results, for the new art only.
I have copied below the code being used.
SET NOCOUNT ON; SET TRANSACTION ISOLATION LEVEL READ COMMITTED;
DECLARE @rc int, @publication sysname, @article sysname, @subscriber sysname, @destination_db sysname
,@delete_article_from_replication_configuration bit ,@debug bit = 1;
SELECT @publication = N'MyPub'
,@destination_db = N'dest_database'
,@subscriber = N'MyServer'
SELECT @article = N'MyArt'
-- SET immediate_sync and allow_anonymous to false
EXEC sp_changepublication
@publication = @publication,
@property = N'immediate_sync',
@value = N'false';
EXEC sp_changepublication
@publication = @publication,
@property = N'allow_anonymous',
@value = N'false';
-- add article
DECLARE @error_message nvarchar(4000);
IF NOT EXISTS (SELECT * FROM dbo.sysarticles a INNER JOIN dbo.syspublications p ON a.pubid = p.pubid WHERE a.name = @article AND p.name = @publication)
BEGIN;
EXEC @rc = sp_addarticle
@publication = @publication
,@article = @article
,@source_owner = N'dbo'
,@source_object = @article
,@destination_table = @article
,@type = N'logbased'
,@creation_script = null
,@description = null
,@pre_creation_cmd = N'none'
,@schema_option = 0x000000000803100D /* 0x000000000803FFDF */
,@status = 16 /* 8 */
,@vertical_partition = N'false'
,@ins_cmd = N'SQL'
,@del_cmd = N'SQL'
,@upd_cmd = N'SQL'
,@filter = null
,@sync_object = null
,@auto_identity_range = N'false'
,@identityrangemanagementoption = N'manual';
IF ( (@@ERROR <> 0) OR (@rc <> 0) )
BEGIN;
SELECT @error_message = ERROR_MESSAGE(); RAISERROR(@error_message, 16, 1);
IF (@@TRANCOUNT > 0) ROLLBACK TRAN; RETURN;
END;
PRINT 'The article ''' + @article + ''' has been added to publication ''' + @publication + '''';
END;
-- add subscription
IF NOT EXISTS (SELECT * from syssubscriptions WHERE dest_db NOT LIKE 'virtual' AND srvname LIKE @subscriber AND artid IN
(SELECT artid FROM dbo.sysarticles a INNER JOIN dbo.syspublications p ON a.pubid = p.pubid WHERE a.name = @article AND p.name = @publication ))
BEGIN;
EXEC @rc = sp_addsubscription
@publication = @publication
,@subscriber = @subscriber
,@destination_db = @destination_db
,@subscription_type = N'Pull'
,@sync_type = N'automatic'
--,@sync_type = N'replication support only'
,@article = @article
,@update_mode = N'read only'
,@subscriber_type = 0
,@subscriptionstreams = 4;
IF ( (@@ERROR <> 0) OR (@rc <> 0) )
BEGIN;
SELECT @error_message = ERROR_MESSAGE(); RAISERROR(@error_message, 16, 1);
IF (@@TRANCOUNT > 0) ROLLBACK TRAN; RETURN;
END;
PRINT 'The subscription ''' + @subscriber + ''' for article ''' + @article + ''' has been created''';
END;
EXEC sp_changepublication
@publication = @publication
,@property = N'sync_method'
,@value = N'native'
,@force_invalidate_snapshot = 0
,@force_reinit_subscription = 0;
-- create snapshot
EXEC sp_addpublication_snapshot
@publication = @publication
,@frequency_type = 1
,@frequency_interval = 1
,@frequency_relative_interval = 0
,@frequency_recurrence_factor = 0
,@frequency_subday = 0
,@frequency_subday_interval = 0
,@active_start_time_of_day = 0
,@active_end_time_of_day = 235959
,@active_start_date = 0
,@active_end_date = 0;
Yaniv Etrogi
site |
blog | linked in |
mail
Please click the Mark as Answer button if a post solves your problem! or
Vote As Helpful

Hello,
1. Verify if you are using CONCURRENT or NATIVE method for synchronization by running the following command.
Use yourdb
select sync_method from syspublications
If the value is 3 or 4 then it is CONCURRENT and if it is 0 then it is NATIVE.
For more information check
http://msdn.microsoft.com/en-us/library/ms189805.aspx
2) Then add the subscription for this new article using the following command
EXEC sp_addsubscription @publication = 'yourpublication', @article = 'test',
@subscriber =‘subs_servername', @destination_db = 'subs_DBNAME',
@reserved='Internal'
If you are using the NATIVE method for synchronization then the parameter
@reserved=’Internal’ is optional but there is no harm in using it anyways. But if it is CONCURRENT then you have to use that parameter. Else the next time you run the snapshot agent it is going to generate a snapshot for all the articles.
Lastly start the SNAPSHOT AGENT job from the job activity monitor. To find
the job name follow these steps.
· select * from msdb..sysjobs where name like '%yourpublication%'
· Right click on each of those jobs and find which one contains the step
‘Snapshot Agent startup message’. This is the job that you want to
start from the first step.
3. Verify that the snapshot was generated for only one article.
Regards, Pradyothana DP. Please Mark This As Answer if it solved your issue. Please Mark This As Helpful if it helps to solve your issue. ========================================================== http://www.dbainhouse.blogspot.in/

Similar Messages

  • Error while generating CW kin for the new BG created for Taiwan

    HiAll,
    Please provide your help to resolve this issue,
    Iam getting error while generating CW kin for the new BG created for Taiwan, China.
    Error : Value TW is not a Valid context for the Descriptive Flexfield Person Developer DF.
    Please let me know, is there any step missed to create CW kins for new BG's.
    Thanks-
    Sowmya.
    Edited by: user13419037 on Jul 2, 2012 3:41 AM

    Hello ,
    Your solution can be solved by enabling the displayed check Box in Location Address DFF
    Thanks
    Bindu

  • TopLink does not generate SQL statements for inserting new objects

    TopLink does not generate SQL statements for inserting new objects. Why?
    Thanks in advance...

    Please see the response in
    Why does not unitofwork.commit write data to the database?
    Regards,
    Chris

  • Transactional Replication and Database Snapshots

    Hi,
    I have a database that is a publisher in transactional replication.
    I create a database snapshot on that database and then let transactions replicate to the subscriber(s).
    I revert the database back to the snapshot.
    What happens to replication?
    Dan Jameson
    Associate Director of IT/DBA
    Children's Oncology Group
    http://www.ChildrensOncologyGroup.org

    Your Log Reader Agent could fail if the publication database LSN is less than the value of the transaction sequence number (max xact_seqno) at the distribution database.  In which case you could execute
    sp_replrestart to resynchronize the Publisher metadata with the Distributor metadata.
    Afterwards it would wise to run a data validation to see how out of sync you are with the Subscriber and use
    tablediff utility or SQL Data Compare to bring the Publisher and Subscriber back into convergence.  Reinitialization is an option as well.  It depends on exactly what you are trying to achieve.
    Brandon Williams (blog |
    linkedin)

  • I use icloud email but (2 email accounts univ and icloud) and i need to have all my outgoing emails come "from" my university account, not my icloud.  So how do i do that, note checking the default box for sending new messages only applies to new messages

      I am using icloud email but i also have a university account.  All my email is fowarded to my icloud account and what i need to do is make sure all of my email that i ship is from my university account and not from my icloud account.  I know there is a box that allows the default for all new emails to originate from one account but how do i make sure that all my replies to email (i.e. they have been fowarded from university account to icloud) now go from my university account.  please help anyone. 

    Sorry for the delayed response, yes i want to use my university account when replying to all emails.  Note i just discovered something, when i forward my university email to my icloud account and than responded from either my imac of my macbook air (i.e. in icloud) it automatically goes to my university account in the "from" space (good news!!!).  That is just what i wanted, .  While that is the good news, the bad news is that my iphone and ipad still treat this email as being from icloud even though it is forwarded (redirected) from my university account.  That is when i respond to an email (or for that matter create a new email in my icloud account) it automatically lists the icloud account as the "from" account and i have to go in and manually modify it.  So i am 50% there to solving my problem (i.e. actually did nothing the systems just worked well) but i still need to figure out a way to make this happen on my ipad and iphone. Any help or suggestions, note the default button in the iphone and ipad for email work differently than the default in the composition menu of the imac or macair.

  • Need to generate a CSR for a new Lync 2013 Edge server

    I am upgrading my Lync 2010 Edge to 2013. Part of the process is exporting all the certificates on the 2010, some public, and eventually importing them into my 2013 Edge. I have a problem with one certificate that was generated by our internal CA for the
    2010 server itself named servername.domain.local. Since my new Edge will be renamed to the same name as the old Edge, I was planning on exporting this certificate but the private key can't be exported. The option is grayed out.
    I need to therefore figure out how to get a certificate on my new Edge. No Lync software has been installed yet. What is the best way to generate a CSR so I can manually create a certificate on my internal CA. Since I don't have access to the internal CA
    from the DMZ, I need to do it this way. I am thinking maybe the MMC but maybe Windows PowerShell? Once I get the CSR generated, I will figure out how to create a certificate on my internal CA.
    I know I can do it during the Lync install but I wanted to have it ready on the server when installing.

    The option is most likely grayed out, because the private key was not marked as exportable.
    Now, you can either request the certificate by using the Deployment Tool and requesting the certificates, selecting offline and then manually copying the CSR to your Internal CA (and the certificate back)
    Or you can use Powershell and do a Request-CsCertificate (see here: http://technet.microsoft.com/en-us/library/gg425723.aspx)
    Try something like this: Request-CsCertificate -New -Type Internal -ComputerFqdn "lyncedge.domain.com" -FriendlyName "Internal Edge"
    -Template jcila -PrivateKeyExportable $True -DomainName "edge.domain.com" -Output C:\path\test.req​
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer"
    Georg Thomas | Lync MVP
    Blog www.lynced.com.au | Twitter
    @georgathomas
    Lync Edge Port Check (Beta)
    This forum post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Generating the IDocs for some particular segments only......

    Hi Gurus,
    I have activates the change Pointers for generating the IDocs whenever the master dtaa is changed.
    Is there any technique so that I can recive the IDocs containing only those segment's data which is relevant for me.
    Abhi....

    The question I have asked is not related to Inbound I Docs processing.
    Actually I am sending the IDocs to Non-SAP system whenever any change is made to the master data, using the Change Pointers.
    Now, the situation is that the file that is getting generated contains the data corresponding to many segments. So, is it possible to restrict the segments/fields for which the data is generated.
    Thanks In Advance.......
    Abhi.,,

  • Email folders do not appear for each new account - only generic message folder available

    I would like to know if there is any way to get the new accounts I created to appear in a unique folder to each account.
    With my first work Blackberry Curve (new) I was able to set up my personal account via BIS website and it automatically created a unique folder for that account. I was on the Rogers network in Canada.
    At my new job I was give a BB used by a previous employee. I have set up two other accounts using the BIS website rather than the BB and this time no new folders were created. My email all comes to the main Messages folder. I am using a Verizon BB this time.
    Of note, I tried to add another account via the BB Setup Wizard and when I choose to set up a new account I get the message: "Browser is disabled by IT Policy" - I assume that is my company policy and not BB or Verizon. However, I was able to set up other accounts via the BIS site...
    Thanks for any help you can provide.
    BW
    Solved!
    Go to Solution.

    Since JSanders is offline, I'll jump in.
    From all of this information, I deduce that your BB did not get cleansed of it's IT Policy when it was given to you. And the IT Policy is doing things that are preventing you from doing as you desire (including possibly hiding the email icons). If, as you say, you are not going to be on their BES, then I suggest you go back to those admins and have them cleanse the BB properly to remove the IT Policy. Then, you will want to wipe it totally clean and start completely over.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Reinitializing only new tables in transactional replication

    Hi,
    I have to add  one new table to an  existing replication. I created  table and added that table to the replication as well.Now I want to reinitialize only the new table rather than all the tables. Please anybody help

    Publication properties immediate_sync and allow_anonymous need to be set to
    false in order to only generate a snapshot for the newly added article(s).
    I can add a new article and generate a snapshot for only the newly added article by executing the following:
    USE TestDB1
    GO
    --Set allow_anonymous to false
    EXEC sp_changepublication
    @publication = 'TestTranPub1',
    @property = N'allow_anonymous',
    @value = 'false';
    GO
    --Set immediate_sync to false
    EXEC sp_changepublication
    @publication = 'TestTranPub1',
    @property = N'immediate_sync',
    @value = 'false';
    GO
    --Add new article
    EXEC sp_addarticle
    @publication = 'TestTranPub1',
    @article = 'TestTable',
    @source_object = 'TestTable',
    @force_invalidate_snapshot = 1;
    GO
    --Add subscription to newly added article
    EXEC sp_addsubscription
    @publication = 'TestTranPub1',
    @article = 'TestTable',
    @subscriber = 'PACIFIC\SQL2012',
    @destination_db = 'TestDB2',
    @reserved = 'Internal';
    GO
    --Generate a new snapshot for only the newly added article
    EXEC sp_startpublication_snapshot
    @publication = 'TestTranPub1';
    GO
    Brandon Williams (blog |
    linkedin)

  • Solution Manager can't generate  installation key  for Netweaver 2004s

    I am trying to generate installation key for a new installation of
    Netweaver 2004s or 7.0 and the Solution Manager only display SAP ECC
    5.0 or 6.0 in the field production version, when i am trying do create
    a new system landscape. My Solution Manager is 4.0 release and support
    package 10. The keys generated by ECC 5.0 or 6.0 doesn't work.

    That is because SAP has not released an ECC 7.0
    NW2004s is also refered to as 7.0.  It appears that you are confusing this with ECC 5.0 and ECC 6.0
    A NW2004s installation can contain an ECC5.0 or ECC 6.0, just like it can contain a CRM 5.0 or SRM, or EP, et cetera
    The generated keys probably do not work because you have wrong hostname or instance number entered.

  • HT4972 Trade in for a new device

    Do apple offer trade in program for the new iPad

    Your only option is to sell the iPad and buy a new one.
    How to Sell Your Old iPad  http://tinyurl.com/85d69lk
    Other sources to sell.
    eBay Instant Sell http://instantsale.ebay.com/?search=ipad
    Sell and Recycle Used Electronics - Gazelle http://www.gazelle.com/
    For instant gratification in selling a used iPhone or iPad, Gazelle’s Gadget Trader, an iOS app, is tough to beat. In seconds it detects the device and reveals how much it is worth in good condition. Tap the Sell This Phone to Gazelle button and the deed is done.
    Sell Electronics for Cash - Next Worth  http://www.nextworth.com/
    Buy My Tronics  http://www.buymytronics.com/
    Sell Your iPad http://www.sellyourmac.com/mac-product-guides/ipad.html
    Totem http://www.hellototem.com/
     Cheers, Tom

  • ITunes 10 for OSX 10.5 only why?

    I was so bummed to see yet another major component/function of OS X not available for 10.4.11. Is this a "tech-under-the-hood" thing, or a money thing?
    I just don't need 10.5/6 and am not going to spend $130 for something I don't need - generally speaking. I'm really pi^%ed at Apple for making new things only available on 10.5 and above. ( Unless there is some major code in 10.5, not in 10.4.11 )
    Then I would understand.
    Thanks for your help in understanding this.

    Joshua Nelson2 wrote:
    I realize I'm very behind with the platform legacy.
    It's not about a "vile conspiracy" or even being interested in another platform, lol.
    I just don't need most of the functionality of 10.5/6, and hence don't want to pay for something I, generally, don't need. This is a reasonable position to me, anyone else's sympathy non-withstanding , lol.
    If it's a code thing as the OS X platform progresses - so be it. If it's just a money thing, I stand by my gripe with Apple and the computer industry in general. Why should I pay for a bunch of bell and whistles I don't need in 10.5/6 @ $130.
    iTunes is a ubiquitous enough of a 'sub platform" in OS X that I don't feel I should be left out because I don't want to buy into 10.5/6.
    If it's a code thing in that 10.4 can't run the iTunes 10 iteration - key then I eat crow and understand.
    Snow Leopard, 10.6, is only $29. And I've seen places where you can get it for $10 less. But I guess that's not the point. I think that companies have a right to make money, and if you don't feel that way, then you're making the right choices for yourself. But you can't complain if they leave you behind. Seriously, you made a distinct choice, but you can't point a finger at anyone else.
    If upgrades were just "bells and whistles" then you'd be right. But it really is more than that. Speed and stability are #1 for most of us. By your logic, every upgrade is nothing. I'm not sure how long you've been using OSX, but you should have seen System 9.0 vs OSX. And I have got to say, I'm glad I'm not using Tiger, because I remember all of its flaws.
    But the most important thing is that new and better software is always coming. I don't know if iTunes 10 is the greatest version ever, but every upgrade to iTunes has made it better, faster, easier, name your adverb or adjective. We cannot expect that Apple provide software for legacy systems that could be 10 years old. Providing that kind of code may actually be a liability for those of us with modern OS X systems. And then there's the cost to Apple (as rich as they may be) in time and money. I'd rather have iTunes 10 and iOS 4.1 (and .2) sooner than later, and those devices probably require the advancements in iTunes 10.
    I appreciate what you're saying. But you made the choice.

  • At what point is it a good practice to Drop and Add back an Article for Transactional Replication?

    Hi,
    We have transactional replication Setup in our company , a set of tables involved in replication needed to be reloaded on prod say about 12-13 Million rows .
    We decided to drop the articles and add it back to replication so that a new snapshot for the specific articles can be generated and the transfer of data is fast and no breakage in the replication.
    But what is the best practice or a threshold point for taking this route i.e dropping an article and adding it back ?
    I mean 
    when Is it good to go this route  i.e when the load is more than 10, 000 rows or 50.000 rows  100,000 or at what number do we start this process?
    Thanks,
    Jack

    That is a function of horsepower and bandwidth.
    If you do drop a table out rather than replicate a 1% change of its data, 100% of the table will need to be snapshotted which might cause havoc with users trying to access that table, and if you are running immediate sync all of the tables will need to be
    resnapshotted.
    With the Enterprise Edition of SQL Server you will be able to use a sync type of database_snapshot which will mean no locking, otherwise it could be painful. Initialize from a backup is also an option to save you the cost of a snapshot.
    looking for a book on SQL Server 2008 Administration?
    http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search?
    http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941

  • SQL 2012 Transactional Replication Publisher is also AG Primary, AG fine, but Replication status continuously 'waiting for next Log backup'

    Hi,
    I have a SQL 2012 instance that hosts 3 databases that are publishers in (push) transactional replication to subscribers in other domains and are also primary in an Availability Group to other instances in the same domain.  The AG is healty (synchronized),
    and replication is ok for 2 databases, but the third continuously shows the Publisher to Distributor history status as 'Replicated transactions are waiting for next Log backup or for mirroring to catch up.'
    I have weekly full, nightly differential, and hourly log.  Those are running and I've tested restoring the publisher db from them into a test instance.  The option for sync_with_backup is 0.  I generated a new snapshot, no change (haven't
    reinitialized, that will be last possible option as this is production).  When the log backups run, status will briefly change to 'Approximately (x) log records have been scanned in pass # ..., 0 of which were marked for replication' and some data
    does replicate, but then status immediately changes back to the message about waiting for log backup.   We are only replicating tables (no views, sp's, etc).  All subscribers and AG secondaries are SQL 2012.  My db is less than 200
    GB data. 
    The jobs are continuously running and data updates are occurring on the primary.  The distribution database is on the same instance as the publishers.  Anyone have any ideas what could be happening? 
    Thanks greatly!

    Update - I resolved this. 
    We had added a new asynchronous instance to the AG, but hadn't added the databases on the new node to the AG yet.  Conceptually it seems that adding the instance must have marked the logs and interferred with transactional replication on the
    primary.  Once I added the databases to the AG on the secondary, then the replication status cleared on the primary and has remained cleared.  It is odd though that it only impacted one of the databases in the AG. 
    cheers. 

  • Snapshot Error When Adding Article to Transactional Replication

    I am trying to add an table articles to my transactional replication setup.   When I do, the snapshot error fails with the following message:
    Source: Microsoft.SqlServer.Smo
    Target Site: Microsoft.SqlServer.Management.Smo.SqlSmoObject GetSmoObject(Microsoft.SqlServer.Management.Sdk.Sfc.Urn)
    Message: Attempt to retrieve data for object failed for Server '<servername>'.
    Stack:    at Microsoft.SqlServer.Management.Smo.Server.GetSmoObject(Urn urn)
       at Microsoft.SqlServer.Replication.Snapshot.SmoScriptingManager.BuildSmoObjectArrayAndUrnLookupTable(IDictionary& dictUrnKeyArticleScriptingBundles)
       at Microsoft.SqlServer.Replication.Snapshot.SmoScriptingManager.DoScripting()
       at Microsoft.SqlServer.Replication.Snapshot.SqlServerSnapshotProvider.DoScripting()
       at Microsoft.SqlServer.Replication.Snapshot.SqlServerSnapshotProvider.GenerateSnapshot()
       at Microsoft.SqlServer.Replication.SnapshotGenerationAgent.InternalRun()
       at Microsoft.SqlServer.Replication.AgentCore.Run() (Source: Microsoft.SqlServer.Smo, Error number: 0)
    Get help: http://help/0
    Source: Microsoft.SqlServer.Smo
    Target Site: Microsoft.SqlServer.Management.Smo.ObjectKeyBase CreateKeyFromUrn(Microsoft.SqlServer.Management.Sdk.Sfc.Urn)
    Message: The input Urn must specify Name at level UserDefinedFunction.
    Stack:    at Microsoft.SqlServer.Management.Smo.SchemaCollectionBase.CreateKeyFromUrn(Urn urn)
       at Microsoft.SqlServer.Management.Smo.Server.GetSmoObjectRec(Urn urn)
       at Microsoft.SqlServer.Management.Smo.Server.GetSmoObject(Urn urn) (Source: Microsoft.SqlServer.Smo, Error number: 0)
    Get help: http://help/0
    Specifics:
    Transactional replication:  Both Immediate Sync and Allow Anonymous are set to 0.
    Publisher and Distributer are same server:  SQL Server Standard 2008 R2 (10.50.4000.0) on Windows 2008 R2 SP1
    If I add even one table article (doesn't matter, I've tried different ones), I get the error above when I run the snapshot agent.
    If I remove the table just added and rerun the snapshot agent, it succeeds with the message "A snapshot was not generated because no subscriptions needed initialization", so at least I don't have to reinitialize (thank goodness!).
    Any ideas as to what might be causing this, and how I can add articles to my existing publication?
    Thanks in advance for your help.

    Hi John V.Barone,
    I’m writing to follow up with you on this post. Was the problem resolved after performing our action plan steps? If not, according to your error message, we need to verify if it is caused by replicating Meta Data corruption. You can check if there is a bad
    row
    in “sysarticles” (for a table) or “sysschemaarticles” (for a UDF) for which we do not have a corresponding “ObjectId” in sysobjects . If yes, delete
    manually  this row
    from Published (sysarticles, sysschemaarticles, syssubscriptions) and Distribution DB (MSsubscriptions,sysschemaarticles,MSarticles).
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

Maybe you are looking for

  • HT1541 anybody else having a problem with gifting, ie. receiver not receiving?

    I have gifted two tv season packages, (Friends 1-5 and 6-10). The first gift was not received, but Apple support sent the redeem code. The second gift was not received, (yes, I resent, resent to myself . . .), Apple Support basically told me how to r

  • Adding keystrokes to a to make a 7 digit string for a barcode input

    Hi, I am kind of new with this type of LabVIEW as I have mostly done DAC inputs instead of keyboard. I have a barcode reader that scans 7 digits. I have tried the keyboard aquire, but all this does is zip through the keys very fast and only shows one

  • End transaction without saving it

    Hi All A. Is there any possible with a button standard sap, to get out from a document transaction without saving it? after confirm account? (i am not working with IVR) B. Is there any possible to get out from document transaction without saving the

  • Speech Recognition Snafu

    I have been trying to use the line in jack on my PowerBook as the input source for speech recognition but for some reason when I plug in a microphone there, no sound is detected when I check the input monitors. I want to be able to use my headset wit

  • O365 activation error

    I've having issues activating Office 365 proplus , the scenario is , we have previously installed office 2013 proplus (volume licence) and now are removing this and installing Office 365 proplus via the deployment tool, all installs well until you ne