Data conversion into specified format using Script component in SSIS 2008

We have a field in the flat file source which is of the format 13399I , and it need to be type cast to the below format.
 13399I = 1339.99
 5950{ = 595.00
The sign field equals:
{=0
A=1
B=2
C=3
D=4
E=5
F=6
G=7
H=8
I=9
please let us know how to accomplish using script component in SSIS

You can use the following in the script task.
1) Create a dictionary to hold the key-value pairs ({=0,A=1...).
2) Use a substring function to pull out all the string minus the last character.
3) Append the last character back after replacing the character with the respective value from the dictionary.
4) Convert the final string to int/decimal/numeric as per the destination.
Do keep in mind, the data you are referring to is in the COMP3 format. You can do some further research regarding how to convert COMP3 to decimal. There are many ways out there. I personally prefer to load the data into a table and us a lookup table
to do all this. But it's entirely by preference.

Similar Messages

  • Regular expression and Script component in SSIS 2008

    Could you please help me to write regular expression so that it can be used in script component to fetch the data from fixed width file so that the file format can be validated and loaded accordingly.
      IR-TYPE                        PIC X.
     IR-JOB                         PIC X(4).
     IR-PHASE                       PIC X(2).
     IR-CO-ID.
     IR-LVL1                        PIC X(2).
     IR-LVL2                        PIC X(2).
     IR-EMP-NBR                     PIC X(10).
     IR-CK-NBR                      PIC 9(9).
     IR-CK-DATE                     PIC X(6).
     IR-CK-AMT                      PIC S9(7)V99.
     FILLER                         PIC X(35).
    The above schema definition will be stored in regualar expression and through script component each column will be fetched and validate to verify the file format.

    I am quiet new I can provide the file layout .
    1819001HB01002582016 03009291810050200013399I
    1712001HB01004688418 03009007210050200021143I
    1712001HB01004688418 03009007310050200005950{
    Schema definition of the file
    IR-TYPE                        PIC X.
    IR-JOB                          PIC X(4).
    IR-PHASE                      PIC X(2).
    IR-CO-ID.
    IR-LVL1                        PIC X(2).
    IR-LVL2                        PIC X(2).
    IR-EMP-NBR                  PIC X(10).
    IR-CK-NBR                    PIC 9(9).
    IR-CK-DATE                  PIC X(6).
    IR-CK-AMT                   PIC S9(7)V99.
    FILLER                         PIC X(35).

  • Error while sending mail using script task in ssis 2008

    Hi,
        i am trying to send mail using ssis 2008 script task.for my requirement i am not able to use send mail task.
    code i have used is
    declared read only variables system::packagename
     Dim PACKAGE As String
            PACKAGE = Dts.Variables("System::PackageName").Value.ToString()
            Dim myHtmlMessage As MailMessage
            Dim mySmtpClient As SmtpClient
            myHtmlMessage = New MailMessage("[email protected]", "[email protected]", "PACKAGE STATUS", PACKAGE + "WAS FAILED")
         mySmtpClient = New SmtpClient("smtp.gmail.com")
            mySmtpClient.Credentials = New NetworkCredential("[email protected]", "mypassword")
            mySmtpClient.EnableSsl = True
            mySmtpClient.Port = 587
            mySmtpClient.Send(myHtmlMessage)
    error i am getting is
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1
    Authentication Required. Learn more at
       at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response)
       at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from)
       at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
       at System.Net.Mail.SmtpClient.Send(MailMessage message)
       at ST_c121e07caaa94c21bb1355d4f753112f.vbproj.ScriptMain.Main()
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at System.Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, CultureInfo culture)
       at Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTATaskScriptingEngine.ExecuteScript()
    can any one tell me where i am going wrong

    also getting error as follows
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1
    Authentication Required. Learn more at
       at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response)
       at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from)
       at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
       at System.Net.Mail.SmtpClient.Send(MailMessage message)
       at ST_c121e07caaa94c21bb1355d4f753112f.vbproj.ScriptMain.Main()
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at System.Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, CultureInfo culture)
       at Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTATaskScriptingEngine.ExecuteScript()

  • How to update transaction data automatically into MySQL database using PI

    Dear All,
    With reference to subject matter I want a sincere advice regarding how to update transaction data automatically into MySQL database using PI. Is there any link available where I can get step-by-step process.
    Ex: I have a MYSQL database in my organization. Whenever a delivery created in SAP some fields like DO Number, DO quantity, SO/STO number should get updated in MYSQL database automatically.
    This scenario is related to updation of transactional data into MYSQL DB and I want your suggestions pertaining to same issue.
    Thanks and Regards,
    Chandra Sekhar

    Hi .
    Develop a sceanrio between SAP to Database system,When the data updates in SAP Tables read the data and update it in DATA Base using JDBC adapter,but there will be some delay in updating data in MySQL.
    serach in sdn for IDOC-TOJDBC sceannario,many documents available for the same.
    Regards,
    Raja Sekhar

  • How to print form into pdf format using smart forms in abap

    please let me know how to print form into pdf format using smart forms in abap.
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Mar 25, 2011 2:04 PM

    Hi ,
    refer this link
    <removed by moderator>
    Regards,
    Dhina..
    Moderator message: please do not reply to questions that violate forum rules.
    Edited by: Thomas Zloch on Mar 25, 2011 2:04 PM

  • Data conversion into SAP B1

    Hi all,
    First time poster with a newbie question.
    I am a project manager working with a consultancy in implementing SAP B1.  Our old system is SBT.
    One of the tasks to be done is to import four "inventory" fields into SAP (about 2700 rows total):
    Bin location
    Batches
    Cost
    Quantity on Hand
    I have two questions:
    (1) I have a friend who is experienced in SQL data transfer.  He said he could easily write a program to insert data directly into the SQL tables.  When I mentioned this to my SAP consultant, he said that this is a HUGE no-no due to system complexity, high potential for errors down the road, etc.  Would you agree with him?  Or is he just trying to save his company from losing business?
    (2) If the consultant does the data transfer, he estimates 2 days of work (using SAP Data Transfer Workbench).  To me, this sounds like a lot of time!  My data transfer friend says he could do the entire transfer in an hour or two.  Do you think that 2 days of work is a reasonable amount of time for importing these four inventory fields into SAP?
    Thank you for any help you can offer.

    Lin,
    SAP does not Support any kind of Direct data manupulation with their SQL Tables.  Everything has to flow through DI API.
    This being said Data Tranfer Workbench is the way to import the 4 peices you are needing to import.
    Regarding the time line, it could be done in 10 hours or it could take a week, it will all depend on how the data is currenly available.  If your data is accurate and all values are mapped in an Excel it could take 2 days or less.  If your data is not in the right format it could take more.
    2 days is a reasonable estimate.  One thing to remember is importing data into SAP is not a tough job but it is a time consuming job.
    Best wishes
    Suda

  • Update and Write Back DataTable in Object Variable Using Script Component

    Hi All..
    I'm trying to update an Object Type Variable [ReadWrite] with a Data Flow Task Script Component. Variable is already holding a record set with Column(s) like, ID, Name, IsProcessed.
    Now in my Data Flow Script Component, I'm trying to 1st) Fill a DataTable with my variables value then 2nd) Loop through each Input Rows in Data Flow Component and accordingly if there is a match of ID then updating IsProcessed Column in DataTable. 3rd &Finally,
    Copy datatable back to Object Type Variable.
    Below is the code used and just for your ref. I tried Printing content of whole DataTable after Update. This looks perfect but not sure why my variable is able to capture it.
    using System;
    using System.Data;
    using System.Data.OleDb;
    using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
    using Microsoft.SqlServer.Dts.Runtime.Wrapper;
    using System.Windows.Forms;
    using System.Collections.Generic;
    using System.Text;
    [Microsoft.SqlServer.Dts.Pipeline.SSISScriptComponentEntryPointAttribute]
    public class ScriptMain : UserComponent
    DataTable dt = new DataTable();
    OleDbDataAdapter adapter = new OleDbDataAdapter();
    List<string> listriuid = new List<string>();
    public override void PreExecute()
    base.PreExecute();
    public override void PostExecute()
    base.PostExecute();
    adapter.Fill(dt, this.Variables.varobjChildPackageLog);
    dt.AcceptChanges();
    foreach (DataRow row in dt.Rows)
    if (listriuid.Contains(row["ID"].ToString()))
    row["IsProcessed"] = "Y";
    // Just to see the Final Data Table Output
    //StringBuilder b = new StringBuilder();
    //foreach (System.Data.DataRow r in dt.Rows)
    // foreach (DataColumn c in dt.Columns)
    // b.Append(c.ColumnName.ToString() + ":" + r[c.ColumnName].ToString());
    //MessageBox.Show(b.ToString());
    this.Variables.varobjChildPackageLog = dt;
    dt.Dispose();
    adapter.Dispose();
    public override void RIUIDInput_ProcessInputRow(RIUIDInputBuffer Row)
    try
    listriuid.Add(Row.ID.ToString());
    catch (Exception ex)
    MessageBox.Show(ex.Message.ToString());
    Regards, Avik M.

    why do you need to do this in script task.
    This is just a matter of using lookup task while you retrive data from source itself to find the matches and use a derived column transform to check and set appropriate value for IsProcessed column. The object variable itself is not required and you dont
    even require a looping statement either!
    If both source and lookup tables are in same server then you can just wrap them inside source sql query itself to do matching and retrieve the value for IsProcessed within select statement itself in OLEDB Source inside data flow.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Need help solving script component failure (SSIS Visual Studio tools 2.0 using VB 2008)

    Hello,
    I am new to SSIS but believe I have fought my way through this one where I almost have it.
    I copied am existing successful package that uses a loop (and VB code) for ETL of a file. The difference is that I have a new Excel file with different content (I carefully modified the VB code to match the current file). When I run the package I am down
    to just a couple of errors now under the “progress  tab”. I am hoping you can point me in the correct direction to resolve this.
    First I get a Script Component Runtime Error as I run (debug) this package:
    at Microsoft.SqlServer.Dts.Pipeline.ScriptComponent.get_ReadWriteVariables()
    at SC_712a9d2c4d4a4a48a2c07c5f14c80b1a.vbproj.Variables.get_sFacility()
    at SC_712a9d2c4d4a4a48a2c07c5f14c80b1a.vbproj.ScriptMain.Input0_ProcessInputRow(Input0Buffer Row)
    at SC_712a9d2c4d4a4a48a2c07c5f14c80b1a.vbproj.UserComponent.Input0_ProcessInput(Input0Buffer Buffer)
    at SC_712a9d2c4d4a4a48a2c07c5f14c80b1a.vbproj.UserComponent.ProcessInput(Int32 InputID, PipelineBuffer Buffer)
    at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.ProcessInput(Int32 inputID, PipelineBuffer buffer)
    The Data Flow “Progress tab reveals 2 messages
    [Create ED1_2 Feeder File [1760]] Error: Microsoft.SqlServer.Dts.Pipeline.ReadWriteVariablesNotAvailableException: The collection of variables locked for read and write access is not available outside of PostExecute.
       at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.HandleUserException(Exception e)
       at Microsoft.SqlServer.Dts.Pipeline.ScriptComponentHost.ProcessInput(Int32 inputID, PipelineBuffer buffer)
       at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostProcessInput(IDTSManagedComponentWrapper100 wrapper, Int32 inputID, IDTSBuffer100 pDTSBuffer, IntPtr bufferWirePacket)
    AND #2:
    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. 
    The ProcessInput method on component "Create ED1_2 Feeder File" (1760) failed with error code 0x80131600 while processing input "Input 0" (1762). The identified component returned an error from the ProcessInput method. The error is
    specific to the component, but the error is fatal and will cause the Data Flow task to stop running. 
    There may be error messages posted before this with more information about the failure.
    Any suggestions?  I know the code I copied from the source package works perfectly there, but my copy (and then modified) version of the VB code fails in my new package.
    THANKS!!!!!

    Thank You. While waiting for a response I decided that instead of copying the package and editing according to my new source file, that I should rebuild it from scratch
    manually instead (while using the original as a model). Well... it worked!
    (probably could have repaired the other too with your help and with additional effort, etc.). You were right to suspect the variables as I found properties didn't match there as far as scope. In fact that was the last thing I was working
    on when it finally worked.  So, as the late Gilda Radner used to say..."never mind". Thanks again.

  • Formatting Variable into Currency Format INSIDE script

    Hello, 
    I was wondering if someone could give me insight on why I'm running into some problems.
    So, in my script, I'm trying to display my [decimal]$Variable into currency format ( $x.xx ) 
    By looking around online, I found two different ways;
    "{0:C2}" -f $Variable will create the appropriate output in my open shell
    $Variable.ToString("c") will also work in my shell. 
    Now my only problem is that despite numerous attempts and quadrouple checking that I typed it into the ISE properly, I can't for the life of me get it to display properly in my script. 
    I even just tried saving the output into a variable before I put it into my write-host line.
    Does anyone know what the problem is? 
    Thanks, Phil

    $TaxPayable.ToString("c") | Set-Variable -Name $TaxInCurrency 
    $TotalCost.ToString("c") | Set-Variable -Name $TotalCostInCurrency
    ##########################Display the $TaxPayable and $TotalCost to the user###################################
      Write-Host "The Tax for the Book is $TaxInCurrency, making the total cost $TotalCostInCurrency"
    This is my latest attempt to make it work. Sorry about the initial lack of information
     

  • Why do some people get "you cannot save data typed into this form" using FormsCentral fillable PDF?

    Hello.  We're using FormsCentral extensively.  We create the fillable PDF and send it to about 80 people.  Each of them is adding content and saving and then passing on to another person for further content.  Ultimately, all parties are happy with the content and submit.  The problem is that some of the people open the PDF and get the message ""you cannot save data typed into this form".  What is causing this?  Please help as it is causing us many problems.

    Thanks for the quick response.  We distribute the form to 80 people who fill it out and create 80 versions.  They then pass the form to one other person who edits.  All 80 forms, once complete, are submitted to FormsCentral.
    I think the problem is with Mac users.  Is there anything unusual about the Mac with Adobe Reader?  If you provide your email address, I can send you one of the filled out forms that is having this issue.  It's quite odd in that the fillable fields don't show up until clicked on and the form is not saveable.
    Thanks!

  • How to Export SSRS report into Excel format using query string

    Hello all,
    I am new to SSRS world.
    Last night i was trying to add a hyperlink  on the SSRS report (.rdl) file, by clicking which we can export the report into "Excel" format, but with no luck.
    Can anybody tell me how to form the hyperlink, so that we can export the report with its current content ( I mean the report content generated by selecting some parameter values)

    Hi Suman85,
    Based on your scenario, you want to add a link on the SSRS report file, and then click it you can export the report into “Excel” format.
    Just as kishan1901 said , you can add a textbox to your report and type in the words “Click here and export the report
    to excel” .Then right-click the textbox and select Properties. Switch to Navigation tab, click the radiobutton of ‘Jump to URL’ and type in the expression ,here is just a example:
     ="http://vyof1884200/ReportServer$youhoo?/My+Adventure+Works/Product+Sales+and+Profitability+by+Month&rs:Command=Render&rs:Format=excel"
    Then preview the report ,you will see
    Click here and export the report to excel 
    when you move the mouse to it ,the mouse will become a hand ,then left-click, it will jump out a dialog box to indicate user whether the excel file should be saved , opened or canceled. 
    I think this is what you want, if you have any further requirement, could you please describe it in more detail? We would give you some resolution or workaround.
    Regards,
    Challen Foo

  • Rs.LoadReport syntax within Script Component of SSIS task

    Hello,
    please, what does Row.path, Row.name etc.... stand for?
    How should I enter folder path, report name...What about this:
    /FolderName/ReportName....Can not get rid of syntax errors what ever try...If possible, please example...
    Thanks
    string extension, mimetype, encoding;
                string[] streamIds;
                SC_7bb1aae362d44e26a741ccbbecdc6e18.csproj.ReportExecution2005.Warning[] warnings;
                byte[] results;
                rs.LoadReport(Row.path + Row.name, null);
                results = rs.Render(Row.reportformat, null, out extension, out mimetype, out encoding, out warnings, out streamIds);
                System.IO.FileStream writer = System.IO.File.OpenWrite(Row.folderPath + "\\" + Row.name + "." + Row.Extension);
                writer.Write(results, 0, results.Length);

    Please, this
    //Load Report       
            rs.LoadReport(Row.ReportPath , null);
    I read in:
    Bulk Report Generation using SSIS and SSRS 2008 R2 from MSDN
    while from an tutorial I found this:
    rs.LoadReport(Row.path + Row.name, null);It is suppose to be the same? Is plus sign correct or it is suppose to be comma?Please, can you instruct me which is which? Script component is my case...

  • Data conversion from 212 format

    I found a problem during conversion data.
    I have a file which contains ASCII characters (in fact they're look
    like ASCII on any editor) . I have to convert them to integer but I
    know that data are organised into pairs of 12bit numbers packed into
    byte triplets (format 212).
    I made some vi (which convert 2 following ASCII characters to binary,
    then divide them to pairs of 4bits, then some rotation etc..) but the
    whole conversion takes too much time (64kb file conversion is taking
    approx. 1minute).
    Thank you for any suggestions,
    Michael ([email protected])

    Dear Michal,
    I hope this vi work faster.
    Input: 3bytes, data type unsigned int (U8)
    Output: 2 values, data type integer. (INT16)
    of course read all file to memory. Don't read everytime from file by 3
    bytes.
    Deniss
    ps. vi i send by e-mail.
    "Michal Szaj" wrote in message
    news:[email protected]..
    > On Wed, 18 Sep 2002 02:27:25 GMT, Greg McKaskle
    > wrote:
    >
    > >This is one of those things that is quite sensitive to how it is coded.
    > > If you make your VI available, others, including myself can give you a
    > >hand with speeding it up.
    > >
    > >As for guessing at what might be going on, first look at the array wire.
    > > If you are using locals or property nodes to access the a
    rray, that is
    > >the cause. If the array is written to a global and later accessed via
    > >the global, that is causing it.
    > >
    > >I suspect that the bit manipulations on 64K should take something like a
    > >few seconds.
    > >
    > >Greg McKaskle
    >
    > Thank you for your support.
    >
    > In this case I have only one vi and I don't use any global/local
    > variables.
    > At the beginning of the vi I load all text character from file to
    > memory and then I'm making further operations.
    >
    > If it helps I can send the vi with data file.
    >
    > Thnx,
    >
    > Michael ([email protected])

  • Data generation in excel format using utl_file

    Hi,
    I am exporting table data into excel files by using utl_file. But it is getting generated in the server
    directory where database is running? So, how can i get the file at client machine (As in toad or sql navigator
    we can query a table and store the data in client machine in excel format).
    What are the options:- As per my thinking
    I will have to ftp those files back to client machine using shell script?
    Is there any direct way to generate these files in client machine?
    Edited by: want_to_be_a_dba on Jan 17, 2010 1:17 AM

    want_to_be_a_dba wrote:
    But i have to give the data to clients. So I will have to take it?I understand the limitations you face, but shouldn't the data be kept in the database and let the clients use a database application to manipulate the data?
    Anyway, I think you need to test to see which methods works for you. To me it sounds like your clients need a database application, not an Excel sheet.

  • GL data Import into Hyperion Essbase using Adapters in FDM

    Hi All,
    I am trying to import GL data using the below adapters, I have an Essbase application created to accept the data. I previously imported a text file into Essbase and that worked perfectly.
    Source Adapter :ES9x-G4-C
    Target Adapter :EBS-FIN-B
    FDM version :11.1.1.1.00
    1) my Integration settings in workbench are valid
    2) control tables in FDM web are valid
    3) I created an Import group and set the file Type to adapter then specified to Source adapter as EBS-FIN-B.
    What are the next steps as my application is not IMPORTING.
    Thanks
    K

    Hello,
    All software available from Oracle to download is on their eDelivery site: http://edelivery.oracle.com
    If software is not listed there that you need; then you will need to create a Non-Technical SR for media delivery.
    Also please keep in mind that there is no EBS adapter compatible with FDM 9.3.1 .... please review the compatibility matrix at the end of each FDM ReadMe.
    Thank you,

Maybe you are looking for

  • Error in object definition, DOMA  is not available

    Hi Gurus, While loading data from PSA to datatarget(0IC_C03), I am getting this error. I have scheduled the dataloading and the job is getting cancelled.... The job log in sm37 looks like this: Job started Step 001 started (program RSNEW1, variant &0

  • Brand new IPod Touch frozen

    My son's brand new ipod touch went to a blank screen and now won't do anything. Even when we hold the sleep button for more than ten seconds nothing happens. Should we return it to the store? He just got it last night.

  • Adding a Variable name to a filename in background processing

    Hi All, Currently when I run a background process I am giving it a file name of   file_name = '/tmp/END_CUST'.   CONCATENATE file_name '_'  v_dat '_' v_tim '.txt' INTO file_name. This works and shows the filename correctly. However before running the

  • Requisition Losing PO information

    Hello, I am running into a problem with keeping the link between a purchase requisition/item and a purchase order/item. Once the requisition is converted into a PO, the requisition gets updated with the PO/item numbers. Is there a situation or proces

  • Mismatch between Print preview and printout

    Respected Guru's Output device was defined during Febuary, and printout was taken without trouble untill today. Suddenly the print preview and printout does not match, title "INVOICE" printed at the top of the sheet is missing, whereas appears in the