Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

Writing output line

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Writing output line

    I need to have a sales tax line that is written to the "NewOrders.csv" just like the shipping line is written. When I run the code as attached, I get the results as in the sample file attached. Everything works fine except the very last records. The shipping line does not get written to NewOrders.csv at all for the last record.

    Any suggestions?
    Attached Files

    #2
    Re: Writing output line

    Candy,

    This is difficult to troubleshoot without sample data, and a specific explanation of what's missing from specific rows in the output file.

    In general I prefer not to rely on auto-type-conversion when concatenating data items of mixed data types. Recommend you convert each field value to character data when assigning values to the variables used to create the CSV file.

    I do not understand the logic for the various code blocks you have defined in the script. As written it seems you are generating multiple lines from each record in the table. Is that intended? I'm confused by the various IF ... END IF code blocks, and the nesting of WHILE ... END WHILE blocks.

    Comment


      #3
      Re: Writing output line

      Sorry for the brief description. I had originally posted my issue back in 2012. Here is my original with more information: http://www.alphasoftware.com/alphafo...light=proc_num

      Does that help at all?

      Comment


        #4
        Re: Writing output line

        Helps a bit.

        Please clarify. Is it the last row for each "Num", or the last row of the last "Num" that's missing?

        Later ...

        Sorry, your code has very little to do with the description in the 2012 message board thread. Please start over with your explanation.

        tell us...

        What goes in row 1
        what goes in row 2, all the time, or only if ________?
        what goes in row 3, all the time, or only if ________?
        what goes in row 4, all the time, or only if ________?

        If a row is suppressed, do you need a blank line to hold its place ?

        And, importantly, supply sample data for us to work with.

        -- tom
        Last edited by Tom Cone Jr; 11-07-2015, 12:24 PM.

        Comment


          #5
          Re: Writing output line

          Thanks for the input. I've attached two files, one contains the original data before running the script and the other shows the result after running the script.

          The last row of the table is the one that is not writing the shipping line.

          Line 1= Customer 1 Item1
          Line 2= Customer 1 Item2
          Line 3= Customer 1 Sales tax, if any
          Line 4= Customer 1 shipping
          Line 5= Customer 2 Item1, etc.

          If there is no sales tax, I don't want a blank line in.

          Does this help?

          -Candy
          Attached Files

          Comment


            #6
            Re: Writing output line

            Candy,

            I've reformatted your code and then made one change, at line 63. My revised code is attached. You can import it into a sample copy of your database for testing.

            I think your script failed to include the last shipping line because the IF statement at line 63 will always be FALSE when you "fetch" past the eof marker. i.e. before this IF statement is evaluated the script "fetches the next record". But when you try to fetch past the last record there is no "proc_num" field value waiting there to be evaluated. I changed the code slightly at line 63 to process the tax and shipping rows if the proc_num field is different OR if the record pointer is sitting on the last record of the table.

            for background compare the discussion in the help system on these two functions:
            tbl.fetch_eof() versus tbl.eof()

            -- tom
            Attached Files
            Last edited by Tom Cone Jr; 11-09-2015, 05:06 PM.

            Comment


              #7
              Re: Writing output line

              Thank you so much! I will try this out and report back.

              Comment


                #8
                Re: Writing output line

                Candy, I forgot to mention that for testing here I changed the path to the destination CSV output file at lines 6 & 7. hope that hasn't been giving you heartburn. Please test my changes using sample data and do not use it in your application until you're satisfied it does what you need. -- tom

                Comment


                  #9
                  Re: Writing output line

                  That worked perfectly! Thanks so much. I'd be bald pulling my hair out if it wasn't for this forum :)

                  Comment


                    #10
                    Re: Writing output line

                    I just ran into a little problem. I find that when the last Num (order) contains more than one item, the shipping is added twice, once after each item. Do you have any thoughts about this?

                    Comment


                      #11
                      Re: Writing output line

                      I was wrong about how it was behaving. For the last Num (order) it writes two different shipping lines when there's more than one item. It looks like it adds one shipping row after the next to last item, then adds the last item as a row then adds the shipping row again. It doesn't add the shipping row after each item, just after the next to last item and the last item.

                      Comment


                        #12
                        Re: Writing output line

                        I may be able to look at this tomorrow. Please furnish sample data that illustrates the problem.

                        -- tom

                        Comment


                          #13
                          Re: Writing output line

                          Thanks so much! Here are beginning and ending samples.
                          Attached Files

                          Comment


                            #14
                            Re: Writing output line

                            Interesting logic puzzle.

                            Unzip the attachment to an empty folder.
                            Run the import operation to populate a temporary table
                            Empty table TPI-READY, and then fill it with the append operation.
                            Then run the make_csv script.

                            Hope this helps. In testing here it correctly handles the last order whether it has a single item, or multiple.

                            -- tom
                            Attached Files

                            Comment


                              #15
                              Re: Writing output line

                              Thanks so much. Time got away from me today, I'll check it out on Monday. Have a great weekend!

                              Comment

                              Working...
                              X