Use of GVM's in POSTTRANS DAL

Hi everyone,
We are having an issue getting GVM's to be accessible to the POSTTRANS.dal script. HAVEGVM is showing the GVM exists, but the values come in blank.
Is an .ini setting that controls this?  Does the ordering of the POSTTRANS dal in the AFGJOB matter here?
If the ordering does matter, is there a good way to troubleshoot?
Any help or suggestions regarding this issue are greatly appreciated.
Thanks in advance,
Eric Greene

Okay. That probably means that the script did not provide enough information to clarify where to find your field in the document. DAL has the concept of the "current section" and "current field". So, when you call it from a field rule, it would assume that is the current field and the section that owns the field is the current section. When you call it in a Post trans DAL, the system will assign the first section in the document as the "current" section. So, your field is being sought on that section and is failing.
So, you need to provide enough information to locate the field. The @() supports you specifying the section, form, and forms list. The amount you have to specify depends upon what best identifies the specific field you want.
If you know your field is uniquely named in the entire document, you could do something like this:
x = @("FieldName", , , "*");
This says to find the first (and only?) occurrence of the named field within any form list (GRP) specified. That's pretty broad, but you may be able to be more specific.
x = @("FieldName", "Section", "Form", "FormList");
If you specify an asterisk, this means "ANY" within the parent. so x = @("FieldName", , "*") means to find the field within "any" form within the current forms list.
x = @("FieldName", "*") would mean to find the field on any section within the current form (which in this case would be the first form in the transaction).
There may be better examples in the DAL help for the getfld (@) function, so perhaps reviewing that would be better than what I've done here.

Similar Messages

  • DAL- countrec() with a special case

    Consider this...
    <root>
         <bb>abcd</bb>
         <bb>xyza</bb>
         <bb>xyza</bb>
         <bb>abcd</bb>
         <bb>rwaa</bb>
         <bb>abcd</bb>
         <bb>abcd</bb>
    </root>
    i want to find the number of <bb> tags... whose value is not the same as previous one...
    here it should be 5 (as "xyza" and "abcd" appears consecutively)
    But...countrec("!/root/bb") fetches 7
    Thanks in advance !!!
    Navin.

    Hi Navin,
    I haven't seen any available rule or function to do what you are looking at. I am also not sure if you are looking at a one line simple method. But this is what I was able to find for you. A simple DAL function named "CUSCOUNTREC" given below:
    #srchmask = CountRec("!/Form/bb");
    #index = 2;
    #cuscountrec = 0;
    prvvalue = "";
    curvalue = "";
    While( #index <= #srchmask )
         prvvalue = Trim( GetData("!/Form/bb["&(#index-1)&"] 1,20") )
         curvalue = Trim( GetData("!/Form/bb["&(#index)&"] 1,20") )
         #strcomp = STRCompare(prvvalue,curvalue)
         If(#strcomp!=0)
              #cuscountrec+=1          
         End
         #index+=1
    Wend
    IF(#srchmask>0)
              #cuscountrec+=1          
    END
    RETURN (#cuscountrec);
    Two important things to note here are:
    1. I have hard-coded the Search mask as "!/Form/bb"
    2. I have assumed that the field "bb" will be maximum 20 bytes in length.
    However you can have these two things controlled using the GVM (by making use of SetGVM, HaveGVM functions from wherever you would want to call).
    Thank you.

  • OLEDB Syntax error INSERT INTO in DAL

    hi guys im having problems with my DAL in my school project
    before im starting new one maybe you can help me
    using
    System;
    using
    System.Collections.Generic;
    using
    System.Linq;
    using
    System.Web;
    using
    System.Data;
    using
    System.Data.OleDb;
    public
    class
    DAL
    private
    string dbPath;
    private
    OleDbConnection conn;
    private
    OleDbCommand command;
    private
    OleDbDataAdapter adpter;
    private
    string strQuery;
    public DAL(string
    dbPath)
    this.dbPath = dbPath;
    string ConnectionString =
    string.Format(@"Provider=Microsoft.ACE.OLEDB.12.0;Data
    Source={0}", dbPath);
            conn =
    new
    OleDbConnection(ConnectionString);
            command =
    new
    OleDbCommand(strQuery, conn);
            adpter =
    new
    OleDbDataAdapter(command);
    public
    DataSet GetDataSet(string
    strSql)
    DataSet ds =
    new
    DataSet();
            command.CommandText = strSql;
            adpter.SelectCommand = command;
            adpter.Fill(ds);
    return (ds);
    public
    void SetDataSet(DataSet
    ds)
    OleDbCommandBuilder builder =
    new
    OleDbCommandBuilder(adpter);
            adpter.InsertCommand = builder.GetInsertCommand();
            conn.Open();
            adpter.Update(ds);
            conn.Close();
    public
    bool InsertRow(string
    sqlInsert)
    int rowsEffected;
            command.CommandText = sqlInsert;
            conn.Open();
            rowsEffected = command.ExecuteNonQuery(); // -------> the problem is here <--------
            conn.Close();
    return (rowsEffected > 0);

    Hi
    tzaxcu,
    Did you get some error information? Could you please post more information here?
    Best wishes!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Installing Dali plugin in IBM Rational Software Architect

    Hi,
    We use IBM Rational Software Architect as development environment, and we want to use the Dali Eclipse plugin to generate Entities using TopLink. We cannot get Dali installed in IBM RSA though. Since IBM RSA is based on Eclipse, it shouln't be a problem to install Eclipse plugins. We tried installing Help > Software Updates > Find & Install and via copying the files into the Eclipse tree, but neither of the to methods succeeded. The plugin simply doesn't show up.
    Does anyone have a suggestion on what to do to get it installed? We use a separate installation of Eclipse Europa now as a workaround. But I think you understand we prefer to use a single development environment.
    Here's some detailed information about the version of IBM RSA we're using:
    * IBM Rational Software Architect: Version: 7.0.0
    * Eclipse Platform: Version: 3.2.1.r321_v20060921-b_XVA-INSQSyMtx; Build id: M20060921-0945
    Best regards,
    Bart Kummel

    Flex Builder 3 plugin is not intended to be installed on Eclipse Galileo (3.5).
    Zend Studio 7 is based on Eclipse 3.5, and when I tried to install the FB3 plugin, the installation wizard gave me this error:
    "Please choose an existing Eclipse 3.2, 3.3, or 3.4 folder to be extended with the Flex Builder Plugin-ins."
    However Flash Builder 4 it seems that it's working with Eclipse 3.5. I've just installed Flash Builder 4 plug-in into Zend Studio 7.
    Here is a post about this: http://margelatu.org/

  • Selectively overflowing header information

    Hi Everyone,
    Currently we are working on a Form in 11.3 which can span into multiple pages. We have a requirement to print header information(approx 4 lines of data in a regular 10 pt font) on the form like policy number, date etc. Per our requirement, we need to print this header only on the odd number pages. On the even pages, the header shouldnt appear.
    For accomplishing this we have the tried the following options
    Option A
    1) We have set copyonoverflow for the Header image. In this way the header image would automatically print on all the different pages
    2) We have used a posttrans dal to delete this header image only on the even pages.
    The problem with this approach is that when the image is deleted, it leaves a empty space on the top of the even page which makes the o/p look bad.
    Option B
    We removed the header image from the form during design time. We tried to dynamically add the header image only on the odd numbered pages in posttransdal, again the issue here is that eventhough we add the image, it is just getting overlayed on the existing page. We are not in a position to dynamically shift the remaining contents of the page down. Also this form is totally a dynamic form and we cant just like that shift the remaining contents beneath this header using options like setimage position.
    Option C
    We tried to put a logic in the header section level trigger/field within the header image. The issue here is that the logic is getting executed only once. If the logic returns true once, the image by default gets copied on all the overflow pages. What I am trying to say here is that eventhough the header image gets copied on overflow multiple times, the DAL associated with the header gets executed only once.
    Could you please let us know if we can try any other option for accomplishing this requirement.
    Thanks!

    Thanks for the quick response. As I had specified, the piece of data that I need to display on the header consists of 4 lines. Through POSTTRANS DAL when we add the image, we can just do a overlay of the header image on a existing page.
    If the image I am trying to add is of lesser size, then this procedure is fine and there would not be any major issues in the o/p. But the problem with us is that the image that we are trying to add dynamically, atleast occupies more than a inch to inch and a half of space. So we cannot just like that overlay the data.
    If the header image is of lesser size then we can just reserve this space during Form design time, so that the extra image can just be overlayed during post transaction. If I dont reserve the space and make everything dynamic then we would have to add the extra image and then move all the images below it using some sought of setpos rules, which makes the form logic very complex.

  • Micro questi

    Hey Im new to this site too!! I am having trouble with my micro too! It suddenly went completely blank on me. It seems to be stuck in a loop. It all started when i hit the pause button. Now i have a completely blank screen. But it still plays 3 or 4 songs over and over. The micro lights up when its turned on but that it! When i plug it into the charger i dont even get the charging symbol on the screen! I took the battery out and put it back in but no use!! Its too bad these things dont have a hard reset button!! If anyone has dealt with this kinda problem let me know!! I have a nano and that seems to work great! I picked the micro up in Dec. and it has had only limited use!!
    Message Edited by Dale-CL on 09-23-2006 0:04 AM

    If you can download from the computer at school buy a flash thumbdri've. You can check the sale ads for inexpensi've ones. I've purchased 4 gig ones fro $20.00 at Fry's electronics.

  • Can't open a "Full Page"  to print a letter..Please help!...

    For some strange reason, when I open up AppleWorks (Word Processing) to simply print a letter, I get a "half a page". And in the past it was always a "Full Page"... I'm using AppleWorks 6.2.9
    I've tried everything possible, but I still get the "half page" each and every time when I open Word Processing to write a letter.
    Please help.......thanks.....

    Without you detailing what you've tried, it's impossible to know what you consider everything possible. Usually a user's "everything possible" isn't everything.
    When an application stops working as it should, it's likely due to corrupt preferences. You can follow the steps in this user tip or use the free reset function of Dale Gillard's Sidekick.

  • FSIUSER PRTTYPE question

    Hi there. Have a question as to whether something is possible, and if so, how to do it.
    We're running a mainframe batch application of the Documaker composition engines. We have it set up in a JCL Proc, so it always points to the same FSIUSER/FSISYS files. We're creating a new application that is slightly different, so adding a new forms list to the BDF. I'll have a new CommonFonts group in FSIUSER, so each will have it's own name. I know I can reference the appropriate commonfonts group in the PRTTYPE group. The problem I'm running into is that both of my PRTTYPE groups are XER. If I give them a custom name, I don't know how to drive the usage of the appropriate PRTTYPE. My understanding is that currently, the PRTTYPE listed in the PRINTER group drives the usage of the appropriate PRTTYPE group, so if I add this custome one, how does my application instance know which group to use? Is there a way to tie the Key1 & key2 value (which drives the Forms List) to the appropriate PRTTYPE group?
    if not, I'll have to create a 2nd instance of FSIUSER, and override the JCL PROC (which isn't a bad thing, just wondering if that's my only option).
    Thanks!
    Gregg

    The batch also needs to be set up. There are several prior steps to getting the print to a new batch. The batching by recipient is one piece. That is not the only way to use the batching by recipient INI setting, you can also use a GVM value to route it there. First create the batch so that the "stuff" that needs to use the PRTTYPE has a place to go.
    The last act of GENDATA is to determine what batch the transaction is routed to - the default method is to resolve the recipient using the AFGJOB routing. If there are multiple recipients, the AFGJOB rule to use batching by recipient should show ;BatchingByRecipINI;;; - please be sure that this is the rule being used first. It is not the default sample but has been more commonly used in more implementations.
    GENDATA then uses the INI option and goes through each transaction recipient the first condition that if finds that it meets, it routes to that batch, therefore if you use a GVM and or recipient name and/or page count the logic drops it into the first condition that is satisfied so order can be important if you are using conditions to determine the batch. Part of the batching set up is to ensure that each batch has a logical place to be written the PRINT_BATCHES section. GENDATA will do run correctly if the BCH file is not defined. The batches are associated with a logical printer under the PRINTERINFO section. The logical devices are then associated with a physical file under the printer definition which also can have the alternate PRTTYPE. There is a default PRTTYPE defined under the PRINTER (not PRINTERS) INI option.
    This probably does not answer the question , but because the batches and printers are all logical devices there are a number of ways that they can be set up in your INI file, its best to review your INI file specifics instead of your implementations. So you can send the files direct or post them here (+Emmalynn's+ dad).

  • What is the use of # in DAL script ?

    Hi Guys,
    In DAL script what is the use of # ? When I am not putting # the keywords are looking blue (Which I think its correct) but in the Help it mentioned with #. If I am putting # in the code then it became grey colour. Which one is the correct ?
    Thanks,
    Bikas

    Hi Bikas,
    # is used to validate numeric values. Please find the sample below.
    Scenario 1_:
    X = Getdata("!/xyz 1,10")
    X may take alphanueric values
    Scenario 2_:
    #X = Getdata("!/xyz 1,10")
    #X will only take numeric values.
    Based on your requirement you can use # accordingly.
    Please let me know if any information required.
    Thanks,
    Sravanthi M.

  • How to parse and use the data that is coming as XML using DAL script

    Hi,
    I am trying to implement a solution where we are getting a doPublish request using EWPS webservice call which just contains a transaction id. I need to read a table using transaction id to get the xml. I know how to read the xpath and implement the solution if the XML is coming as input. If it stored on a table where Documaker should read and get the XML, how can we implement that?

    If you are saying that your XML is stored in a table, I'm not sure there is any method, using DAL or rule, that would know how to load XML from there. I can be wrong, but I think it has to load the XML from disk only - either as the extract file or as an external file referenced from the extract - using a Rule or DAL to go after the external file.
    Perhaps you could clarify the situation a little more and someone might offer a suggestion.

  • Documaker :How to dynamically move or resize a section using DAL Script?

    Hi all
         i am a newbie to Documaker. I am working with Documaker 11.4. I would like to know two things
            (1)   Whether there is any option to move a section towards left, dynamically using DAL Script.
            (2)   And is there any option to resize the section dynamically using DAL Script.
    Thanks in advance.

    This is obviously a bug with Photoshop Elements 12.
    In my Photoshop Elements 10 the printer dialogue box scales to fit the screen every time.
    In Photoshop Elements 12, even moving the task bar away (you can simply drag it up the right hand side of your screen with the mouse) you can't see the print button as its still off the bottom of the screen.
    My work around is to hold shift+alt+cntl and click on my Ps icon - Click compatibility - Scroll  down to settings - click run in 640 x 480 screen resolution. It then does horrible things to your screen res, but hey presto the printer dialogue box is minimised and you can print your picture. As with your Toshiba, even with the printer dialogue box fully exposed there are no chevrons in the bottom right hand corner to minimise the printer dialogue window and the arrow buttons simply start trying to change the settings in the printer set up. The dialogue box is still nailed to the top of the screen with no title bar to right click on.
    How do I escalate this to report it as a bug to Adobe?

  • Using both Enterprise library and Entity framework as DAL for same application

    We have been using EF for large amount of data  retrieval in our current application. We faced performance related issues with using EF with large data retrieval and manipulation.
    We need to extend the same project with some additional functionality similar to what currently exists in the application and uses EF.
    For the new functionality, we do not want to use EF and want to use enterprise library for Data access.
    My question is if we use both entity framework for parts of the application data access mechanism and enterprise library for other parts of application data access, are there any known issues?
    if there are any best practices to be followed please share .

    We have been using EF for large dataset retrieval in our current application. We faced performance related issues with using EF for large data set's  .
    Dataset? What are you talking about?  If you are using the salad bowl, the dataset with datatables, then here is the reason not to use them.
    http://lauteikkehn.blogspot.com/2012/03/datatable-vs-list.html
    My question is if we use both entity framework for parts of the application data access mechanism and enterprise library for other parts of application data access, are there any known issues?
    What is Entlib going to buy you in performance? It's going to buy you nothing. You'll be better of going to the EF backdoor, use SQL command objects, inline T-SQL, sprocs, datareder and using custom objects or objects off of the virtual model returning a
    single object or objects in a collction., if you are concerned about performance.
    http://blogs.msdn.com/b/alexj/archive/2009/11/07/tip-41-how-to-execute-t-sql-directly-against-the-database.aspx
    You'll probably be better of going to Entity SQL, using a datareader, collection and using custom objects or objects off of the model, if you are concerned about query performance.
    https://msdn.microsoft.com/en-us/library/vstudio/bb738684(v=vs.100).aspx
    https://msdn.microsoft.com/en-us/library/vstudio/bb387145(v=vs.100).aspx
    https://msdn.microsoft.com/en-us/library/vstudio/bb399560(v=vs.100).aspx
    My question is if we use both entity framework for parts of the application data access mechanism and enterprise library for other parts of application data access,
    are there any known issues?
     A nightmare, no consistency and complete Helter Skelter is what I see. Been there and seen it in action with different technologies doing the same thing in a solution.

  • Can I use SetFld during GenPrint for banner page fields?

    I have a banner page form that has multiple variable fields on it to display information specific to the batch it's being included with (for out post-composition handling area). I currently set those fields' values by assigning variables of the same name (as the fields) within a DAL script called as my BachBannerBeginScript for that batch. The fields on the Banner page form/section have a rule of NOOPFUNC, so without that assign process happening during the DAL script, they inherently hold no value. This has worked fine so far.
    Now I have a new banner page for a different process/batch, and it's purpose will be to be a "summary report" of sorts, detailing on the banner page high-level information about each document within that batch. I take information from the batch file (bch), read in an additional external file and aggregate the data in GVMs (to form an array, basically) during the BatchBannerBeginScript. The problem I now have is that I have a variable-sized array (based on the document-count within my batch file), yet my understanding is that I can't use functions available to me in GenData, so I have to basically pre-define as many instances of the section (if I do a report line per section) or field (if I do one section with all instances of the field on it) as I think are possible (max-case scenario, basically).
    However, after I have my Section/Fields defined, I still need to use DAL scripting to populate those fields. I tried to use SetFld to populate them, but the values don't show up in my output, leading me to believe that function/rule doesn't work in GenPrint. Is there a better way to set all those fields than to explicitly assign each instance of a field? I'd rather have a short While loop that takes a GVM's instance and assigns it to a variable field name than have hundreds of assign statements where I explicitly assign each possible field.
    Thanks,
    Gregg

    Aha. So you have an existing script that is executing somewhere to assign some other field during print. Depending upon what and when this script runs, you may be trying to set your banner fields too late. You see, as a default the banner page is temporary. Generally it is created, printed, then destroyed all before the first real page of your transaction prints. If you are not using the TransBannerBeginScript INI option as mentioned earlier, you might try to use that method to run your script which should be while the banner page is still alive.
    There is another way that you could try to run your script on the given page using what is called a "print time" or "macro" field. This would involve creating one more field on your banner section and name it like this:
    ~DALRUN MyScript.DAL
    Yes, you can name your script something other than MyScript.DAL.  The key is the ~DALRUN at the start, which will be interpreted at print time to mean that you want to run the DAL script and return a value. Now, of course you don't need a real value for this field, but there's nothing to stop the script from assigning data into the other fields at that time.
    You do have to make sure that this field is the first in sequence on the section. Otherwise, some of your fields may print before it gets to the point to evaluate this "print time" request.
    To make sure this is the first field in sequence will differ depending upon whether you are using DMStudio or the older Image Editor. Since you mentioned 11.5,  you could use either. In DMStudio, simply click on the "Objects" tab when the section is open and then click on the field to highlight it in the tree. Then use the button bar just above there to move the field to the top of the list.

  • Running DocuMaker 12.1 Using IDS 2.4

    Hi
    I have a transaction level DAL to trigger and order the forms based on few nodes in the XML. I see that the DAL works perfectly well when DocuMaker is run stand-alone.
    It gives the same results when the same extract is submitted multiple times. But the DAL doesn't work properly when DocuMaker is ran using IDS. It gives proper results for the 1st two runs and doesn't work as expected in the next runs.
    The DAL uses GVM variables for ordering the forms and I believe the GVM variables are not getting destroyed as the GENDATA process stays alive during the IDS call.
    I tried modifying my IDS request type to stop the DocuMaker process before each it starts and could see some issues with the performance. This fixed the issue but i could see the response time is more as the IDS starts DocuMaker for every requests.Do we have any INI settings or rules that can be used to destroy the GVM variable after each run.
    Below is the definitions of the request type in the docuserv.xml. Please let me know if there is a better way of doing it.
    Initial Definition
    <section name="ReqType:SPRT">
    <entry name="function">atcw32-&gt;ATCLogTransaction</entry>
    <entry name="function">atcw32-&gt;ATCLoadAttachment</entry>
    <entry name="function">atcw32-&gt;ATCUnloadAttachment</entry>
    <entry name="function">atcw32-&gt;ATCReceiveFile,ExtrFile,ExtrFile,*,KEEP</entry>
    <entry name="function">dprw32-&gt;DPRSetConfig</entry>
    <entry name="function">rpdw32-&gt;RPDCheckRPRun</entry>
    <entry name="function">rpdw32-&gt;RPDCreateJob</entry>
    <entry name="function">rpdw32-&gt;RPDProcessJob</entry>
    </section>
    New Definition with "RPDStopRPRun" before "DPRSetConfig" and "RPDCheckRPRun"
    <section name="ReqType:SPRT">
    <entry name="function">atcw32-&gt;ATCLogTransaction</entry>
    <entry name="function">atcw32-&gt;ATCLoadAttachment</entry>
    <entry name="function">atcw32-&gt;ATCUnloadAttachment</entry>
    <entry name="function">atcw32-&gt;ATCReceiveFile,ExtrFile,ExtrFile,*,KEEP</entry>
    <entry name="function">rpdw32-&gt;RPDStopRPRun</entry>                    
    <entry name="function">dprw32-&gt;DPRSetConfig</entry>
    <entry name="function">rpdw32-&gt;RPDCheckRPRun</entry>
    <entry name="function">rpdw32-&gt;RPDCreateJob</entry>
    <entry name="function">rpdw32-&gt;RPDProcessJob</entry>
    </section>
    I am using IDS 2.4 to run DocuMaker 12.1 (ODSE ) in a Single Step mode in Solaris Environment.
    Thanks in Advance.

    I don't know how many GVM variables might be involved, but assuming that you do, why not simply clear the variables in a PostTransDAL rule in the AFGJOB. That way the variables will have no content when the next transction begings?
    And depending upon your setup and what you are relying upon to create the GVMs, you might also be able to use a little trick using the <GentrnDummyFields> INI Group. Normally a GenTrn process would expect any variables named here to also be defined in the TRN DFD, but since you are using IDS, I'm presuming that you are only relying upon GenData and not GenTrn. So - again depending upon what you are relying upon to define the GVMs - you might be able to simply list your GVMs under this group and they would be cleared at the start of every transaction.
    < GentrnDummyFields >
    MyGVMOne =
    ASecondGVM =
    AnotherGVM =
    By leaving the assignment blank, I'm pretty sure the start of each transaction will clear the variables. Note this doesn't delete them, but I'm assuming your script(s) would be able to handle the blank value to mean the item is not defined.

  • Help with a query using ISNULL and RTRIM in the same select statement

    What I'm trying to accomplish is to blend the following two statements together:
    ISNULL (EMail_Address, '') As Matrix_Member_Email
     AND
    RTRIM (EMail_Address) as Matrix_Member_EMail
    So that if the email address is NULL, it gets changed to blank and I still need to RTRIM the other entries and use the column header of Matrix_Member_Email.
    I've tried:
    ISNULL ((EMail_Address, '') (RTRIM (EMail_Address)) as Matrix_Member_EMail
    Any help would be greatly appreciated.
    Thank you,

    I'm sorry.  Here is the query:
    --Declare @EMail_Address nvarchar(100) = null
    Select SVAssociationID.R_ShortValue as MATRIX_AssociationID, Matrix_Modified_DT as Matrix_LastModified
      ,RTRIM (MLS_ID) As Matrix_MLS_ID
      , ISNULL(EMail_Address, '') AS MATRIX_member_Email
      ,RTRIM (EMail_Address) as Matrix_Member_EMail
      --,RTRIM( LTRIM(  ISNULL (@EMail_Address, '') ) ) as Matrix_Member_EMail 
      ,Last_Name AS MATRIX_LastName, Nickname AS MATRIX_NickName
      FROM    dbo.Agent_Roster_VIEW a
            LEFT JOIN dbo.select_values_VIEW SV ON a.Status_SEARCH = SV.ID
            LEFT JOIN dbo.select_values_VIEW BillType ON a.Bill_Type_Code_SEARCH = BillType.ID
      LEFT JOIN dbo.select_values_VIEW SVAssociationID ON A.Primary_Association_SEARCH = SVAssociationID.ID
    WHERE   Status_SEARCH IN (66,68) 
        Order by MLS_ID
    Results:
    MATRIX_AssociationID
    Matrix_LastModified
    Matrix_MLS_ID
    MATRIX_member_Email
    Matrix_Member_EMail
    MATRIX_LastName
    MATRIX_NickName
    STC
    09/02/14
    CCWILLI
    [email protected]
    [email protected]
    Williams                      
    Christine   
    STC
    09/12/14
    CCWORSL
    [email protected]
    [email protected]
    Worsley                       
    Charlie
    STC
    09/02/14
    CCYROBIN
    NULL
    Robinson       
    ECBR
    09/02/14
    CDABLACK
    [email protected]
    [email protected]
    Black                         
    Dale        
    STC
    09/02/14
    CDABRADY
    [email protected]
    [email protected]
    Brady                         
    David       
    Thank you,

Maybe you are looking for

  • Error when calling Stored Procedure from backing bean

    I am using Jdeveloper 11.1.1.6 and am trying to utilize the following URL to execute a SP from a backing bean: http://ramannanda.blogspot.com/2011/11/optimized-update-insert-adf.html The reason I am looking at this is currently I have coded my backin

  • Java.nio.channels.ClosedChannelException using https

    Hello, I have deployed an application to the OC4J 10.1.3.40, it runs well as long as it is used by http. Since it is running under https an error comes randomly. Here is the text from the log.xml: <MSG_TEXT>Exception in NIOServerSocketDriver:selectFo

  • Iphone 3Gs Calendar start/end time

    I'm putting a lot of calender entries into my phone, but it's annoying that it only shows start times - is there anyway that this can be altered so that it shows start and end times ? It's annoying as if looking at a list, day or month, it doesn't sh

  • ESS Open enrollment - Hide Plans

    Hi Gurus, We are implementing Open enrollment for ESS. The problem is when we run the Enrollment iView, it is pulling all the benefit plans, despite us having the Adjustment reason "OPEN". Even when I disable the adjustment reason, it is pulling all

  • Post your specs here if you don't suffer crackling/popping/hangs/distort

    Two systems: Intel System Motherboard: Gigabyte 8INXP Chipset: Intel E7205 Granite Bay Processor: Intel Pentium 4 Northwood 3.06 with HyperThreading Bus speed: 6 Mhz (overclocked from 33) Hard Disk: Western Digital 80 Gb (ATA00) and Seagate 200Gb (SA