JAI create TIFF Compressed in Group 3 Fax

Hi people,
I have a problem regarding a tiff image. I need to create a compressed Group 3 Fax tiff file. I am using JAI, and I cannot find a way to compress it as a Group 3 Fax. When I use TIFFEncodeParam.COMPRESSION_GROUP3_1D, the file is being compressed as CCITT Modifed Huffman RLE, and when I use TIFFEncodeParam.COMPRESSION_GROUP3_2D, the file is being compressed as TIFF Bitmap (TIF) Group 3 Fax 2D.
My requirements are to create a compressed TIFF Bitmap (TIF) Group 3 Fax. Do you have any ideas?
Regards
George Azzopardi

Hi people,
I have a problem regarding a tiff image. I need to create a compressed Group 3 Fax tiff file. I am using JAI, and I cannot find a way to compress it as a Group 3 Fax. When I use TIFFEncodeParam.COMPRESSION_GROUP3_1D, the file is being compressed as CCITT Modifed Huffman RLE, and when I use TIFFEncodeParam.COMPRESSION_GROUP3_2D, the file is being compressed as TIFF Bitmap (TIF) Group 3 Fax 2D.
My requirements are to create a compressed TIFF Bitmap (TIF) Group 3 Fax. Do you have any ideas?
Regards
George Azzopardi

Similar Messages

  • Fax: Unable to create tiff

    I am trying to fax to a USB modem connected to another mac which is being shared. 
    When I try to send a job to the fax, I get the error:   "Stopped on Server - Unable to create Tiff Pages"
    I can fax successfully from the computer that is serving the fax modem, but not from clients.  I've tried faxing with a user logged in the fax server.  nothing.  Any ideas?

    On the client Mac, try this:
    instead of adding the shared modem you see in the popup menu after hitting +
    Select Add Printer or Scanner and then add it from there.
    Mine now works. Whether this was the trick or not, I don't know.
    An Apple support rep suggested this.

  • PLEASE HELP - JAI create a tiff file

    Hi people,
    I am trying to reate a TIFF file compressed for a Fax Server. The resolution of such an image must be 200dpi by 100dpi as per server requirements.
    I am managing the create a tiff file with these requirements. However, since I am using a resolution of 200dpi by 100dpi, the final image is squashed vertically. The following is the code which I am using.
    // loading the image
    RenderedImage src = myCreateImage();
    // this is a proprietary method which returns a RenderedImage
    // Specifing the tompression Group
    TIFFEncodeParam param = new TIFFEncodeParam();
    param.setCompression(TIFFEncodeParam.COMPRESSION_GROUP4);
    //set the image resolution to 200 x 100
    TIFFField[] extras = new TIFFField[2];
    extras[0] = new TIFFField(282, TIFFField.TIFF_RATIONAL, 1, (Object)new long[][] {{(long)200, (long)1},{(long)0 ,(long)0}});
    extras[1] = new TIFFField(283, TIFFField.TIFF_RATIONAL, 1, (Object)new long[][] {{(long)100, (long)1},{(long)0 ,(long)0}});
    param.setExtraFields(extras);
    OutputStream outputStream = new FileOutputStream ("c:/test.tif");
    TIFFImageEncoder encoder = new TIFFImageEncoder (outputStream, param);
    encoder.encode(src);
    outputStream.close();
    outputStream = null;
    Any help would be highly appreciated
    Thanks & Regards
    George Azzopardi

    Maybe it's because you're not setting the resolution unit (tag 296)
    Example:
    TIFFField[] extras = new TIFFField[3];
    extras[0] = new TIFFField(282,TIFFField.TIFF_RATIONAL, 1, (Object)new long[][] {{200,(long)1},{(long)0 ,(long)0}}); //x
    extras[1] = new TIFFField(283,TIFFField.TIFF_RATIONAL, 1, (Object)new long[][] {{100,(long)1},{(long)0 ,(long)0}}); //y
    //set resolution unit to inches
    extras[2] = new TIFFField(296, TIFFField.TIFF_SHORT, 1, (Object) new char[] {2}); //2 for inches
    param.setExtraFields(extras);

  • Edit in Photoshop TIFF Compression Not Applied

    I'm running LR4.1 on Windows 7 and have my LR 'External Editing' preferences set to 'ZIP' compression. When I 'Save' an 'Edit In' file from inside PS CS6 it does not apply ZIP compression. I verified this by checking the file size, then resaving using 'Save As' and selecting 'ZIP' compression in the save file options. The file size was reduced as expected, so LR is creating a TIFF file that does not respect my preferences setting for 'ZIP' compression.
    In addition the TIFF file created by LR4.1 'Edit In' defaults to Macintosh 'Byte Order:
    There is no LR 'Preferences' setting to change the 'Byte Order' to IBM PC, yet many agencies specifically want TIFF files with Intel/PC byte order. I will now have to go back and manually change these settings on any images sent to these agencies. In addition I will have to manually do a 'Save As' and reset these TIFF options for all future LR 'Edit In' Photoshop images.
    Does anyone else have the same issue and/or have a more suitable solution?
    Message was edited by: trshaner I forgot to add that once you 'Save' a LR 'Edit In' image in PS, the TIFF save dialouge toggles to Macintosh 'Byte Order. This means you have to manually change it in PS the next time ANY TIFF file is opened and resaved inside, to re-toggle it back to the preferred settings.

    That's a very good question. Go to this post with last comment from one year ago:
    Lightroom/Photoshop: TIFF compression settings have no effect when Lightroom sends image to Photoshop for editing
    Scroll down to this post and click on 'view 2 more comments.'
    You can use Image Processor Pro to apply compression to multiple TIFFs already processed, but there's no option in it for also adding ZIP layer compression.

  • Compressing a group of footage at once

    Hi There,
    Is it possible to compress a group of individual clips all at once without doing drag the setting and destination onto each one individually?
    Transcoding some footage and really don't want to do 50 clips individually but all with the same settings.
    Help!
    Thanks

    You are probably overwhelming that little laptop.
    Why not break things up into multiple batches.
    Create batch. Import 30 clips. Apply preset. Submit.
    Create new batch. Import 30 clips. Apply preset. Submit
    rinse and repeat.
    After one batch is complete, compressor will start in on the next.
    It will still finish in the same period of time and you won't have the crashing from the thumbnail problem (my quess).
    x

  • [JAI IMAGEIO] TIFF to JPEG Loss DPI, HOW TO?

    Hi!
    I tried to convert a tiff image to jpeg with the same dpi resolution but i don't know how to make it or if i'm on the right way.
    Here is my code.
    Thanks for your help!
    public static void convertFromTifToJpgPrim(String sSourceFileName, String sTargetFileName) throws CoinDatabaseLoadException, SQLException, NamingException{
    try
    RenderedOp renderedOPCrop = JAI.create("fileload", sSourceFileName);
    RenderingHints qualityHints = new RenderingHints(RenderingHints.KEY_RENDERING,RenderingHints.VALUE_RENDER_QUALITY);
    RenderedOp renderedOPScale = JAI.create("SubsampleAverage",
    renderedOPCrop,
    new Double((double)0.5),
    new Double((double)0.5),
    qualityHints);
    JPEGEncodeParam jpgparam = new JPEGEncodeParam();
    jpgparam.setQuality(1f);
    FileOutputStream fs = new FileOutputStream(sTargetFileName);
    ImageEncoder enc = ImageCodec.createImageEncoder("jpeg", fs, jpgparam);
    enc.encode(renderedOPScale);
    fs.flush();
    fs.close();
    catch(Exception e)
    e.printStackTrace();
    }Regards,
    Julien

    I don’t see much difference in the side-by-side thumbnails.  The JPG’s histogram (right one) has a little more black bunched up on the lefthand end and the histogram is vertically scaled to make that higher peak fit so the entire rest of the histogram is shorter, but the entire JPG’s histogram is not shifted left (toward the dark end) very much at all.  Specifically there is a red peak in between the f/11 and 5.0sec indications on both and the green peak is above the 10mm in both cases.  Converting to sRGB will clip things to fit within the sRGB gamut so some difference is expected, I’m just not seeing very much.  Are you seeing more of a difference in Finder/Preview than with the re-imported JPG in LR?
    You could try exporting your TIF as a ProPhotoRGB JPG and re-import that to compare histograms, since LR’s internal workspace is a wide colorspace like ProPhotoRGB is.
    If you think you have accidentally changed something in your LR preferences, you can exit LR and delete the preferences file (or move it somewhere) then restart LR and let it rebuild a new one.  Before doing this you might want to review your LR preferences in case there’s something important that needs set back.
    http://helpx.adobe.com/lightroom/kb/preference-file-locations-lightroom-4.html

  • JAI - Creating High Quality thumbnails

    I am using JAI to take in large images and proportionally resize it to around ~300 x 220 image.
    Using the "scale" returns horrible quality
    ParameterBlock pb2 = new ParameterBlock();
    pb2.addSource( src );
    pb2.add( scale );
    pb2.add( scale );
    pb2.add( 0.0f );
    pb2.add( 0.0f );
    JAI.create( "scale", pb2, null );Using "subsampleaverage" is much better, but still returns worse quality than the original.
    ParameterBlock pb2 = new ParameterBlock();
    pb2.addSource( src ); // The source image
    pb2.add( ( double ) scale ); // The xScale
    pb2.add( ( double ) scale ); // The yScale
    pb2.add( new InterpolationBicubic2(8) ); // The interpolation...I Tried all Interpolation Types already
    JAI.create( "subsampleaverage", pb2, null );I want an exact quality copy of the original. Is there a way to do this in JAI?

    I mean in photoshop it saves much clearer (higher
    quality image) than through JAI. I know in Photoshop
    you can choose clarity on a scale from 1 to 12 when
    saving image files for the web. The only thing I see
    in JAI is interpolation which provides 3 or 4 choices.Ah, you mean the JPEG codec quality level. JAI's JPEGTileCodecDescriptor has a quality resource:
    "A factor that relates to the desired tradeoff between image quality and the image data compression ratio. The range of this parameter is from 0.0 to 1.0. A setting of 1.0 produces the highest quality image at a lower compression rate. A setting of 0.0 produces the highest compression ratio, with a sacrifice to image quality. The default value is 0.75."

  • Cannot delete file after calling JAI.create() method

    hi all
    this is the first time i write to this list
    today i began to use the JAI api on a project
    it works fine but i am not able to delete a file after using it
    my code:
    for(int i=2; i<2+filenames.size(); i++)           
                    try
                        String fName=filenames.get(i-2).toString();                   
                        if(fName!=null)
                            File file=new File(uploadDir+"\\"+fName);
                            FileInputStream f=new FileInputStream(file);
                            ps.setBinaryStream(i, f,(int)file.length());
                            PlanarImage pi = JAI.create("fileload", uploadDir+"\\"+fName);
                            System.out.println ("heigh : "+pi.getHeight());
                            System.out.println ("width : "+pi.getWidth());
                            f.close();
                    catch(NullPointerException n)
                        n.printStackTrace();
                        return;
    for(int i=0; i<filenames.size(); i++)
                    String fName=filenames.get(i).toString();  
                    File file=new File(uploadDir+"\\"+fName);
                    if(file.delete())
                        System.out.println(fName+" deleted");
                    else
                        System.out.println(fName+" not deleted");                   
                               }i use this code in a servlet that receives an image to put it in a database.
    JAI is useful to get heigth and width of it.
    the problem is that i always get the "not deleted" message.
    i'm quite sure that is a problem of the bold code (JAI code), also because, cutting it, i can delete my file
    anyone could help me?
    thanx a lot in advance
    alessandro

    excuse me another time!
    my first post was right.
    i'm not able to delete an image after creating it with JAI.create();
    i'm still lookin' for a way to close all the references to my image in order to delete it
    how?
    thanx a lot
    sandro

  • How do I create an e mail Group on iPhone ?, How do I create an e mail Group on iPhone ?

    How do I create an e mail Group on iPhone ?, How do I create an e mail Group on iPhone ?

    In the native mail app, ther really isn't a way to do this. Groups in the Contacts app are only for organizing. You might check the app store for alternate mail app for doing this.

  • SharePoint tool to create External Users and Groups

    Our organization is currently looking for a product that will allow us to create user account and group for users outside the organization (e.g Clients, subcontractors, etc.) and that will only need to access to our external SharePoint Collaboration site.
    We have one product right now but it is very problematic. For example if one of our clients need to change their email address which is their username it won't allow it so the account has to be re-created with the new email address and the permissions re-configured
    all over again. The groups created using the tool called Roles most of the times don't work. We are testing our SharePoint 2013 environment so we thought it is a good time to find something new. If you know of some products that I can check please let
    me know. I will really appreciate it

    Hi,
    According to your post, my understanding is that you wanted to create user account and group for users outside the organization.
    External User Management seems to be a solution. It allows for easy management of external users and roles.
    More information:
    http://ventigrate.codeplex.com/wikipage?title=External%20User%20Management
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Ssrs 2014 errorrule 'Create list of measure group-dimension pairs

    I'm getting this error generating a model for a ssas tabular model in ssrs 2014.  When I test the tabulur definition in Excel under SSAS everything works fine and there are no errors.
    Thanks
    From the log
    semanticmodelgenerator!ReportServer_0-1!b58!06/13/2014-15:39:25:: e ERROR: Semantic Model Generator: ModelGeneratorExtention
    An error occurred while executing rule 'Create list of measure group-dimension pairs':Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'..
    semanticmodelgenerator!ReportServer_0-1!b58!06/13/2014-15:39:25:: e ERROR: Semantic Model Generator: ModelGeneratorExtention
    An error occurred during the generation of semantic model : [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'..
    library!ReportServer_0-1!b58!06/13/2014-15:39:25:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ModelGenerationErrorException: , Microsoft.ReportingServices.Diagnostics.Utilities.ModelGenerationErrorException: An error occurred while
    generating model. ---> System.InvalidOperationException: An error occurred during the generation of semantic model : [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'..
    ---> System.InvalidOperationException: [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'. ---> Microsoft.AnalysisServices.Modeling.Generation.ModelGenerationException:
    Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'.
       at Microsoft.AnalysisServices.Modeling.Generation.ModelGenerationDiagnostics.Assert(Boolean condition, String message, Boolean throwOnFail)
       at Microsoft.AnalysisServices.Modeling.Generation.Rules.MapMeasureGroupsToDegenerateDimensions.Process(RuleFlowRecords& generatedRules, RuleExecutionRequirement& rulesExecutionRequirement)
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.ProcessRule(IRule rule, RuleContext ruleContext)
       --- End of inner exception stack trace ---
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.ProcessRule(IRule rule, RuleContext ruleContext)
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.ProcessRuleFlowRecord(RuleFlowRecord ruleFlowRecord)
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.ProcessRule(IRule rule, RuleContext ruleContext)
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.ProcessRuleFlowRecord(RuleFlowRecord ruleFlowRecord)
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.Process()
       --- End of inner exception stack trace ---
       at Microsoft.AnalysisServices.Modeling.Generation.Flow.RuleProcessor.Process()
       at Microsoft.AnalysisServices.Modeling.Generation.ModelGenerator.Generate()
       at Microsoft.AnalysisServices.Modeling.Generation.ModelGeneratorExtention.ReGenerateModel(IDbConnection connection, XmlReader currentModelReader, XmlWriter newModelWriter)
       at Microsoft.ReportingServices.Library.GenerateModelAction.GenerateModel(DataSourceInfo dataSource)
       --- End of inner exception stack trace ---;
    ui!ReportManager_0-2!3f3c!06/13/2014-15:39:25:: e ERROR: System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: An error occurred while generating model. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ModelGenerationErrorException:
    An error occurred while generating model. ---> System.InvalidOperationException: An error occurred during the generation of semantic model : [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for
    cube dimension '[$DimDate].[DimDate]'.. ---> System.InvalidOperationException: [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'. ---> Microsoft.AnalysisServices.Modeling.Generation.ModelGenerationException:
    Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'.
       at Microsoft.ReportingServices.Library.ReportingService2010Impl.GenerateModel(String DataSource, String Model, String Parent, Property[] Properties, CatalogItem& ItemInfo, Warning[]& Warnings)
       at Microsoft.ReportingServices.WebServer.ReportingService2010.GenerateModel(String DataSource, String Model, String Parent, Property[] Properties, CatalogItem& ItemInfo, Warning[]& Warnings)
       at Microsoft.ReportingServices.UI.NewDependentItem.ApplyChanges()
       at Microsoft.ReportingServices.UI.BaseApplyPage.ApplyBtn_Click(Object sender, EventArgs e)
       at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
       at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
       at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    ui!ReportManager_0-2!3f3c!06/13/2014-15:39:25:: e ERROR: HTTP status code --> 200
    -------Details--------
    System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: An error occurred while generating model. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ModelGenerationErrorException: An error occurred while generating model.
    ---> System.InvalidOperationException: An error occurred during the generation of semantic model : [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'..
    ---> System.InvalidOperationException: [Create list of measure group-dimension pairs]Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'. ---> Microsoft.AnalysisServices.Modeling.Generation.ModelGenerationException:
    Unexpected error occurred : Unable to obtain cube schema object for cube dimension '[$DimDate].[DimDate]'.
       at Microsoft.ReportingServices.Library.ReportingService2010Impl.GenerateModel(String DataSource, String Model, String Parent, Property[] Properties, CatalogItem& ItemInfo, Warning[]& Warnings)
       at Microsoft.ReportingServices.WebServer.ReportingService2010.GenerateModel(String DataSource, String Model, String Parent, Property[] Properties, CatalogItem& ItemInfo, Warning[]& Warnings)
       at Microsoft.ReportingServices.UI.NewDependentItem.ApplyChanges()
       at Microsoft.ReportingServices.UI.BaseApplyPage.ApplyBtn_Click(Object sender, EventArgs e)
       at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
       at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
       at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    library!ReportServer_0-1!b58!06/13/2014-15:39:25:: i INFO: Call to GetSystemPropertiesAction().
    ui!ReportManager_0-2!3f3c!06/13/2014-15:39:25:: e ERROR: System.Threading.ThreadAbortException: Thread was being aborted.
       at System.Threading.Thread.AbortInternal()
       at System.Threading.Thread.Abort(Object stateInfo)
       at System.Web.HttpResponse.End()
       at Microsoft.ReportingServices.UI.ReportingPage.ShowErrorPage(String errMsg)
    library!WindowsService_2!bd0!06/13/2014-15:41:25:: i INFO: Call to CleanBatch()
    library!WindowsService_2!bd0!06/13/2014-15:41:26:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.
    library!WindowsService_2!bd0!06/13/2014-15:41:26:: i INFO: Call to CleanBatch() ends
    rshost!rshost!3f3c!06/13/2014-19:37:27:: i INFO: Currently registered url http://+:80/ReportServer_SQLEXPRESS/ on endpoint 2
    rshost!rshost!3f3c!06/13/2014-19:37:27:: i INFO: Currently registered url http://+:80/Reports_SQLEXPRESS/ on endpoint 3
    rshost!rshost!3f3c!06/13/2014-19:37:27:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer_SQLEXPRESS/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS12.SQLEXPRESS\Reporting Services\ReportServer\ReportBuilder.
    rshost!rshost!e38!06/13/2014-19:37:27:: i INFO: Derived memory configuration based on physical memory as 16487384 KB
    appdomainmanager!DefaultDomain!e38!06/13/2014-19:37:27:: i INFO: Appdomain:5 ReportServer_SQLEXPRESS_0-1-130471616741701355 unregistered.
    library!WindowsService_2!22c!06/13/2014-19:37:29:: i INFO: Call to CleanBatch()
    appdomainmanager!ReportServer_0-1!e38!06/13/2014-19:37:30:: i INFO: Appdomain:5 ReportServer_SQLEXPRESS_0-1-130471616741701355 unloading
    appdomainmanager!DefaultDomain!e38!06/13/2014-19:37:33:: i INFO: Appdomain:6 ReportManager_SQLEXPRESS_0-2-130471623126349107 unregistered.
    appdomainmanager!ReportManager_0-2!e38!06/13/2014-19:37:33:: i INFO: Appdomain:6 ReportManager_SQLEXPRESS_0-2-130471623126349107 unloading
    servicecontroller!DefaultDomain!e38!06/13/2014-19:37:41:: i INFO: Recycling the service from the default domain
    dbpolling!WindowsService_2!376c!06/13/2014-19:37:41:: i INFO: EventPolling polling service stopped
    dbpolling!WindowsService_2!376c!06/13/2014-19:37:41:: i INFO: NotificationPolling polling service stopped
    dbpolling!WindowsService_2!376c!06/13/2014-19:37:41:: i INFO: SchedulePolling polling service stopped
    dbpolling!WindowsService_2!376c!06/13/2014-19:37:41:: i INFO: UpgradePolling polling service stopped
    runningjobs!WindowsService_2!e38!06/13/2014-19:37:41:: e ERROR: Timer Database Cleanup (NT Service) still executing, breaking...
    rshost!rshost!e38!06/13/2014-19:37:48:: i INFO: Application domain type WindowsService statistics: created: 3, unloaded: 3, failed: 0, timed out: 0.
    appdomainmanager!DefaultDomain!e38!06/13/2014-19:37:48:: i INFO: Appdomain:7 WindowsService_3 started.
    library!WindowsService_2!22c!06/13/2014-19:37:52:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure, timeout
    or low disk condition within the database.;
    library!WindowsService_2!22c!06/13/2014-19:37:52:: w WARN: Transaction rollback was not executed connection is invalid
    dbcleanup!WindowsService_2!22c!06/13/2014-19:37:52:: e ERROR: Error in CleanExpiredSessions: Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: An error occurred within the report server database.  This may be due to a connection
    failure, timeout or low disk condition within the database. ---> System.Data.SqlClient.SqlException: Database 'ReportServer$SQLEXPRESSTempDB' is being recovered. Waiting until recovery is finished.
    library!WindowsService_3!e38!06/13/2014-19:37:55:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatson
    library!WindowsService_3!e38!06/13/2014-19:37:55:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadData
    library!WindowsService_3!e38!06/13/2014-19:37:55:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException
    library!WindowsService_3!e38!06/13/2014-19:37:55:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderException
    library!WindowsService_3!e38!06/13/2014-19:37:55:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS12.SQLEXPRESS\Reporting Services\Logfiles
    resourceutilities!WindowsService_3!e38!06/13/2014-19:37:56:: i INFO: Reporting Services starting SKU: Developer

    Hi shiftbit,
    According to your description, you get an empty Measure Group Columns list when defining relationship. Right?
    Based on your screenshot, you may notice that Measure group table is empty, so definitely it can't show any column in the dropdown list. If there's columns in the measure group that are related to the dimension columns, at least it will show the fact
    table for Measure group.
    In this scenario, please check if the fact table for the Measure group is existing. Re-process the Measure group and try again. If the issue persists, please re-create that measure group.
    Reference:
    Define Relationship Dialog Box (Analysis Services - Multidimensional Data)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
    TechNet Community Support

  • Creating the New Update groups in case of the Credit Management

    Hi Can any one help out in the following requirement:
      Is it possible to Create a new update group in case of the Credit Management?SAP standard provides only three update groups viz., 000012, 000015 and 000018. We would like to have a customized group in order to meet the clients requirements.
              Also is it possible to update the open contracts value in the credit exposure?
       Thanks & Regards
       Soma

    HI
    You can define your own credit groups  according to your client's requirement.
    here is the path....
    IMG > SPRO>SALES AND DISTRIBUTION --> BASIC FUNCTIONS -->
    CREDIT MANAGEMNT / RISK MANAGEMENT --> CREDIT MANAGEMENT
    -->  DEFINE CREDIT GROUPS --> NEW ENTRIES AND CREATE YOUR OWN
    CREDIT GROUPS AS UR UR REQUIREMENTS.
    hope this will help u ...
    bye

  • GL account created in wrong account group

    Hello  I have a GL account created in wrong account group? Some transactions have been posted to this GL account already. How can I reconcile the transaction if I want to create it in the correct account group?
    Best Regards
    Prabin

    Hello,
    Create a new GL account, post your future postings to that.
    Make a transfer entry from old GL to new GL.
    Block the current GL for future postings.
    Regards,
    Ravi

  • File Server Migration - For ORG A Forest to ORG B Forest ( Need to create and Map Security Group automatically on new Migrated Folders - Please Help

    I have two forest With Trust works Fine .
    I have file server in ORG – A ( Forest ) with 2003 R2 Standard
    I have a File server in ORG  - B ( Forest ) With Windows server 2012 ( New Server for Migration )
    I have 1000 + folders with each different permission sets on ORG-A. We are using Security groups for providing permission on the share Folders on ORG A
    I need to Migrate  all the folders from ORG – A to ORG – B.
    I am looking for an automated method of creating Security Groups on AD during the Migration, Once the Migration is Done, I can add the required users to the security groups manually.
    Example.
    Folder 1 on ORG – A has Security Group Called SEC-FOLDER1-ORGA
    I need an automated method of Copying the files to ORG – B and Creating a new security Groups on ORG –B Forest with the same permission on parent and child Folders. I shall Add the users manually to the Group.
    Output Looks Like
    Folder 1 on ORG – B has Permission called SEC-FOLDER1-ORGB ( New Security Group )
    Also I need a summarized report of security Group Mapping, Example – Which security Group on ORGA is mapped with Security Group Of ORGB

    Hi,
    I think you can try ADMT to migrate your user group to target domain/forest first. Once user groups are migrated, you can use Robocopy to copy files with permission - that permission will continue be recognized in new domain as you migrated already. 
    Migrate Universal Groups
    http://technet.microsoft.com/en-us/library/cc974367(v=ws.10).aspx
    If you have any feedback on our support, please send to [email protected]

  • Unable to create the Profit center groups

    Hi,
    We have created new company codes in R3Dev and also created the
    validation rules for the same. We have assigned the Set ID's to the
    validation rules. These Set ID's gets created when profit center groups
    are created for the new company codes.
    We have transported the company code configuration settings and the
    validation rules to R3QA.
    Now in R3QA, when I try to create the profit center groups in KCH5N for
    the new company codes, it says "the group already exists".This is
    caused due to the SET ID's which also got transported along with
    validation rules. I have checked the table 'SETHEADER" which shows the
    SET ID's for the new company codes.
    Could you please a solution to resolve this issue.
    Thanks
    Rakesh

    Hi Mohan,
    Since Set Id's have moved to quality along with vaidation rules, I am to create the profit center groups, as it says the group already exists. I believe the set Id's need the master data maintained in R3Q, before they are transported. Since this is not maintained, with the transport, the data is sitting for Set Ids at the table level (Table: SETHEADER),  because of which I am to unable to create the profit center groups.
    Thanks,
    Rakesh

Maybe you are looking for

  • Time Out ERROR CC Risk Analysis RFC

    Hi Friends, I am getting time out error when I am testing the CC risk analysis RFC. One thiing I monitor here is that when I am changing the parameters to 'YES' in tcode '/virsa/zrtcnfg',this RFC time out is occuring,when I am changing it back to 'NO

  • How can i encrypt a zfs partition

    I have the need to encrypt a zfs file system in solaris 11. and solaris 11 disk. any ideas? Solaris 11 is installed in a laptop.

  • Need help on Aironet 1300 bridges

    Greeting, We have just upgraded two Aironet 1300 bridges (from cisco 350) on two buildings about 100 yards apart. They are only running as bridges. One is set up as root bridge and another one is setup as non-root bridge. Root bridge is in the main b

  • How can I call a function in C or C++

    hello friends, I want to write a prog. in Java to call a function written in C or C++ without disturbing the c/c++ function thanks

  • ABAP calling HTTPS URL using CL_HTTP_CLIENT

    Hello, I have a requirement where I will have to call a URL inside an ABAP or BSP passing some query parameters  program and then the response will be a big string with all the data I need. I found I can use CL_HTTP_CLIENT thanks to Brian weblog. The