Urgent select with complex requirement

Dear all
I have two columns in al table its data is like the following
example :
stuff description
desk is red with glass
desk is rounded
desk having four legs
chair its color is brown
this is how the data in the table
what i want is to select from the column stuff the thing with the different description for it without repeating this stuff
such as the following :
desk is red with glass
is rounded
having four legs
chair its color is brown
Will you help me in that select please as fast as possiple thnks alot

Something like:
with t as (
           select 'desk' stuff,'is red with glass' description from dual union all
           select 'desk','is rounded' from dual union all
           select 'desk','having four legs' from dual union all
           select 'chair','its color is brown' from dual
select  case row_number() over(partition by stuff order by 1)
          when 1 then stuff || ' ' || description
          else description
        end stuff_description
  from t
  order by stuff desc
STUFF_DESCRIPTION
desk is red with glass
is rounded
having four legs
chair its color is brown
SQL> SY.

Similar Messages

  • Web service data control with complex input parameter problem

    Hi!
    I'm making ADF web app, using JDev 11.1.1.2.0. I have to call a web service (using a data control), which has complex input parameter (array of complex objects).
    I followed steps from Susan Duncan blog: http://susanduncan.blogspot.com/2006/09/dealing-with-complex-input-params-in.html , but I ran into a problem.
    As Susan wrote, I changed submit's button action binding to an operation in a managed bean, which returns array of objects and everything works fine. I can call a WS and my table shows the result.
    The problem is, that after I change button's action binding to my manage bean, row selection in result table doesn't work anymore (I allways get NullPointerException).
    What can be done here?
    Can somebody please help?

    Hi,
    I also have similar type of problem where I need to invoke a Web service with Complex input parameters.
    I followed Susan's blog but I stuck at a point where methos getItem is created.
    Can anyone tell me how to get that method for my requirement.
    If possible can you guys share your solutions here.
    Thanks in advance.

  • Complex requirement for Date/Time Period related - Please help!!

    Hi,
    This is a complex requirement by my client.
    There is a Patients table with the patient's eligbility for the insurance, on monthly wise. I have to find the Inactive patients and also when they are Inactive in the past as well as as of now. 
    Few points about the table and logic:
    1.Data is from Jan 2012 and it is on monthly basis. For Eg: if he enrolls on Jan 2012 and he is active till last month(Jan 31,2015), then From Jan 2012 to Jan 2015, one record per each month is available.  ie total of 37 records for him. If he is Inactive
    for a period then that period record will  be missing.
    2.I need to consider from the day they enrolled to till Jan 31st,2015, to find out whether they are Inactive for any months between their enrolled date to till Jan 31st,2015.
    3. In the below image, PatientID 1000 - No issue with him. he enroled on Aug 2014 and has records till Jan 2015 - No issues. He will not be counted for Inacive members.
    4.patientID 1001 - He is active till now as he hsa records till Jan 2015. But he was Inactive from 2014-06-06 to till  2014-06-30. So,he has to be counted as 'less than 1 month Inactive member for 2014'
    5.PatientID 1002 - He is active till now as he haa records till Jan 2015. But he was Inactive from 2014-09-01 to till  2014-09-30. So,he has to be counted as ' 1 month Inactive member for 2014'
    6.PatientID 1003 - He was Inactive for 09th &10th months for 2014. and also he has record only till Dec 2014. So,he has to be counted as '2 month Inactive member for 2014' and '1 month Inactive for 2015'
    7.PatientID 1004 - He is active from jan 2012 to Apr 2012 only. So,he has to be counted as '8 month Inactive member for 2012','12 month Inactive member for 2013','12 month Inactive member for 2014'  and '1 month Inactive for 2015'
    Please help me to find this as this is very complex for me - Finally they want a table like the second image below
    In the table X=0 means Count of all Members who are NOT inactive ).
    Thanks much in advance for your valuable inputs!

    Create something like a calendar table with a column with dates from enough years that will cover your patient history. For example dates from Jan 1, 2012 to some future date like Dec 31, 2020. Then it will be an OUTER join with this calendar table and get
    DISTINCT months when the patient was inactive.
    The calendar table can have just Month and Year too instead of dates. But usually dates can be useful in many other scenarios too.
    An example -
    create table patient (id int, effective_date date, end_date date)
    create table calendar (id int identity, calendar_date date)
    insert into patient (id, effective_date, end_date) values
    (1000, '1/1/2014', '1/31/2014'), -- patient 1
    (1000, '2/1/2014', '2/28/2014'),
    (1000, '3/1/2014', '3/31/2014'),
    (1001, '1/1/2014', '1/31/2014') -- patient 2
    declare @date date = '1/1/2014'
    while @date <= '12/31/2014' -- 1 year
    begin
    insert into calendar (calendar_date)
    values(@date)
    set @date = DATEADD(dd, 1, @date)
    end
    select distinct p.id as patient, MONTH(c.calendar_date) AllMonths, YEAR(calendar_date) Allyears
    from patient as p right outer join calendar as c
    on c.calendar_date between p.effective_date and p.end_date
    ;with
    AllMonthYears as (select MONTH(calendar_date) Months, YEAR(calendar_date) Years from calendar)
    , AllPatients as (select distinct id as PatientId from patient)
    , AllPatientsWithMonthsYears as (select distinct * from AllMonthYears cross join AllPatients)
    select *
    from AllPatientsWithMonthsYears as apmy
    left outer join patient as p
    on apmy.Months = month(p.effective_date)
    and apmy.Years = year(p.effective_date)
    and apmy.PatientId = p.id
    order by apmy.PatientId, apmy.Years, apmy.Months

  • How can I tell users what the password complexity requirements are in OWA 2013?

    I'm writing this question so I can also provide the answer, because I couldn't find an answer online anywhere.
    The goal was to edit the password change page to put the complexity requirements on it so users know what's expected when they change their password in OWA (Exchange 2013).  I wanted to customize a web page somewhere to tell users what characters they
    needed to put in their password to be accepted when we have the complexity requirement turned on in the default domain policy.  (The extra words are to help search engines find this when people are searching for a solution to this.)
    All I could find were outdated instructions for 2010 and 2007, which did not work.  
    Answer forthcoming...

    The answer I came up with was to edit the "ChangePassword.ascx" file found at C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\ecp\PersonalSettings as below:
    First, find:
             <div>
                <asp:Label ID="lblPersonalSettingPasswordAfterChange" Text="<%$ Strings:OwaOption.PersonalSettingPasswordAfterChange %>" runat="server"  umc-slabdescription="true"
    aria-hidden="false" cssclass="dscrptn"></asp:Label>
            </div>
    Then, right after that, add your verbage within another DIV tag as such (you can even use an unordered/bulleted list):
    <div>
    PASSWORD REQUIREMENTS<br />
    Your new password must:
    <ul><li>be at least 8 characters long,</li>
    <li>contain at least one letter (a,b,C,D), </li>
    <li>contain at least one number (1,2,3,4), </li>
    <li>contain at least one symbol (.*#$@&),</li>
    <li>NOT contain your name, </li>
    <li>and not have been used before.</li></ul>
    <br />
    </div>
    This works if you're choosing to go change your password, but I still need to see if it works when a change is required at first login - that feature is broken again but I'm hoping CU3 will fix it.  Seems MS breaks that feature with every other update.

  • Web service call problem with complex types input

    We are trying to call a web service and pass as parameter
    some complex types. When invoking the web service everything works
    well on flex side, but on the server side the input parameters we
    get from flex are not correct - complex type is removed and the
    elements of the complex type are sent. See the example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:WebService id="ws_id" wsdl="link" useProxy="false"
    fault="wsFault(event)">
    <mx:operation id="op_id" name="op"
    result="wsResult(event)">
    <mx:request>
    <parameters>
    <parameter1>{value1}</parameter1>
    <parameter2>{value2}</parameter2>
    <parameter3>{value3}</parameter3>
    <parameter4>
    <parameter4_1>{value4_1}</parameter4_1>
    <parameter4_2>{value4_2}</parameter4_2>
    <parameter4_3>{value4_3}</parameter4_3>
    </parameter4>
    </parameters>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    </mx:Application>
    on server side we get this:
    <parameters>
    <parameter1>{value1}</parameter1>
    <parameter2>{value2}</parameter2>
    <parameter3>{value3}</parameter3>
    <parameter4_1>{value4_1}</parameter4_1>
    <parameter4_2>{value4_2}</parameter4_2>
    <parameter4_3>{value4_3}</parameter4_3>
    </parameters>
    Instead of :
    <parameters>
    <parameter1>{value1}</parameter1>
    <parameter2>{value2}</parameter2>
    <parameter3>{value3}</parameter3>
    <parameter4>
    <parameter4_1>{value4_1}</parameter4_1>
    <parameter4_2>{value4_2}</parameter4_2>
    <parameter4_3>{value4_3}</parameter4_3>
    </parameter4>
    </parameters>
    Any idea how is it possible to send complex type as web
    service input from flex ?

    Hi,
    I also have similar type of problem where I need to invoke a Web service with Complex input parameters.
    I followed Susan's blog but I stuck at a point where methos getItem is created.
    Can anyone tell me how to get that method for my requirement.
    If possible can you guys share your solutions here.
    Thanks in advance.

  • URGENT Problem with Greek Character from an Oracle database

    Hello, I am having a serious and urgent problem with the character settings of an oracle database (8.1.7). The database is sitting in a solaris unix server and when we run the env command we have the following in the NLS_LANG parameter: AMERICAN_AMERICA.WE8ISO8859P1 (I do not know if this is helpful). When I retrieve data from oracle database (through a VB.NET 2005 program)to a dataset I use a special font in order to see the greek characters (HELLASARIAL). But when I am trying to save these data to a TXT file the greek characters are like Chinese to us. I tried several encodings (System.Text.Encoding.GetEncoding(869)) but without success. Can someone tell me how to convert the oracle greek characters during the selection or during the saving to the TXT file?
    Please respond as fast as you can.
    Thanks in advance

    Here is the answer of the microsoft:
    I have the information that you have a VB.Net 2005 application connected to an Oracle database 8.1.7.4 hosted on a UNIX server.
    This database has the CharacterSet WE8ISO8859P1.
    When retrieving Greek characters from this database in the application, you cannot see them.
    Could you please send me a screenshot of these characters in the .Net application?
    Are they displayed as gibberish, or as inverted questions marks (?)?
    I already had similar cases with Hebrew characters hosted on an Oracle database.
    These characters were displayed as questions marks on the client side.
    This is due to the fact that System.Data.OracleClient is using the Server CharacterSet to display the characters.
    If your Greek characters are not stored in the WE8ISO8859P1 characterset, then they won’t display correctly on the client-side.
    This is different from OLEDB where you could interact on client side by modifying the NLS_LANG parameter in the registry HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0.
    The client NLS_LANG and the server CharacterSet had to match in order to correctly display the data, and avoid SQL*NET conversion.
    So there are two solutions to your case:
    - The first one is to create a new database using the P8 characterset. The Oracle .Net managed provider will so be able to use it and display the characters correctly.
    - The second one is to use the OLEDB.Net managed provider, and then use OLEDB for Oracle provider. OLEDB will take care of the client NLS_LANG registry parameter.
    Would it be possible to test your application against an Oracle database with WE8ISO8859P8 characterset?
    Would it be possible to test it with the OLEDB .Net managed provider, and after checking the NLS_LANG client registry parameter?

  • WCF Service as Data source in SSRS report with Complex Types

    Hi All,
    I have a requirement where we are suppose to use WCF service as datasource in SSRS. I was able to do that when the WCF response type was simple.
    Now the requirement have changed where the response type is complex . I couldn't figure out a way of accessing WCF with complex types.
    Any pointer will be of great help as I couldn't find any related articles for this kind of scenario.
    Raj

    Hi Raj,
    WCF uses a serialization engine called the Data Contract Serializer by default to serialize and deserialize data (convert it to and from XML). All .NET Framework primitive types, such as integers and strings, as well as certain types
    treated as primitives, such as DateTime and XmlElement,
    can be serialized with no other preparation and are considered as having default data contracts. Many .NET Framework types also have existing data contracts. For a full list of serializable types, see Types
    Supported by the Data Contract Serializer.
    New complex types that you create must have a data contract defined
    for them to be serializable. You can explicitly create a data contract by using DataContractAttribute and DataMemberAttribute attributes.
    This is normally done by applying the DataContractAttribute attribute
    to the type.
    You can refer to :
    http://msdn.microsoft.com/en-us/library/ms733811(v=vs.110).aspxhttp://www.codeproject.com/Articles/738844/Using-WCF-Data-Contract-Known-Types-by-Example
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Database Adapter: cannot access table with complex record type as columns

    Hi all,
    I cannot perform any operations on a table that has columns with complex record type.
    I have created a table to store purchase order details.
    Sample script:
    CREATE type XX_CUST_INFO_TYP as object
    ssn VARCHAR2(20),
    rating NUMBER(15)
    CREATE type XX_ITEM_TYP as object
    item_name VARCHAR2(20),
    unit_price NUMBER(15),
    quantity NUMBER(15)
    CREATE table XX_PORDER (cust XX_CUST_INFO_TYP, porder XX_ITEM_TYP);
    When i try to access the table X_PORDER in jdev through a database Adapter, i receive the error as
    "some tables contains columns that are not recognized by the database adpter"
    1.) so in this case, how to include such tables that have complex types?
    Also, check out this scenario also..
    1. add a table through a database adapter
    2. drop the table in backend
    3. i can still see the table and its structure in the database adapter wizard even after restarting Jdeveloper.. How is it possible?
    These are some really interesting scenarios to experiment. Please suggest your ideas on this..
    Thanks All!

    Hi Hem,
    for a select you could select against a view. And for inserts you could create a stored procedure. They support complex types since 10.1.2. Complex types support in tables/views was added for 11 (next major release).
    You might be able to use PureSQL as a workaround too, i.e.
    insert into XX_PORDER values (XX_CUST_INFO_TYP(?,?), XX_ITEM_TYP(?, ?, ?))
    As for your other problem, in 10.1.2/10.1.3 the DBAdapter wizard sits on top of the Jdev Offline Tables and TopLink Mapping Workbench components. When you remove a table in the wizard it won't delete the Offline DB component. It was added by the wizard, but afterwards it is public to the entire Jdev project. You must remove it from Jdev yourself. This has been improved for the next major release too, no artifacts from underlying components are created.
    To remove it select:
    Offline DB Objects -> <schema> -> <table> and try File.. Erase From Disk.
    Thanks
    Steve

  • Problem with Complex Web Dynpro Webservice Model

    Hi all,
    in my Web Dynpro application I am using a Webservice which seems to be too complex for the Web Dynpro Model. I think I am getting the same kind of problems like:
    HELP for WebDynpro web service model with complex structure
    But I dont have a complex structure in my input parameters (like in this thread), <b>I have a complex structure in my output.</b>
    This is the structure of my WSDL. I have a customer (KUNDE) which has an array of contracts (Vertrag).
    <wsdl:types>
      <schema targetNamespace="urn:Rentenkonto" xmlns="http://www.w3.org/2001/XMLSchema">
       <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
       <complexType name="Vertrag">
        <sequence>
         <element name="aufschubfrist" type="xsd:int"/>
         <element name="brutto" type="xsd:double"/>
         <element name="eintrittsalter" type="xsd:int"/>
         <element name="endalter" type="xsd:int"/>
         <element name="laufzeit" type="xsd:int"/>
         <element name="renteKapital" type="xsd:double"/>
         <element name="rentenbeginn" nillable="true" type="xsd:dateTime"/>
         <element name="rentenbeginnAlter" type="xsd:int"/>
         <element name="versichererName" nillable="true" type="xsd:string"/>
         <element name="vertragsablauf" nillable="true" type="xsd:dateTime"/>
         <element name="vertragsartTx" nillable="true" type="xsd:string"/>
         <element name="vertragsbeginn" nillable="true" type="xsd:dateTime"/>
         <element name="vertragsnummer" nillable="true" type="xsd:string"/>
         <element name="zahlungsweise" nillable="true" type="xsd:string"/>
        </sequence>
       </complexType>
       <complexType name="ArrayOfVertrag">
        <complexContent>
         <restriction base="soapenc:Array">
          <attribute ref="soapenc:arrayType" wsdl:arrayType="impl:Vertrag[]"/>
         </restriction>
        </complexContent>
       </complexType>
       <complexType name="Kunde">
        <sequence>
         <element name="geburtsdatum" nillable="true" type="xsd:dateTime"/>
         <element name="kundenkennzeichen" nillable="true" type="xsd:string"/>
         <element name="pkNummer" nillable="true" type="xsd:string"/>
         <element name="vertraegeDcKapital" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegeDcRente" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegeDv" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegePk" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegeRdv" nillable="true" type="impl:ArrayOfVertrag"/>
        </sequence>
       </complexType>
      </schema>
    </wsdl:types>
    When I execute the Webservice basically I get an empty response. I think this is because the WSModel isnt fully mapped to the WS proxy. This should be done via coding.
    Can someone give me some hints on this?
    Kind regards
    Christoph

    Hi Christoph,
    First test the webservice itself. Maybe it is required to give some input parameter in the request and then get some output parameters in the Response. But therefore you should test the webservice yourself and take a look.
    Give more detail about ur case.
    Greetings, Sandhya

  • Variables selection with Text

    Hello Gurus,
    I have one requirement with variables. Now i have created one variable with Duns Number,in selections i hae to select only number,but my requirement i want to select with duns number text in the variablide me solution.
    Please anyone provide me solution.
    Thanks In Advance.
    Regards,
    Muddu Reddy.

    Hello dinakar,
    My requirement is not displaying the report. Here i want  to select Text insted of Key in the variable selections.i have checked masterdata it has both data text and key it is showing in reports also.
    Variable selection I want to select only Text...Suppose Duns:-300086--Text-Dell COmpany..While running the report it will ask selections right there i want to give  Dell Company and execute the report.
    Thanks,
    Raju.

  • Little help with complex XML data as data provider for chart and adg

    Hi all,
    I've been trying to think through a problem and Im hoping for
    a little help. Here's the scenario:
    I have complex nested XML data that is wrapped by subsequent
    groupings for efficiency, but I need to determine if each inner
    item belongs in the data collection for view in a data grid and
    charts.
    I've posted an example at the bottom.
    So the goal here is to first be able to select a single
    inspector and then chart out their reports. I can get the data to
    filter from the XMLListCollection using a filter on the first layer
    (ie the name of the inspector) but then can't get a filter to go
    deeper into the structure in order to determine if the individual
    item should be contained inside the collection. In other words, I
    want to filter by inspector, then time and then tag name in order
    to be able to use this data as the basis for individual series
    inside my advanced data grid and column chart.
    I've made it work with creating a new collection and then
    looping through each time there is a change to the original
    collection and updating the new collection, but that just feels so
    bloated and inefficient. The user is going to have some buttons to
    allow them to change their view. I'm wondering if there is a
    cleaner way to approach this? I even tried chaining filter
    functions together, but that didn't work cause the collection is
    reset whenever the .refresh() is called.
    If anyone has experience in efficiently dealing with complex
    XML for charting purposes and tabular display purposes, I would
    greatly appreciate your assistance. I know I can get this to work
    with a bunch of overhead, but I'm seeking something elegant.
    Thank you.

    Hi,
    Please use the code similar to below:
    SELECT * FROM DO_NOT_LOAD INTO TABLE IT_DO_NOT_LOAD.
    SORT IT_DO_NOT_LOAD by WBS_Key.
        IF SOURCE_PACKAGE IS NOT INITIAL.
          IT_SOURCE_PACKAGE[] = SOURCE_PACKAGE[].
    LOOP AT IT_SOURCE_PACKAGE INTO WA_SOURCE_PACKAGE.
            V_SYTABIX = SY-TABIX.
            READ TABLE IT_DO_NOT_LOAD into WA_DO_NOT_LOAD
            WITH KEY WBS_Key = WA_SOURCE_PACKAGE-WBS_Key
            BINARY SEARCH.
            IF SY-SUBRC = 0.
              IF ( WA_DO_NOT_LOAD-WBS_EXT = 'A' or WA_DO_NOT_LOAD-WBS_EXT = 'B' )     
              DELETE IT_SOURCE_PACKAGE INDEX V_SYTABIX.
            ENDIF.
    ENDIF.
          ENDLOOP.
          SOURCE_PACKAGE[] = IT_SOURCE_PACKAGE[].
        ENDIF.
    -Vikram

  • "The selected package file requires an InDesign document that cannot be found."

    Hello,
    I often get this error message "The selected packaged file requires an InDesign document that cannot be found.  How do you want to continue?" when opening in InDesign CS5.5
    My options are "Browse to locate this document." and "Save the contents of the package to disk."
    When I selected "Browse to locate this document." and I located the appropriate InDesign file, it prompts me to browse for the file again.  Its a never ended cycle.
    I'm not sure how to solve this problem.  I'm not familiar with the procedure if I "save the contents of the package to disk."  Can someone help me out with this?
    Thanks!

    Well, there’s your answer. Pretty simple…don’t do that.
    But if the damage has been done, you can change the extension of the idap file to zip and unzip the contents. You’ll find all the updated InCopy stories there.
    Overwrite the ones on your harddrive and you should be good to go.
    Bob

  • Having trouble converting array to spreadsheet string, storing the file and coverting back to array with complex numbers

    I am working with a network analyzer. I have arrays made of 5 columns the first consisting of an integer and the next four consisting of complex numbers. I am converting the array into a spreadsheet string and then saving the file using the write characters to a file VI. That seems to work well as when I open the file in Excel all the data is there. However when I try to reverse the process, open file and convert back to array, I loose some of the data. Specifically the imaginary parts of my complex numbers are all going to zero. I have narrowed down the problem to be in the conversion from spreadsheet string to array and vice versa. I
    think the problem may be with the 'format' input to the VI. I do not have an adequate resource for this so I am not sure what to put in to accomplish my task. Any takers?

    Hi Biz
    I don't think there is a direct way of converting a complex number to a
    string, so when you convert the array to a spreadsheet string, the
    numbers would be converted to real data.
    However, you could try separating the real and imaginary parts using the
    "Numeric: Complex to Re/Im" function, and then store these - either in
    separate files or in adjacent columns/rows in the same file. Then, when
    you read in the data again, use the "Numeric: Re/Im to Complex" function
    to put the two "halves" together.
    If you actually want Excel to interpret the numbers as imaginary, then
    you'll probably want to create a string for each complex number of the
    form "Re + Im*i" (after separating the Re and Im parts), by using
    "String:Format into String" with 2 numeric inputs and the format string
    "%f+%fi".
    Reading the data back into Labview then would require splitting the
    string into the 2 pieces by using "Stringcan from String" with 2
    numeric outputs (smae precision as original numbers specified by the 2
    Default Value inputs) and the same format string "%f+%fi", and then using
    the above-mentioned "Numeric: Re/Im to Complex" function. It worked for
    me, so if you can't follow what I am describing, send me an email and I
    can email you what I did (LV 5.1.1).
    Paul
    Biz wrote:
    > Having trouble converting array to spreadsheet string, storing the
    > file and coverting back to array with complex numbers
    >
    > I am working with a network analyzer. I have arrays made of 5 columns
    > the first consisting of an integer and the next four consisting of
    > complex numbers. I am converting the array into a spreadsheet string
    > and then saving the file using the write characters to a file VI. That
    > seems to work well as when I open the file in Excel all the data is
    > there. However when I try to reverse the process, open file and
    > convert back to array, I loose some of the data. Specifically the
    > imaginary parts of my complex numbers are all going to zero. I have
    > narrowed down the problem to be in the conversion from spreadsheet
    > string to array and vice versa. I think the problem may be with the
    > 'format' input to the VI. I do not have an adequate resource for this
    > so I am not sure what to put in to accomplish my task. Any takers?
    Research Assistant
    School of Physiotherapy, Curtin University of Technology
    Selby Street, Shenton Park, Western Australia, Australia. 6008
    email: [email protected]
    Tel. +61 8 9266 4657 Fax. +61 8 9266 3699
    "Everyone who calls on the name of the Lord will be saved." Romans 10:12
    "For all have sinned and fall short of the glory of God, and are
    justified freely by his grace through the redemption that came by Christ
    Jesus." Romans 3:23-4

  • Urgent help with If statement please!

    HI Everyone
    Was wondering if anyone can tell me why flash seems to be
    ignoring my If Statements, every time I try to use one it ignores
    the condition and just actions the command. Its driving me crazy.
    I'm sure I must be doing something wrong I just can't work it out.
    I've put;
    on (release) {
    if ((_root.eyeshadow = "Pink") && (_root.lipy =
    "Pink")) {
    _root.correct._alpha =100;
    It seems to just action the _root.correct._alpha = 100;
    even when a different colour is selected.
    I was wondering can flash read a variable from another
    script, because if not it will not know what eyeshadow and lipy
    are. I dont get any error messages though.
    Please help somebody!
    Thank you,
    Stacy.x.

    Thank you that appears to have made the if statement work,
    but now i have another problem.
    It doesn't seem to acknowledge wether these selections have
    been selected.
    I have put in the code for the pink eyeshadow;
    on (release) {
    _root.eyeshadow2._alpha =0;
    _root.eyeshadow1._alpha = 100;
    eyeshadow == "Pink";
    the same code is in all the other selections, with the name
    variations.
    any ideas?
    .x.

  • Problem with gross requirement planning pir is not getting reduced

    Dear Gurus
    I am trying to use strategy 11 for a particular finished product.(having bom and routing)
    In the material master I have set mrp type pd lot size ex .strategy group 11, mixed mrp 2,item category group norm, availabilty checking group 02 .
    Then I made manually pir for that material in md61 with  BSF requirement type .
    Then ran the mrp for that material in md02.
    Planned orders came .(In md04 screen that gross requirement line text also came as usual )Converted them to prodn order and then did the gr in mb31 with 101 mvt type. After doing the gr the pir should get reduced in md04 screen which is not happening . Where I am going wrong
    Regards
    Sandip Sarkar

    Dear Sandip Sarkar,
                                      It usually happens run MRP and ckeck.
    Strategy 11 in summary :-
    1. Sales Order creation - no impact.
    2. Goods Receipt - minus the quantity for the oldest planned independent in demand management.
       For e.g. if PIR is 100 and delivery 90, PIR becomes 10 (withdrawal 90).
    3. Delivery - no impact as delivery is issue from sales order.
    This strategy is particularly useful if you need to produce, regardless of whether you have stock or not. For instance, steel or cement producers might want to use this strategy because they cannot shut down production; a blast furnace or a cement factory must continue to produce, even if this means having to produce to stock.
    You need to maintain the following master data for the finished product:
    Maintain strategy group 11 on the MRP screen.
    Set the Mixed MRP indicator to 2 on the MRP screen.
    Maintain the item category group (for example, NORM) on the Sales Organization screen.
    Maintain the Availability check field so that you perform an availability check without the replenishment lead time (checking group 02 in the standard system).
    Strategy                                                        10                                           
    Stock is taken into account                           Yes                                          
    reduction of planned independent
    requirements takes place during u2026   u2026 goods issue for                                                                                delivery                                  order (discrete production),                                                                               
    11
    Stock is taken into account                          No
    Reduction of planned independent
    requirements takes place during u2026            ... goods receipt for a production
                                                                            order (discrete production),                                                                               
    for a planned order (repetitive
                                                                             manufacturing), or for a purchase
                                                                             order (trading goods).
    Edited by: Vachanala Rajasekhar on May 7, 2010 11:55 AM

Maybe you are looking for

  • Help with Script AS 2.0

    I have this slideshow I've done and I'm wondering why it's stopping at the last image. I need it to continuely play in a loop. Any help? holder_mc._alpha = 1; whichPic = 1; _root.onEnterFrame = function() { if (holder_mc._alpha>2 && fadeOut) { holder

  • How to create a database on linux

    Good day friends Oracle forum, I started with Linux and have installed on a linux server with the Oracle 10g installation wizard, now my question is how I believe the database in windows did so through the wizard and configure all linux data but do n

  • OS X Server 10.4.11 to 10.5 - Upgraging vs Migration

    Hi, I am passing from 10.4.11 to 10.5. I have about 1000 accounts. Which one will give me the best results and a minimum of issues: upgrading or migrating? Thanks

  • Vms virtual machine not active

    Hi when iam trying to activate vmc sm52 vmc is not active vmc status could not be changed Server   crmserver_CRM_78   Date: 25.11.2011, Time: 22:32:04  VMC is not loaded    Shared GC   Inactive   Shared Pool   128 MB   Global Classes   0 Bytes / 0 % 

  • More weird display problems

    Hi! Booting up recently everything looked fine for the first few seconds, but as the login window was about to show up, I only got a few colored pixels outlining the Apple logo, and sometimes a large white box where the cursor should be. At the same