Help with processing groups of records in database

Ok i'm at work right now trying to finish up a project for my class and what it is is a basic class to process an inner join sql statement generated table from access and order it by the student id in order to group each student together. I have written the sql statement and logic to access the database and return the array of row objects to the command line so i know it is grouping and returning info properly. I have written the conditional if statement to get the gradePoints for A = 4, B = 3, C = 2, D = 1, and F = 0 in a class method (KEEP IN MIND THE GENERATED TABLE CONSISTS OF SID, NAME, COURSE#, COURSETITLE, AND LETTERGRADE) now I just need to process each group of students individually and calculate their overall gpa's. Here in lies the problem. I imagine i need to define current student variables as like
currentID = s[0].getStudentID();
currentName = s[0].getStudentName();
then loop through the values of the array with something like
for(int j = 0; j < s; ++j)
if(s[j].getStudentID != currentID)
Process the grade records for the group Then reset the
current student to the next in line with another variable
assignment like
currentID = s[j].getStudentID();
currentName = s[j].getStudentName();
}(end of if)
Process the row object for the student created by this loop and then add it to the output string
} (end of for loop)
Ok so where i need help is the logic to process the grade records for the individual groups and then processing the row object. We haven't gone over anything like this in class and it is the last thing on my list to to do so any help would be appreciated. Also, if you think i'm an idiot keep it to yourself please it's not fun for people who really need help and really would like to know for future reference how to do something to be belittled. Thanks again
Matt
Message was edited by:
djmd02

sorry i guess is hopuld explain this better...I know
sql relatively well and the sql statement for my
query string is rediculously long with two inner
joins and what it returns is the sid, name,
coursenumber, coursename, and lettergrade So if you know SQL so well, why haven't you created a ViEW using this "ridiculously long" query and made your life easier?
Two inner joins? Nothing extraordinary about that.
this query
generated table is then used to populate an array of
objects for each entry in the table. They are already
put in order depending on sid by the sql statement
(for example)
11111 matt deClercq 3380 intro to java A
11111 matt deClercq 3382 database management A
11112 john doe 3380 intro to java A>
and so on. The problem i am having is within the for
loop to detect the end of each student and process
their grades for each class and calculate the gpa for
the whole group of grades that that student has.SQL is a declarative language, not procedural. If you're "looping", it suggests to me that you're pulling all that data into the middle tier and doing the calculation in Java.
I'm suggesting that there's a perfectly good way to do this calculation in SQL without using your ridiculous query. You might be better served if you try and figure out what that is.
Hope this makes things a little more clear and makes
me look a little bit more intelligent than i seemStop worrying about what people think and concentrate on your problem. You're a student. It's unlikely that you're going to appear to be on the level of Bill Joy at this point in your career. I'd be a lot more impressed if you'd stop whining about how people perceive you.
%

Similar Messages

  • Help with Audio Playback While Recording

    I am an aspiring sound engineer and I am having a problem with recording in Audition 3.0 that I need help with. When i record vocals, the sound wave plays back in the speakers/headphones with like a 1.5 second delay after it is recorded. It really throws off the artists I am working with when they are trying to record vocals. How do i kill headphone/speaker playback while someone is recording?

    There are problems with a lot of internal soundcards in a lot of laptops, and these seem to be so many and various that all you can do is use trial and error and hope for the best.
    External soundcards should cure any problem, but you may have to look into what else is running on the laptop, as so much is integrated, and some machines seem to have audio problems caused by wireless or other network adaptors etc.
    As I said, I use oldish Edirol and Tascam usb units. The Tascam has a known fault (noise when using a guitar channel at the same time as phantom powering a mic on the other channel) which I can live with, and I would hope has been solved in later and current versions. The Edirol is fine. I use 2 units to give me the connections I want (ie one has jacks, the other phono plugs, and different size headphone sockets). Both these have asio and wdm drivers and work fine with AA 3.0 here. More modern devices will be usb2 and will presumably provide more channels or higher sampling rates, but these are fine. Others will be more up to date than me, but I would think anything from Tascam, Edirol, Echo Audio and I think most m-audio models should be fine. Just be wary of anything from Creative Labs. I, too, have had bad experiences with one of their products (it drew too much current from the usb port on a couple of the laptops so I never got as far as to find whether it had asio drivers working or not). But others will be more up to date than I am.
    I just went onto ebay over the years and kept bidding on sensible looking devices until I got ones at the right price, but it probably is better to buy new if you can afford it.
    Sorry I can't give a more definite answer.

  • Please help with processing a query

    I have a text area were I input 6 numbers (ex. 123456,
    25698,12564,8899664, etc) the first problem is I would like for the
    numbers
    to be displayed in a verical list (12345
    12345
    12345 etc)
    The second problem is I am comparing the numbers in the list
    with numbers that are in a Database. I do know that 1 set of the
    numbers exists, when I run my query with all the numbers
    being submitted I get no records found, however if I run the query
    with
    only the set of numbers that is in the database i get 1
    record found for 12345,
    here is my code
    <cfquery name="TRI">
    Select IDnumbers from Process where IDnumbers like
    '%#DepID#%'
    cfloop = "TRI" list="#DepID#"
    cfoutput #Tri.Recordcount found #DepID#
    DepID is the name given to the textarea were the numbers are
    posted.
    I know the syntax in not correct I'm just trying to get an
    idea of what the problem is. and what direction should i be heading
    in

    quote:
    Originally posted by:
    rere
    I have a text area were I input 6 numbers (ex. 123456,
    25698,12564,8899664, etc) the first problem is I would like for the
    numbers
    to be displayed in a verical list (12345
    12345
    12345 etc)
    The second problem is I am comparing the numbers in the list
    with numbers that are in a Database. I do know that 1 set of the
    numbers exists, when I run my query with all the numbers
    being submitted I get no records found, however if I run the query
    with
    only the set of numbers that is in the database i get 1
    record found for 12345,
    here is my code
    <cfquery name="TRI">
    Select IDnumbers from Process where IDnumbers like
    '%#DepID#%'
    cfloop = "TRI" list="#DepID#"
    cfoutput #Tri.Recordcount found #DepID#
    DepID is the name given to the textarea were the numbers are
    posted.
    I know the syntax in not correct I'm just trying to get an
    idea of what the problem is. and what direction should i be heading
    in
    No offense, but you are doing something horribly wrong. Not
    sure if it is storing lists of numbers in a single field or storing
    numbers in char fields.
    Fix your db and life will be much easier.

  • Help with a group query

    I have the following table
    EX_ID
    EX_NAME
    EX_SURNAME
    EX_FLAG
    1
    TOM
    JONES
    Y
    1
    JIM
    SLIM
    N
    1
    BO
    SELECTA
    Y
    2
    AIRES
    BEARS
    N
    2
    JIM
    DAVIES
    Y
    3
    PAUL
    BALL
    N
    3
    YOU
    KNOW
    N
    I need to create a query that only displays one of the ex_id’s, it doesn’t matter which one.  When the query has been run it will look like below:
    EX_ID
    EX_NAME
    EX_SURNAME
    EX_FLAG
    1
    TOM
    JONES
    Y
    2
    AIRES
    BEARS
    N
    3
    YOU
    KNOW
    N
    Can anyone help with this query?

    SELECT * FROM
    SELECT *,ROW_NUMBER () OVER (PARTITION BY ex_id ORDER BY (SELECT 0))
    FROM tbl
    ) AS Der WHERE rn=1
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Help with dynamic datasource and record selection

                                                                                                                                                                                                                                                                                     <span>Hi, I&#39;m having some difficulty with part of an application I&#39;m trying to build, but here&#39;s some background first.<br /> <br /> I am a student at the University of Maryland, and I&#39;m writing an application for one of the departments here at the university.  It is sort of a front-end for an access database with a lot of extra functionality.  This includes reports.  First of all, the user can change the databse that the application uses, so I store that in an appsetting.  For this reason, I have to tell the report what database to use at runtime rather than using the database expert.  I am building a sort of report wizard in which the user selects certain values, and based upon those values, the SQL statement that the report gets data from changes.  So almost everything about the report&#39;s data is dynamic and will be determined at runtime.  <br /> <br /> So for example if the user chooses an officer report by chapter names, I do this (chapters is a comma delimited string):<br /> <br /><span style="font-weight: bold"> string sel = "SELECT * FROM [Undergrad Leadership] WHERE [Leadership Position] = &#39;" + txtPosition.Text + "&#39; AND [Chapter Name] IN (" + chapters + ");";</span><br /> <br /> The part I am lost on, is how to actually interface with crystal reports.  In the following code, conn is an OleDbConnection to the correct database, rep is the ReportDocument, and view is a CrystalReportsViewer.<br /> <br /><span style="font-weight: bold"> rep.DataSourceConnections[0].SetConnection(conn.DataSource, conn.Database, false); <br /> rep.RecordSelectionFormula = sel;</span><br /><span style="font-weight: bold"> view.ReportSource = rep;</span><br /> <br /> When I try to load the report, I get the following error message:<br /> Error in formula <Record Selection>:  a number, currency amount, boolean, date, time, date-time, or string is expected here.<br /> <br /> Also, assuming this formula gets fixed, how do I actually get fields from this formula and datasource onto my report, since I can&#39;t do it at design time?  Thanks in advance for the help.<br /> <br /> -Jared<br />    </span>

    <p>RCAPI (Report Creation and Modification) calls are only available with Crystal Reports Server RAS SDKs.  This means that using the bundled version of Crystal Reports for Visual Studio will not allow you to place fields onto the report.  A free copy of Crystal Reports Server comes with a registered copy of Crystal Reports Developer.  My guess is that you don&#39;t have either of these products and that you are just using the product that came with Visual Studio.</p><p>All is not lost.  The first question is, do you really need to add the fields at runtime?  In many cases developers just want to have control of the data that gets sent to the report and they are ok with having the same fields display.</p><p>In your code you are changing the datasource which is fine, and you are assigning a Record selection formula which is also fine.  </p><p>The problem with the record selection is that it doesn&#39;t fit the syntax of the Report.  I would suggest printing out the value that you programatically get for the formula and insert it into the Crystal Report Designer.  You will probably get the same error there and gets some  hints as to why it doesn&#39;t work.</p><p>What I would suggest is creating a template report that already has the fields on the report and then change its datasource at runtime and add a RecordSelectionFormula.</p><p>Otherwise you will have to use RAS to be able to add fields at runtime. </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Help with optimization -- too many records being inserted

    hi..
    I am doing this project. This project is as a part of a project competition, and hence the analysis part is already done.I am not supposed to make any changes in the design and the database part.In this project, I have to make an entry form for entering information for schools.
    The project is web based, JSP+DB2. There is only one single form and that contains 30+ fields, and there are around 7-8 tables. Form is submitted only once, and on that submission 280 records have to inserted into the database. Problem is I cannot change any of the design, form or database. If on a single submission, if such a large amount of records are inserted, and that to considering its a website, then the response would be extremely slow. So can anyone of you help me with ideas that I can implement, so that any optimization can take place.
    Thanks in advance.

    As I told this project is of a competition, and has to be implemented in rural areas, hence I cannot be sure as to what will be the server and client configuration. What i want to know is that is there a way that I do not have to insert 280 records in one go. May be insert data in some temporary tables, and then transfer it to the final tables at the time of successful completion. Is this solution feasible, and are there any other such solutions available??

  • Need Help with Photomerge Group Shot

    I'm trying to photomerge a group shot and having trouble with it.  The person I'm trying to cut out of the source photo gets plopped into the middle of the final photo and I can't line her up with in final shot.  Is there a way I can relocate the section that gets pasted into the final photo?   I'm also have trouble with aligning the photo--how do you know what points to select in the fist and second photo?  I've been playing with it, but the photos get terribly distorted.
    Appreciate any help.  I was expecting Photoshop Elements 10 to make this easy, and so far, it hasn't impressed me.
    Thanks,
       Terri

    OK, here we go:
    Make a selection (in the main image) of the area you want to be replaced:
    Open your other image, select the head to use, and copy it to the Clipboard.  (I simply used another one of the heads in this photo.)
    Back in the main image, use Edit...Paste into Selection:
    Change to the Move Tool and move the pasted-in image to where it looks best:
    You already know what to do next with the Clone Tool.   (Probably have to use Layer...Flatten Image to get rid of all the selections and layers so the Clone Tool can do its work....)
    Ken
    P.S.,  Looks like you did a real good job with the girl on the left.
    P.P.S.,  The image is a bit too small for us to do precision work (but it's OK for this example).  Next time you can try something about 2 or 3 times larger and see if the forum software accepts it.

  • PSE 8 - Help with Editing Group Layers

    I am working with some templates right now that are apparently set up in Grouped layers.  I've looked into it, and the best result I can find is that I hav eto "simplify" the group in order to be able to edit the layers.  That doesn't seem to allow me to edit the layers individually, though. 
    If layers are "grouped," does that mean I can't edit the layers?  Please Help!
    Thank you!

    Here is an action someone made just for that.
    http://www.elementsvillage.com/forums/showthread.php?t=48026&highlight=layer+groups
    This action opens the layer groups by deleting the layer group (set) while leaving
    the layers inside.
    So the layers will no longer be in layer groups (sets), but at least you will be able to see
    what's inside the layer groups and edit those layers.
    MTSTUNER   

  • Help with Process Chain - Stop remaining Processes if Package returns 0 rec

    Hi, i have a Process Chain that starts with a single InfoPackage.  Then it goes on to distribute the load to multiple DSO's and then onto DSO Activation.  I would like the Process Chain to stop right after the InfoPackage if no records are loaded. 
    Is this possible using the decision variant somehow?  Any details on how to achieve this are greatly appreciated!

    Hi ,
    The request is goin to red status when 0 records are pulled in. There is a option in info package so that even when 0 records come in the request status would be green.
    Open your info package , then in the menu goto "Scheduler > Treatment of warnings > Select Green" so that in future even if the info package pulls 0 records the status would be green . then the activation step in the process chain would also be carried out smoothly.
    In this way you need not manually change any request status to green . Saves you time.
    regards
    Venky

  • Help with material group and customer

    this is what i'm trying to do. i've segregated all my ferts into material groups. now when i go into va01 to create sales order and enter customer, i want it the system to suggest material that is only relevant for that customer, by material group, not by sales view which is the current setting. is there a way i can link customer to a material group? and if i do that will it suggest material for that customer when i goto the line item to enter material??

    Dear Friend,
    Frist difference Dynamic Product Proposal & Listing / Exclusion:
    Dynamic Product Proposal is just list of Materials that is proposed as soon as you enter Customer Code in Sales Order. Customer can order materials that are not contained in Dynamic Product Proposal. It is for ease of Order Entry.
    Listing / Exclusion is a List of maintained in system which restricts Customer to Order mateirals not mentioned in LIsting,
    Thus in your case List / Exclusion is better option
    As far as Config is concerned if you want to restrict the Materials based on Customer Code then no config. changes is required because the standard table 001 (Customer / Material) is already available.
    Just maintain Condition Record in VB01 & try to create Sales Order. You will clearly see the effect.
    Only config. you will need is this:
    IMG - Sales and Distribution - Basic Functions - Listing/Exclusion - Activate listing/exclusion by sales document type (To activate Listing / exclution for your Sales Document Type. Maintain A00001 & B00001 here.
    Hope this helps.. .
    Thanks,
    Jignesh Mehta

  • Need Help With Work Group Wiki Page (404)

    I am somwhat of a novice with all this server stuff so I will try to explain....
    I have done a standard server install of OS X 10.5.6 Server on my Xserve. Everything seemed to work like a charm. The only problem I am having is when I select my home page to be my Workgroup Wiki page (inside the standard server prefences window). When I select this and try to test the page with the link under the drop down (open home page), it opens Safari and the header looks right but the page says "Not Found. 404: No group with that name (workgroup) hosted on this server).
    I have a Workgroup and then two other groups....print and interactive. I want people to be able to log-on and see the main work group wiki page and then be able to select to go to one of the other two groups. I have had this working before but had to reformat my hard drive and reinstall the OS.
    From the page that comes-up, I CAN click on the "groups" link in the header bar and that does take me to a working page, but I want to be able to have people go to this workgroup page first.
    Any help would be MUCH appreciated. Thanks in advance.

    Hi,
    If you have the original index.html file installed in the /Library/WebServer/Documents/ folder then your wikid server will use it to display the web service groups.
    If you have changed the index.html file or substituted a different index.html then wikid will not be able to perform its display action.
    HTH,
    Harry

  • Help with excel grouped data and sorting to keep data intact

    I have a master spreadsheet with lots of data. I am trying to grouped the data based on physical address/city, add the values and once done sort it by valuation based on descending order by valuation but my data keep messing up.
    So in Row 1/col A: Address 1; Col B City: XXX; Col C: Valuation $$$
    Row 2/col A: Address 1; Col B City: XXX; Col C: Vauation $$$
    Row 3/col A: Address 2; COl B City: YYY; Col C:  Valuation $$$
    SO I sort by city and in ROw 1/2 same city with same address, I grouped it.  THen I created a new row below Row 3 and add up the grouped data (i.e. ROw 1 and 2).  I go through the entire list to finalize the grouped locations.  
    But when I am done and I sort by Valuation, all my data messed up coz I created a new row with addition of grouped location valuation and the formula gets messed up.
    Any one with ideas please help.  My deadline for this project is just a week away and I am freaking out.
    THanks in advance.

    it seems upload a sample is more clearly about the required.
    KR

  • Need help with no camera sounds & recording in Captivate 5

    I am an experienced user of Captivate 3 & 4, but I'm having lots of problems with Captivate 5.  I am working on a Windows 7 OS and have just installed Captivate 5.  When I try to record I can't get any camera sounds, even though I have changed my preferences to show them.  Also, Captivate seems to be recording erratically, and sometimes it is catching actions, other times it isnt'  I am running the program as Administrator and I am very puzzled by this.  Normally Captivate has worked like a charm out of the box.  Now it seems to be fighting my every step of the way.  Am I missing something?
    Audio recording seems spotty too. Sometimes it works just fine, other times Captivate just hangs and doesn't really record any sound.
    Any help would be appreciated/

    Hello and welcome to the forum,
    First to be sure: did you install the patch released in December (Help, Updates...)? If not try that first of all. You can find details about the issues solved by this patch in this blog post:
    Patch for Captivate 5
    If this doesn't help, try to clear the cache (Preferences, Global).
    Perhaps (not sure) your Preferences folder has become corrupt. It so, try to find it. In Win7 normally it is a folder (Captivate 5)  in this path:
    \users\<username>\appdata\local\adob
    Maybe you will have to change the settings to make this folder visible in Explorer, by default it is in a system folder and invisible. You can delete this folder (while CP is closed) and when you restart CP a brandnew one will be created.
    Lilybiri

  • Help with BBM Groups

    Hello all,
    My question pertains to BBM groups which isn't specific to either BlackBerry 10 nor BlackBerry 7 and earlier, and I was not sure which one forum location would be appropriate for this question, so I opted to post it to the Downloaded Software section in both the BlackBerry 10 and BlackBerry 7 and earlier spaces.  My appologies if this was not "the right way to do it".
    My question is one that I also posted on CrackBerry.com forums but after some time it seems I may stumped the community over there with this one.
    Here is what I wrote over there:
    "I recently created two BBM Groups and posted them here on CrackBerry with minor fuss. Yay for me. In each forum post I included a QR Code / Bar code of each BBM Group so as to make them easier to join. Yay for me again.
    What I realised thereafter was that though this makes joining easy for anyone reading the posts from a screen other than their BlackBerrys, it does NOT make it easy for someone actually reading the thread from their BlackBerry and thinking to themselves "Oh hey, I want to join that group". At least, not that I can tell. I don't think it's possible to scan a QR code on your BlackBerry screen from the same BlackBerry, right? That's my assumption. If someone knows otherwise, please let me know, that would solve my issue.
    SO, if I am right in my assumption and one cannot scan a QR / Bar code from one's own BlackBerry when said code appears on the BlackBerry's own screen, I am looking for another way to make it easy for someone reading the post to just "tap or click here" to join the group, to make as easy for someone who would be scanning the QR / Bar code from another source.
    I tried getting the text URL for the group from the code and pasting it into a thread, but when it comes up in the CrackBerry app on the BlackBerry, the link is not clickable / tappable. I then tried adding the CrackBerry post editor tool's "Link" too to make the URL text an actual URL, though the only effect that had was that the URL appears clickable / tappable in the BlackBerry's CrackBerry app, but tapping / clicking on it has no effect. After making this change I tried to view the same thread post in my browser both on computer and on the Z10. When I click it DOES react but on the Z10 browser I just get a message "Unable to open bbg:<yadda yadda>".
    So I've shared a lot of detail but the point I am really focused on is "is there a way for BlackBerry users to be able to join my BBM Group, on their own, as easily as if they had scanned the bar code, when all they have access to is the phone itself, and no outside media from which to scan the code"?
    I am trying to avoid things like "Send me your PIN" and such because that just creates so many more steps and acts as a barrier to entry. Similarly, I don't see myself telling the reader "Just take this bar code you see here, and arrange to print or display it somewhere other than on your BlackBerry screen and then scan it".
    Any input on this would be most appreciated!"
    Essentially, I'd like to be able to post something that a BlackBerry user can look at on their BlackBerry, and tap / click on it, and boom they're done (i.e. they are at the same place they would be if they had instead just scanned the QR code).

    I think there is a case for it. With any luck someone from BlackBerry will see the suggestion and will pass it along.
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Need Help With Processing A Delay

    OK I'm working on a Flash intro for a site. After the Flash movie plays I want it to wait three seconds and then send them to the index page. Currently I'm using the action script:
    stop();
    getURL("http://mywebsite.com/index.php", "_top", "GET");
    I've got that keyed to the last frame. The issue is at the end of the Flash movie it displays the company logo image. Well with that script added to the last frame it just quickly blips up the logo then takes you to the main page so fast you don't even get to really see the logo. I want the viewer to have a couple seconds to take it in, but then move them along to the main site without them having to look for a button to press.I was emailing with a friend and he suggested.
    // ActionScript 2
    // Call the setTimeout function.
    // The first argument is the target you want to call the function on (this).
    // The second argument is the name of the function to call.  It could be our own custom written function but in this case we'll use the getURL one.
    // The third argument is the delay in milliseconds, so 1000 milliseconds is 1 second.
    // The fourth and fifth arguments are the arguments to pass into the called function.
    _global["setTimeout"](this, "getURL", 1000, "http://mywebsite.com/index.php", "GET");
    // We call stop because we want to wait on this keyframe until setTimeout fires.
    this.stop();
    Now I think he's right, he usually is, but I've only been using flash for about two weeks now so even with that reply I'm not getting it.I don't even see "setTimeout" anywhere in my actions list. I tried just cutting and pasting:
    _global["setTimeout"](this, "getURL", 1000, "http://mywebsite.com/index.php", "GET");
    All it says is "evaluate: Evaluates an arbitrary expression" in the Script Assist window. I need someone to either walk me through it step by step, or give me exactly what the code should be so I can understand it. It's very humbling when you're the n00b all the sudden, I promise to pay it forward if someone can help me out

    I have to say I've never seen the setTimeout specified in that way, but there's likely lots I aint seen.  In your last frame you should be able to use...
    stop();
    setTimeout(waitABit, 3000); // in 3 seconds call the waitABit function
    function waitABit(){
         getURL("http://mywebsite.com/index.php", "_top"); // not sure if you want "_top"

Maybe you are looking for

  • Session timeout skillbuilders question

    Application security attributes settings Session Timeout  Maximum Session Length in Seconds   60 On session timeout direct to this URL   <url> Maximum Session Idle Time in Seconds   45 On session idle time timeout direct to this URL   <url> Session t

  • Updating itunes wont me let upgade says error code

    it has some error code and it wont let me update my itunes... it successfully finishes the itunes download but it cancels it towards the end because it cant fully downloa\ad quicktime so idk what to...something about VB scripts

  • How do I Sync a set of pictures from iphoto..?

    I am new to Apple TV. Very nice divice and implementation. But I do have a question. When I was trying to Sync pictures with iTunes. I get an option to sync Iphoto, but it idoes not let me select which set of pictures to sync. It would be nice to be

  • F.81 Reference

    Hi Guys, When I am doing the Accrual Reversal in F.81 I am getting the following error " VL 476: Item 'Official Doc. Number' is not copied from the reference document ". I have maintained the number ranges also. I am not able to understand why the sy

  • Yosemite SMB File Sharing

    Scanning from a network scanner is an issue, it doesn't work due to an authentication issue. I believe it has to pertain to device signing in the OS itself but I do not want to make OS changes that I cannot project the lifecycle of. I believe there n