Construction Issues

Hi All,
My client is an Ifrastructure Developer, the issue here is as follows:
We treat construction of a building (with 10 appartments) as a project, this project has got 11 WBS at level 1. The first Level 1 WBS (lets call it Construction) will have sub WBS which will cover the cost for all the project, and the other 10 WBS elements represent the 10 appartments.
Every month end the cost on the Construction WBS will be settled proportionately to all 10 WBS for appartments.
Any Appartment when booked for sales, the sales order is created with acct assignment of that respective WBS. Everything works properly after this - RA / Settlement etc.
Issue is when out of these 10 appartments, 2 are not sold but are completed - customer wants to place them in Inventory - ie quantity and value.
Is it possible or is there any work around ?? its MTS + MTO scenario without BOM.
Thanks in Advance
Sandeep GHAG

Example:
Construction    L1
     Land Acquisition           L2
     General Development    L2
     Sub-Structure               L2
     Super-Structure            L2
     Water Connections       L2
     Electricity Connections L2
     Interiors                       L2
Apartment 01  L1
Apartment 02  L1
Apartment 03  L1
Apartment 04  L1
Now the WBS - Construction will incur actual costs in terms of labor, material etc (from the Level 2 WBS like Land Acquisition / General Development etc) - this cost will be settled periodically to every Apartement WBS proportionately.
Only the WBS for Apartments will be Billing Elements and Sales order for every Apartment will be created with Acct Assignment for individual WBS Apartment. RA will be run for every Apartment WBS that will be sold out.
Now the issue is can we show the Apartment (Finished Good) as inventory incase it is not sold ??
Regards
Sandeep GHAG
Edited by: Sandeep Ghag on May 26, 2009 2:05 PM

Similar Messages

  • OVM Manager cluster construct issue

    Hi Guys,
    I'm trying to build a demo insfrastructure for Oracle VM for SPARC with Oracle VM Manager for managment. Here is an overview of my infrastructure:
    - 2 T5220 with same configuration (2 x 32 core CPU, 32 Go RAM)
    - 1 ESX VM hosting Oracle VM Manager with Oracle Linux 5 as OS.
    ## For OVM Server for SPARC ##
    ldm -V
    Logical Domains Manager (v 3.1.1.0.5)
            Hypervisor control protocol v 1.7
            Using Hypervisor MD v 1.4
    System PROM:
            Hypervisor      v. 1.10.7.      @(#)Hypervisor 1.10.7.f 2013/08/09 19:14\015
            OpenBoot        v. 4.33.6.      @(#)OpenBoot 4.33.6.e 2014/01/14 15:19
    ## For OVM Manager ##
    Version: 3.3.1.776
    ovs-agent for SPARC version: 3.3.1-b776
    I try to built a HA environment using ovm manager. Every thing is good until I try to add server to server pool. Add the first server is OK, but it stays on error state because of a cluster construct error.
    Job Internal Error (Operation)com.oracle.ovm.mgr.api.exception.FailedOperationException: OVMAPI_4010E Attempt to send command: create_cluster to server: ovmsrv01 failed. OVMAPI_4004E Sync command failed on server: 192.168.25.250. Command: create_cluster, Server error: org.apache.xmlrpc.XmlRpcException: :(22, 'Invalid argument') 
    Caused by: com.oracle.ovm.mgr.api.exception.ServerOperationException: OVMAPI_4004E Sync command failed on server: 192.168.25.250. Command: create_cluster, Server error: org.apache.xmlrpc.XmlRpcException: :(22, 'Invalid argument') 
    The second server can't be add to the pool until the first one issue is fixed! I'm confuse. Have I use good version for each package? I'm looking for a compatibility matrix between Manager, osv agent and ovm server for sparc, If any one can redirect me to a relevant web page ou doc!!!
    Somebody can point me to a solution?
    Thank a lot!

    HI All,
    Here is the complete fail message when trying to add a node to server's pool:
    10:36:07,369: Starting operation 'Server Cluster Construct' on object '[ServerDbImpl] e7:e6:aa:63:ee:85:c2:3d:d6:80:b3:33:28:aa:1a:d3 (ovmsrv02)'
    Job Internal Error (Operation)com.oracle.ovm.mgr.api.exception.FailedOperationException: OVMAPI_4010E Attempt to send command: create_cluster to server: ovmsrv02 failed. OVMAPI_4004E Sync command failed on server: 192.168.25.251. Command: create_cluster,
    Server error: org.apache.xmlrpc.XmlRpcException: :(22, 'Invalid argument')

  • Asset Under Construction Issue

    Hi,
    I am facing problems while settling of Auc.
    I created one asset with asset class of AuC. In Auc master i have given the Capex order type's internal order. After i posted few entries for Order. while entering of fi entries to order i didn't selected any asset number just i posted the fi entries with 40 and 50 posting key.
    After i settled the order in KO88. It was settled.
    After i run AIBU t code then system is saying no line items existed for order.
    Without line items how can i settle the order.
    Please explain me from start to end of Auc Settlement Process and Converting to asset of Auc. It is very very very urgent for me.
    Sateesh

    Hi
    This works like this:
    First we create Asset class for asset under construction with investment measure.
    Assign GL accounts to that asset class
    Create one asset master under that asset class
    create secondary cost element with catagory external settlement.
    create internal order type and select settlement with assets are optional.
    create internal order
    post entries to internal order
    that particular internao order will capture the total cost for particual asset under construction.
    once you finished that construction you will settle to one asset or multiple assets using external secondary cost element in assessment cycle.

  • Query construction issues...

    So what i'm trying to do is output a single row for each person_id. Additionally, if a person_id has a type_id of 1 then i would like a column to output 'YES' otherwise 'NO' and the same goes for type_id of 0.
    Oracle version: 10.2G
    Content of TableX
            PERSON_ID     NAME     TYPE_ID
         200839             Bob                0
         200839             Bob                1
         200839              Bob     
         200874            Chris               1
         200811             Mike               1
         200893             James               0
         200877             Nick     
         200877             Nick              1
         200001             Terry     
    Desired Output:
            PERSON_ID     NAME     ID_0     ID_1
         200839             Bob            YES     YES
         200874             Chris            NO     YES
         200811             Mike            NO     YES
         200893             James              YES     NO
         200877              Nick           NO     YES
         200001             Terry             NO     NO
    Current Query
       with xtable as
       (select 200839 person_id, 'Bob' name, 0 type_id from dual union all
         select 200839, 'Bob',1 from dual union all
         select 200839, 'Bob',null from dual union all
          select 200874, 'Chris',1 from dual union all
           select 200811, 'Mike',1 from dual union all
            select 200893, 'James',0 from dual union all
            select 200877, 'Nick',null from dual union all
              select 200877, 'Nick',1 from dual union all
             select 200001, 'Terry',null from dual)
       select
             person_id,
             name,
             case
                 when type_id = 0  then
                      'YES'
                  else
                      'NO'
             end as id_0,
             case
                 when type_id = 1 then
                      'YES'
                 else
                      'NO'
             end as id_1
       from
       select person_id,
              name,
              type_id,
              count(*) over (partition by person_id) as total
        from   xtable
        )I'm pretty much stuck at the query above.
    Edited by: user652714 on May 5, 2010 12:31 PM

    Once you use the case/decode, you get one row for each Id, name and type combination. You'll then need to group them by ID, Name to get the data output as you need.
      1  with xtable as
      2     (select 200839 person_id, 'Bob' name, 0 type_id from dual union all
      3       select 200839, 'Bob',1 from dual union all
      4       select 200839, 'Bob',null from dual union all
      5        select 200874, 'Chris',1 from dual union all
      6         select 200811, 'Mike',1 from dual union all
      7          select 200893, 'James',0 from dual union all
      8          select 200877, 'Nick',null from dual union all
      9            select 200877, 'Nick',1 from dual union all
    10           select 200001, 'Terry',null from dual)
    11  select person_id,
    12         name,
    13         max(decode(type_id,0,'YES')) T0,
    14         max(decode(type_id,1,'YES')) T1
    15    from xtable
    16*   group by person_id, name
    sql> /
    PERSON_ID NAME  T0  T1
        200874 Chris     YES
        200877 Nick      YES
        200001 Terry
        200893 James YES
        200839 Bob   YES YES
        200811 Mike      YESUsing NVL.... to the above query, you can get it in the required format that you need. Of course, you can use case instead of decode too.
      1  with xtable as
      2     (select 200839 person_id, 'Bob' name, 0 type_id from dual union all
      3       select 200839, 'Bob',1 from dual union all
      4       select 200839, 'Bob',null from dual union all
      5        select 200874, 'Chris',1 from dual union all
      6         select 200811, 'Mike',1 from dual union all
      7          select 200893, 'James',0 from dual union all
      8          select 200877, 'Nick',null from dual union all
      9            select 200877, 'Nick',1 from dual union all
    10           select 200001, 'Terry',null from dual)
    11  select person_id,
    12         name,
    13         nvl(max(decode(type_id,0,'YES')),'NO') T0,
    14         nvl(max(decode(type_id,1,'YES')),'NO') T1
    15    from xtable
    16*   group by person_id, name
    sql> /
    PERSON_ID NAME  T0  T1
        200874 Chris NO  YES
        200877 Nick  NO  YES
        200001 Terry NO  NO
        200893 James YES NO
        200839 Bob   YES YES
        200811 Mike  NO  YES

  • Query construction issue...

    I have a parameter in my proc called xParam and I'm trying to incorporate it into one of my cursors. Here is what my current cursor looks like:
    select *
    from tablex
    where id in (1,2) and xParam = 'ALL' or
              id = 1 and xParam = 'FIRST' or
              id = 2 and xParam = 'SECOND'
    and     com_sec = 3So basically what i'm trying to do is have the cursor include all rows from tablex where id's are 1 and 2 if the value passed into xParam is 'ALL', include all rows where id is equal to 1 when the value passed into xParam is 'FIRST', etc.
    Oracle: 10g
    Here's some sample data to give a better idea:
    --tablex
    ID    COM_SEC   FNAME   LNAME
    1            3         Bob       Johnson
    2           3          John       Smith
    1            2         Chris       Carter
    1           2          Bill          Curtis
    2           3         David        Lee
    2           2         Brett        NicksSo if the value passed for xParam is 'ALL' I want to include the entire data from the table, if the value passed for the parameter is 'FIRST' i want the following result set:
    ID    COM_SEC   FNAME   LNAME
    1            3         Bob       Johnson
    --Result set if xParam is 'SECOND'
    2           3          John       Smith
    2           3         David        LeeSo my question is my query built correctly to accomplish this? Will the 'or' statements in the cursor work the way that i need them to (aka to get the result set desired). The reason I ask is b/c the or statements don't seem to be working correct in my actual proc the way i want them to.
    Edited by: user652714 on Dec 29, 2009 9:15 AM

    user652714 wrote:
    I have a parameter in my proc called xParam and I'm trying to incorporate it into one of my cursors. Here is what my current cursor looks like:Discover parenthesis. They work same way like in math ;)
    select  *
      from  tablex
      where xParam = 'ALL'
         or (id = 1 and xParam = 'FIRST')
         or (id = 2 and xParam = 'SECOND')
    /Or use CASE:
    select  *
      from  tablex
      where id = case xParam
                   when 'ALL' then id
                   when 'FIRST' then 1
                   when 'SECOND' then 2
                 end
    /SY.
    Edited by: Solomon Yakobson on Dec 29, 2009 9:19 AM

  • JDev 11g - gui construction issue (2nd posting)

    Hi all,
    JDeveloper 11g. I have a problem which appears to be occurring when I put
    multiple components onto a centre panel on a Frame.
    I can design the Frame fine using the gui interface, but when I switch
    to the Source view and then back to the Design view, the gui
    components disappear.
    It appears to be related to the hierarchy between the Frame, the Border Layout,
    the PanelCenter and the components on the PanelCenter.
    It goes UI--->this(BorderLayout)-->PanelCenter--->My various componets,
    However, it appears that this is shifted when I place more than about 10 components
    on the Panel on the Frame.
    The Frame is then blank - the information is still there, but the PanelCenter appears
    to have shifted up in the hierarchy.
    Can anybody offer an explanation of what's going on here?
    TIA.
    Paul...

    >
    Following a post to my first thread, here is additional info.
    I'm designing an ordinary gui application with lots of visual components - text
    fields, labels, comboboxes &c.By ordinary qui app, I mean a "windows"-type app (non-web, nothing fancy, using
    straight out the box Swing gui components (textField, Label, comboBox &c.).
    I appear to be able design a panel separately and place it on a form. Is there
    some sort of limit on the no. of components on a JFrame, after which the IDE
    starts trying to be "clever" and separating out the bits?
    Any input appreciated.
    Paul...
    Paul...

  • Not able to pass cyclic XML schema type to a webservice method

    I have a webservice method called getData(GetDataDocument
    gDoc).
    I constructed a request with object (which exactly satisfy
    the XML schema def) to call up the getData(). [From my java client
    also I did the same; but the java classes have been generated using
    apache's xmlBeans; this works fine with the same kind of request].
    But the soap request constructed from flex does not get
    generated with all the values that I set in the request object.
    On further observation, I found out that if the schema
    involves cyclic elements, the soap request is not getting
    constructed as desired.
    My schema def:
    <complexType name="PredicateBagType">
    <sequence>
    <choice>
    <element maxOccurs="unbounded" minOccurs="0"
    name="PredicateBag" type="tns:PredicateBagType"/>
    <element maxOccurs="unbounded" minOccurs="0"
    name="BinaryPredicate" type="tns:BinaryPredicateType"/>
    <element maxOccurs="unbounded" minOccurs="0"
    name="UnaryPredicate" type="tns:UnaryPredicateType"/>
    </choice>
    </sequence>
    <attribute name="contextNode"
    type="tns:contextNodeIDType"/>
    <attribute default="false" name="negate"
    type="boolean"/>
    <attribute name="type"
    type="tns:PredicateBagTypeType"/>
    </complexType>
    Note that the PredicateBagType may contain another
    PredicateBagType.
    I have constructed my request with objects in my flex
    application . Though I have set the BinaryPredicate object in my
    PredicateBag object, the soap request constructed looks like this
    which is not desired
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <tns:get_Data maxPrograms="0" personalInfoUse="false"
    xmlns:tns="urn:tva:transport:2005">
    <tns:QueryConstraints>
    <tns:PredicateBag contextNode="1" negate="false"
    type="AND"/>
    </tns:QueryConstraints>
    <tns:RequestedTables>
    <tns:Table type="ProgramInformationTable"/>
    </tns:RequestedTables>
    </tns:get_Data>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>.
    If I comment out the PredicateBagType choice in my xsd, the
    flex application constructs the soap request looks like this.
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="
    http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="
    http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <tns:get_Data maxPrograms="0" personalInfoUse="false"
    xmlns:tns="urn:tva:transport:2005">
    <tns:QueryConstraints>
    <tns:PredicateBag contextNode="ProgramInformation"
    negate="false" type="AND">
    <tns:BinaryPredicate fieldID="Genre" fieldValue="Fiction"
    test="contains"/>
    </tns:PredicateBag>
    </tns:QueryConstraints>
    <tns:RequestedTables>
    <tns:Table type="ProgramInformationTable"/>
    </tns:RequestedTables>
    </tns:get_Data>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    This request holds good. But I cannot comment out the
    PredicateBagType from my choice. Is this an issue with soap request
    construction issue in Flex..?

    Yes, <choice> is just "partial" supported in Flex 2 .
    read this
    link
    for partial and not supported tags
    Partially supported XML Schema structures
    The following XML Schema structures or structure attributes
    are only partially implemented in this release:
    <choice>
    <all>
    <union>
    regards
    kcell

  • The stock of component item cannot be negative

    I'm having this strange problem with a number of work orders.  I issue all of the components.  All of them.  If I bring up the issue window again, it's empty.  I try to release and it gives the above error.  I don't get it, if there wasn't enough stock of component items then why did it let me issue them in the first place?
    Thanks!

    "Inventory or stock is a moving concept."
    Yes, I understand that.  But when I do an "Issue Components", when I hit ok on that screen, from my understanding, the components required to create the item are removed from inventory at that moment.  If I dont' have enough, it tells me and won't let me complete the Issue.  But it did.  So at the moment I issued, all component items were in inventory and were removed.
    Now I go to Report Completion, seconds later and it tells me there's not enough of something in inventory.  How can that be when I just issued ALL of the components?  And if I try to re-issue, there's nothing there to issue.
    So maybe I have the above mis-understood.  I look at the order and there's an item in there, Base Qty is 8, required Qty is 16 (2 items are being constructed) Issued quantity is 0, Available is -636.  How do I re-issue these sub-components?  The issue screen is blank. 
    Why did it let me "Issue" these components if they weren't in stock in the first place?
    Thanks

  • Interactive template SWF

    Hello, I am currently creating a interactive feature for my
    company's website, where we would like our customers to come,
    select one of our marketing tools templates, and be able to
    customize their information using Input text boxes, colorpicker,
    font selection, and in the end, I would like it to either email the
    final product to our sales team. Basically I am looking for advice
    on how we can execute the final "checkout" procedure, as I have
    basically created the actual flash application. If anyone has any
    information on what, how, or where I can get some information on
    any of the information I might want to look at for creating this,
    it would be greatly appreciated.

    I'm glad this has come up in recent days; I was about to start a new thread on the same. A year ago, I built (at least within MY abilities) the mother of all Keynote presentations. It had Flash animations, audio, bulleted slides and many native Keynote transitions. Since then, I've turned to that file to jog my memory on construction issues when building new presentations.
    Last week, I opened the original file, and everything still worked fine. Today, I've discovered I can no longer load .swf files into Keynote, and the .swf files in my original presentation no longer work. Has Apple changed something in recent software update?
    It wouldn't be that big of an issue if I could get Flash to cooperate on QT exports. When I try to do so, it barks about requiring Flash 5, even if I've published the file as Flash 5.
    I'm at a loss here. What are some workarounds for this? Is Flash completely useless with Keynote?
    Steve, I agree with you; this IS playground BS. I never got the sense the two formats were competing.

  • NB100 - Keyboard Faulty?

    Hi, just got hold of a NB100 netbook, apart from the keyboard being TINY! am having problems getting key presses to register, if you stab the keys down they work, however normally touch typing intermittantly registers.
    over 4 people have tried in the office today and all have had the same issue with keys not registering. if you lightly press the key and feel when the button is depressed over and over it randomly misses!
    Ive search these forums and nobody has had any issues, could it just be faulty?
    Cheers

    mine has a keyboard problem too.
    Is there anyone that can respond from toshiba with a potential resolution to this issue?
    It is very frustrating. Can somebody identify whether its a machanical / construction issue of the keyboard or its a software issue?
    For your info. I upgraded the memory to 2G instead of 1 and have seen a big improvement on the typing characteristics. Also when I type on outlook or word I see degradation compared to internet explorer or notepad.
    These two facts make me believe its a driver/ load / memory issue and I hope that toshiba can respond to this.
    For those of you reading this thread i have missed 5 letters while I wrote this short note.
    Thanks

  • [Solved] Constructed a multi-purpose prompt but still have 1 issue

    I didn't think re-opening my old thread was a good idea so I'm starting  new one to address 1 issue I have left to conquer.
    With some help from JWR I have built my prompt and it works for users and root logged into a local machine.  Logging into a remote machine does change my user's prompt by appending :ssh: to it.  However, as the root user logged into a remote machine, which should have the  :ssh: appended to it, doesn't work.  By that I mean that root logged in to a remote system doesn't get the correct prompt.  I want the prompt to look like this for root:
    :root: ~ :ssh:
    Instead I get this prompt which lacks the word "root" in it:
    : ~ ::ssh:
    This is my prompt script so far and I'd really appreciate some help to nail down this glitch. 
    The script for root and user are identical apart from having a different prompt uncommented.
    ### Other prompt styles to use later
    This is root's current script:
    ### A PS1 for each computer is on the respective lines in this order:
    ### ### White Yunzi / Silver Yunzi / Pink Yunzi / Rainbow EeePC
    if [[ -n $SSH_CLIENT ]]; then
    # PS1='\[\e[0;37m\]: \[\e[1;32m\]\W\[\e[0;37m\] :\[\e[0;37m\]:\[\e[1;33m\]ssh\[\e[m\]\[\e[0;37m\]: ' # WY SSH
    PS1='\[\e[0;37m\]: \[\e[1;33m\]\W\[\e[0;37m\] :\[\e[0;37m\]:\[\e[1;33m\]ssh\[\e[m\]\[\e[0;37m\]: ' # SY SSH
    # PS1='\[\e[0;37m\]: \[\e[1;35m\]\W\[\e[0;37m\] :\[\e[0;37\m]:\[\e[1;33m\]ssh\[\e[m\]\[\e[0;37m\]: ' # PY SSH
    # PS1='\[\e[0;37m\]: \[\e[1;33m\]\W\[\e[0;37m\] :\[\e[0;37m\]:\[\e[1;33m\]ssh\[\e[m\]\[\e[0;37m\]: ' # EeePC SSH
    elif [[ ${EUID} == 0 ]]; then ## :root: ~ :
    # PS1='\[\e[0;37m\]:\[\e[1;32m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;92m\]\W \[\e[0;37m\]:\[\e[m\] \[\e[0;37m\] ' # WY root
    PS1='\[\e[0;37m\]:\[\e[1;34m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;34m\]\W \[\e[0;37m\]:\[\e[m\] \[\e[0;37m\] ' # SY root
    # PS1='\[\e[0;37m\]:\[\e[1;35m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;35m\]\W \[\e[0;37m\]:\[\e[m\] \[\e[0;37m\] ' # PY root
    # PS1='\[\e[0;37m\]:\[\e[1;33m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;33m\]\W \[\e[0;37m\]:\[\e[m\] \[\e[0;37m\] ' # EeePC root
    else ## : ~ :
    # PS1='\[\e[0;37m\]: \[\e[1;32m\]\W\[\e[0;37m\] :\[\e[m\]\[\e[0;37m\] ' # WY user
    PS1='\[\e[0;37m\]: \[\e[1;34m\]\W\[\e[0;37m\] :\[\e[m\]\[\e[0;37m\] ' # SY user
    # PS1='\[\e[0;37m\]: \[\e[1;35m\]\W\[\e[0;37m\] :\[\e[m\]\[\e[0;37\m] ' # PY user
    # PS1='\[\e[0;37m\]: \[\e[1;33m\]\W\[\e[0;37m\] :\[\e[m\]\[\e[0;37m\] ' # EeePC user
    fi
    ## :root: ~ :ssh:
    #PS1='\[\e[0;37m\]:\[\e[1;34m\]\u\[\e[0;37m\]:\[\e[1;34m\] \W \[\e[0;37m\]:\[\e[m\]\[\e[0;37m\]\[\e[1;33m\]ssh\[\e[0;37m\]: ' # SY root
    ## :root:: ~ :ssh:
    #PS1='\[\e[0;37m\]:\[\e[1;34m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;34m\]\W \[\e[0;37m\]:\[\e[m\]\[\e[0;37m\]\[\e[1;33m\]ssh\[\e[0;37m\]: ' # SY root
    ## :root:: ~ ::ssh:
    # PS1='\[\e[0;37m\]:\[\e[1;34m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;34m\]\W\[\e[0;37m\] :\[\e[m\]:\[\e[m\]\[\e[0;37m\]\[\e[1;33m\]ssh\[\e[0;37m\]: ' # SY root
    Last edited by MoonSwan (2014-11-19 09:23:02)

    jasonwryan wrote:So it works for root locally, just not when you SSH in as root or change to root in an SSH session?
    Yes, you're quite correct.
    jasonwryan wrote:Also, it might help if you remove the commented lines, it is pretty hard to work out what is going on in there...
    I agree and I found a bunch of \'s that I missed.  Sorry about that!
    Here's the config stripped of extraneous junk:
    if [[ -n $SSH_CLIENT ]]; then
    PS1='\[\e[0;37m\]: \[\e[1;32m\]\W\[\e[0;37m\] :\[\e[0;37m\]:\[\e[1;33m\]ssh\[\e[m\]\[\e[0;37m\]: ' # WY SSH
    elif [[ ${EUID} == 0 ]]; then ## :root: ~ :
    PS1='\[\e[0;37m\]:\[\e[1;32m\]\u\[\e[0;37m\]:\[\e[0;37m\]: \[\e[1;92m\]\W \[\e[0;37m\]:\[\e[m\] \[\e[0;37m\] ' # WY root
    else
    PS1='\[\e[0;37m\]: \[\e[1;32m\]\W\[\e[0;37m\] :\[\e[m\]\[\e[0;37m\] ' # WY user
    fi
    Edit:  stripped out two comments I'd missed earlier.
    Last edited by MoonSwan (2014-11-19 08:27:27)

  • Issue ; Asset under construction

    Dear sap gurus
    The customers require to control and make plan  the cost of construction in progress, so we give them the solution that: use IO to control the cost (in CO.10 in BP doc). When we create the IO in Controlling module, code of AUC will be create automatically. All cost incurred will be recorded in IO. At the end of period, we run settlement: (ko88). After construction finished, we have to  transfer cost of AUC to value of asset in AA module. But after testing in AA module, we can not transfer cost of AUC to value of asset because the asset class of AUC is belong to investment measure. So that, we still have to create code of AUC in AA module. Ms Thuy had tested this solution , and itu2019s ok.   The AUC account in Viet Nam accounting is B/S account, but in IO only allowed to use P/L account. So that we have create 2 code of AUC: one for B/S account  and one for P/L account. After running settlement in system for transferring all cost to AUC account(P/L account), we have to post manually in FI  module (Dr AUC account (B/S)/ Cr AUC account (P/L)) correspondence  with the value which have been settled. This posting should done automatically and not manual. Please provide a solution
    Regards,
    reddy

    Hello,
    When you activate Investment measure in Asset Class , we can settle two times with T.Code KO88. First settlement is IO to AUC another one is AUC settlement to Main Asset but we need to give Asset value date at final settlement.
    Regards
    Venki

  • SQl query construction in VO issue

    All,
    I want to create a VO with a query like this
    select columns from table1, table 2 where table1.column1 = table2.column Then i have to create Different View Criteria on them, so end query would be
    select columns from table1, table 2 where table1.column1 = table2.column where VC query This is not be a proper sql statement and will thorw error ? How do we achieve this ?
    thnks
    Jdv 11.1.1.5

    Hi,
    When you construct a query and add a vc to it, the resultant query (generated at RT) would be looking something like this.
    select * from (<your existing query>) -- Is  QRSLT
    where (<your vc where clause)So, when you set setNestedSelectForFullSql to false, the QRSLT is removed and actual query would be used (something like)
    <your existing query>)  where (<your vc where clause)Can you debug and see what query is being executed ? (by setting -Djbo.debugoutput=console).
    -Arun

  • Issue with Asset under construction account

    Hi all, I hope you can provide some assistance.
    We have a situation where:
    Asset created FY09
    Internal order created and assigned to settle to the asset. FY09
    Goods Received. FY09
    Internal order Settled FY09
    Asset disabled FY09
    Goods Receipt Reversed FY10.
    Settlement re-run FY10 as part of normal EOP processing. (Order was not clsd)
    Settlement document Reversed when mistake was realised.
    The AUC GL account is now out of balance as settlement cannot occur fully on the closed asset.  The posting rules for the AUC account mean that you cannot post directly to AUC account.
    Any suggestions or a transaction to synchronise the GL account for AUC with another P&L account would be appreciated.
    Thanks  Doug

    Hi there, thanks for your feed back. We didn't want to reactivate the asset due to issues with depreciation etc. So what we did was create a new asset and assign it to the internal order with a new settlement rule.  Then re- receipted goods inwards, settled and it all balanced correctly.

  • Issue in settlement of WBS to Asset under construction

    I had created new WBS elements to projects and tried to settle the values in the WBS element to Auc at the end of period 12.
    Instead of settling to Auc acquisition account specified in account determination in asset accounting, the values are trying to settle to downpayment clearing account specified in the asset accounting.
    Can you tell me how I should correct that.

    When you search on this forum try to put Date range "ALL" to get more results. Please read below threads and you will get the solution.
    MIRO:Transaction in area 15 contradicts the net book value rule
    Transaction in area 01 contradicts the NBV
    Looks like you have a negative balance in your WBS which you are trying to settle to FA.

Maybe you are looking for

  • Font antialiasing in Word 2007 with Wine

    Is there any way to get antialiasing in Word 2007 with Wine? Also I'm having some problems with bullets, they don't show up right. Maybe I'm missing a package for Wine or something? Thanks

  • Sound Problem VOX USB

    hi there, I just bought a MSI vox USB tv card and I can't seem to get the audio to work.  The video image is ok, but how do I connect the sound since i have no audio line in ??? i tried it with the mic port, but i don't get any sound, just some noise

  • Keynote presentations iPad to Mac

    There are presentations I created on my iPad which I want to save to my Mac, but to do this in the standard way requires them to show on that list in iTunes>Apps>Keynote, and they're just not there. Any suggestions?

  • Can i use After Effects with FC4?! And how?

    Hello! For a while i thought you could not use Adobe after effects with Final express...but i was wondering again if i can use it, and if i can, how do i use it with FCE?? Thanks!

  • Reg: control command

    hi,     all control commands are only for main window?