You could use a script like this. Actually, it does not “replace” the line, but reads the complete file and writes the modified text back. It could take some time (and resources) to process large files this way. <pre>Const ForReading = 1 Const ForWriting = 2 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile("C:your_file.txt", ForReading) [...]
What would be the formula to display the UnitPrice + 10% increase; using Crystal Report
Sorry, I wasn’t reading closely. RUNSQLSTM is not a JCL command, I was thinking CL. ——— JCL & SQL & DB2 – are we talking MVS? To exec dynamic DB2 SQL statements in a batch job (JCL); try using DSNTEP2 : <pre> 001720 //** 001800 //STEP1 EXEC PGM=IKJEFT01,DYNAMNBR=20,COND=EVEN 001810 //SYSPRINT DD SYSOUT=* 001900 //SYSTSPRT DD [...]
The message is saying that the semi-colon was encountered where one wasn’t expected. It goes on to say that CASE should be the token that would be after END under the circumstances. I suspect that the full source member is not actually a CREATE PROCEDURE operation. If it’s instead a basic SQL statement, then it’s [...]
More information would be helpful. In a nutshell you’ll need to use SQL Server Integration Services (SSIS) to do the work. On your workstation (or the server) install the AS400 drivers. Then open the Business Intelligence Development Studio (BIDS) and create a new SSIS package. Then use a data flow task to copy the data [...]
Barry, The LA convention center should already have all that in place and available for rent/usage during your event. That said in order to put your own WiFi system into place you’ll need to bunch of WiFi access ports and a network router to route the network traffic from the wireless network to the public [...]
To get customer info with a count of how many items they ordered: SELECT t1.customerName, t1.address, t1.phone, SUM(t2.qty) FROM t1 INNER JOIN t2 ON t1.customer = t2.customer GROUP BY t1.customerName, t1.address, t1.phone I’m assuming that t1 and t2 have some customer number in common. If you want all the customer info and all of the [...]
Your going to have to use a third party DLL. I would reccomend avoiding this all togetehr and instead installing something like: <a href=”http://sourceforge.net/projects/pdfcreator/”>PDFCreator</a> on the users computer so they can print the crystal report to pdf.
Here is how I would accomplish this. When the button is clicked to view the report, do this: Response.Write(“<script type=’text/javascript’>window.open(‘../ViewReport.aspx?parameter=” & strValue & “‘, ‘_blank’, ‘width=800,height=600′);</script>”) Now build ViewReport.aspx with the CR Viewer on it. In the page load event, read the parameters out of Request.QueryString feed them to the report. Now when the click [...]
This is link to <a href=”http://home.windstream.net/craigru/jcrcmd2.html#top_tag”>Craig Rutledge JCRCMDS</a>. There is a tool to display dtaq-entries. You can download JCRCMDS and install them. You can use the source of the retrieve-program and write the entries into a file, which you can save. ====================================================== In general, there are five ways to “store” the entries in a data [...]
If you have a defined list of values for your string field, a simple ‘if..then..else’ should suffice i.e <pre> if {StringField} = “XXX” then “Code1″ else if {StringField} = “YYY” then “Code2″ else if {StringField} = “ZZZ” then “Code3″ else… else “ERROR : No Match Found) </pre> However if this used in multiple reports and [...]
pls can u explain some error in crystal report to me any error u think of pls help me out
I am not familiar with max sal on the AS400, A PF has two maximum values. 1. Max Size – Which determines that maximum number of records 2. Max Mbrs – Which determines the maximum number of members in a PF. This is usually 1. Please let use know where you found this max sal [...]
I know it’s an old post…. but I post this for reference. new_time= input(put(old_time, $6.),hhmmss8.); Hope this helps Manu
The first place you should look at the manuals and your coworkers. You need some education. You cannot be expected to know how to use DB2 just off the street. DB2 on z/OS is about the best there is, but it is complicated. Go to your boss and explain that you do not know DB2. [...]
It depends on the outcome you desire. What are you looking to accomplish? I do think a large contributor to weaknesses and gaps in IT is not looking at the bigger picture. TechTarget’s <a href=”http://SearchCIO.com”>SearchCIO.com</a> and <a href=”http://searchcio-midmarket.techtarget.com/”>SearchCIO-Midmarket.com</a> have some good info/resources on this.
I am investigating this also. It is call Third Party Processing in the documentation. The Item Category TAS in the Sales Order will create a Purchase Requisition with the Customer Delivery Address. You create a PO from the Purchase Req. It is not set up in my system, so I’m not sure how the Inventory [...]
Please post more details, code snippets etc to provide a much better overview of what you’re trying accomplish.
In order to resolve the error you need to ensure that the element http://localhost/reportserver in the rsreportserver.config is configured to the correct computer name. By default the rsreportserver.config file is in the directory C:Program FilesMicrosoft SQL ServerMSSQL.3Reporting ServicesReportServer.
Question 1 – They should have an AS400 Anaylst Question 2 – Same thing Our company has a product that converts DB2 from the AS/400 to SQL Server for .NET. We would be happy to provide that service for your client. Please let me know if you want to discuss this in more detail.





