Constraint rules automation

This is the hardest part. At work I do automation between an external database which has telco products and automate it into Siebel. Automating business rules has been a thorn in my flesh which i have not been able to figure out till now. Because of the use of RAL i have not been able to generate an engine which could help me use the language.,
SO the cut is has anyone ever automated business rules. Can someone give me an idea on how to go about it,

As we all know, as sellers, we have multiple ways to relist an item if it is sold or unsold. We can use 'assign automation rules' or relist one at a time using 'relist' or use the 'bulk listing editor' to do so when more than one item has ended. Sell Similar and Good Until Cancelled are also among the options for putting an ended item back out there, or renewing it every 30 days, respectively. And maybe I am the last seller on ebay to realize this but when you utilize 'assign automation rules' to end a listing when it has come to its conclusion.... but did you know it resets to the original quantity when it does so, regardless of how many may have sold while it was active? It does not track or accommodate for items sold when it relists for you, unlike a renewal by Good Until Cancelled and your regular 'relist' whether through a one-at-a-time or Bulk Edit relist.  This is interesting and enlightening to me because a handful of times in the past, I had discovered incorrect quantities with active items in my listings, particularly among those where a quantity of which had sold. It seemed like they were being reset. I did not know the reason for this and blamed it on a 'sell similar' error on my part, or a random ebay glitch. I use the 'assign automation' rules very rarely and had instead preferred to relist one-at-a-time or with the Bulk Editor. Recently, the Bulk Editor has been wrecking my listings by adding incorrect Product Catalogue details to them so I had begun to make whatever revisions required by hand before the listing ended and then assign an 'relist once' rule by automation as a workaround. I thought I would raise what I have found here to other sellers in case it helps to dispel anyone else's confusing about incorrect quantities on a relist. Like I say, maybe everyone already knows but I did not. 'Automation Rules' Relist? CHECK YOUR QUANTITIES or you and your buyer could be in for an unpleasant surprise.  

Similar Messages

  • CONSTRAINT rule of no special characters allowed? Help

    ALTER TABLE dbo.tblasset ADD CONSTRAINT
    CK_tblasset_HardwareNumber CHECK ([HardwareNumber]<>'' and [HardwareNumber] is not null)
    GO
    Is there away I can implement special characters being inputted on a NVARCHAR datatype using this?special characters like (* , . ,")Many thanks

    ALTER TABLE dbo.tblasset ADD CONSTRAINT
    CK_tblasset_HardwareNumber CHECK ([HardwareNumber]<>'' and [HardwareNumber] is not null)
    GO
    Is there away I can implement special characters being inputted on a NVARCHAR datatype using this?special characters like (* , . ,")Many thanks
    Your can create a Check
    Constraint on this column and only allow Numbersand Alphabets to
    be inserted in this column, see below:
    Check Constraint to only Allow Numbers & Alphabets
    ALTER TABLE Table_Name
    ADD CONSTRAINT ck_No_Special_Characters
    CHECK (Column_Name NOT LIKE '%[^A-Z0-9]%')
    Check Constraint to only Allow Numbers
    ALTER TABLE Table_Name
    ADD CONSTRAINT ck_Only_Numbers
    CHECK (Column_Name NOT LIKE '%[^0-9]%')
    Check Constraint to only Allow Alphabets
    ALTER TABLE Table_Name
    ADD CONSTRAINT ck_Only_Alphabets
    CHECK (Column_Name NOT LIKE '%[^A-Z]%')
    Source: http://stackoverflow.com/questions/25408483/create-rule-to-restrict-special-characters-in-table-in-sql-server
    web: www.ronnierahman.com

  • Does Oracle re-enable an already enabled constraint

    Hi All,
    If my constraints are already enabled and I issue the following enable command:
    alter table <table_name> enable constraint <constraint_name>;
    Will oracle re-enable this already enabled constraint - i.e go through the table data validating each column/columns(as teh case may be) againist the constraint rules, or it will simply do nothing since the constraint is ok?
    Thanks.

    At leats if they previsouly were enabled with novalidate Oracle WILL DEFINTELY CHECK THEM. Example:
    Connected to Oracle Database 11g Release 11.2.0.1.0
    Connected as gints
    SQL> create table t(a number);
    Table created
    SQL> insert into t values (null);
    1 row inserted
    SQL> alter table t add constraint a_nn check(a IS NOT NULL) enable novalidate;
    Table altered
    SQL> alter table t enable constraint a_nn;
    alter table t enable constraint a_nn
    ORA-02293: cannot validate (GINTS.A_NN) - check constraint violated
    SQL> Gints Plivna
    http://www.gplivna.eu

  • How to script schema upgrade as single success unit

    We currently use a combination of Ingres and SQL Server databases. When upgrading a schema of our own design we will script the upgrade as a single success unit. If any part fails then the whole lot is rolled back. (This is a slight simplification but it's the general principle we follow). However in Oracle I believe DDL statements are automatically committed. This is thwarting our attempts to adopt the same approach with Oracle.
    As a simple example say a column is being moved from one table to another (for whatever reason). The application changes to be implemented depend on three things happening:
    1. table_new has column_new added to it
    2. column_new on table_new is populated from column_old on table_old
    3. table_old has column_old dropped from it
    so the upgrade script will run something like:
    Start Transaction
    alter table table_new add column_new(etc... ;
    update table_new set column_new = (select column_old from table_old etc.... ;
    alter table_old drop column_old ;
    If Error then
    Rollback
    Else
    Commit Transaction
    This way if there is an error then the database is left in a state that works with the old application code. If the upgrade succeeds then the new application code can implemented.
    So my questions are:
    1. Am I correct in thinking that in Oracle, step 1 above will commit as soon as it's submitted preventing rollback?
    2. If so then what would people recommend as a way to achieve a single success unit for a schema upgrade?
    We were hoping to use flashback with restore points to perform the equivalent of a rollback if there were any errors in the upgrade script. Having tried that this afternoon though, I received an error about being unable to flashback the table because it had been changed (don't have the error here I'm afraid as I'm at home now). Would restoring the tablespace (we are setting up one tablespace per schema) to a point in time before the upgrade script started be reasonable? It seems a little extreme and also considerably more difficult to script than the flashback option. Otherwise I'm thinking that some combination of creating a new table, populating it, dropping the old table, renaming the new table with the original name might be an option. However this obviously has much greater overheads, higher chance of error and considerably more messing about if constraints, rules and procedures are involved.
    Any suggestions or corrections on what I've added above are appreciated.
    thanks
    Mark

    Thanks for the responses.
    Unfortunately this will always be a case of altering the schema rather than creating it once applications are running against Oracle.
    Tablespace point in time recovery is probably looking like the best option so far. A script would only ever upgrade one schema at a time and we're setting things up to use one tablespace per schema.
    Proving and then rehearsing a TSPITR (as I believe it's called) is on the list of things that we need to do but it seems like it may be needed as a more routine tool than just in emergencies. I shall concentrate my reading in that direction. Would anybody care to offer any opinions on automating restores for this situation? We have people on call but generally only plan to come in out of hours to check the outcome of big upgrades. Smaller schema upgrades are left to pass or rollback overnight.
    It's a real shame that flashback works at the database and table levels but does not have a tablespace option as that would be perfect. Flashing back the whole database could be problematic as we will probably end up with multiple schemas in each database, each one being used by different applications so we could realistically have applications running against some schema_a whilst we're upgrading schema_b. Flashing back the whole database would obviously then cause problems in schema_a, or schema_a or the associated application would have to be suspended while we upgraded schema_b. Whilst we're lucky enough to have some downtime with most of our applications, this is gradually disappearing and there are some which are now approaching 24/7 availability.
    I'm still open to other suggestions though. This seems so much more complicated than the approach which has worked for Ingres and SS. Do you apply schema changes whilst the system is running? Does somebody do this manually or is it scheduled?
    thanks again
    Mark

  • Autoscaling Application block for Azure worker role console app not working. Get error as The HTTP request was forbidden with client authentication

    I have written a console application to test the WASABi(AutoScaling Application Block) for my worker role running in azure. The worker role processes the messages in the queue and I want to scale-up based on the queue length. I have configured and set the
    constraints and reactive rules properly. I get the following error when I run this application.
    [BEGIN DATA]{}
        DateTime=2013-12-11T21:30:02.5731267Z
    Autoscaling General Verbose: 1002 : Rule match.
    [BEGIN DATA]{"EvaluationId":"4f9f7cb0-fc0d-4276-826f-b6a5f3ea6801","MatchingRules":[{"RuleName":"default","RuleDescription":"The default constraint rule","Targets":["AutoscalingWebRole","AutoscalingWorkerRole"]},{"RuleName":"ScaleUpOnHighWebRole","RuleDescription":"Scale
    up the web role","Targets":[]},{"RuleName":"ScaleDownOnLowWebRole","RuleDescription":"Scale down the web role","Targets":[]},{"RuleName":"ScaleUpOnHighWorkerRole","RuleDescription":"Scale
    up the worker role","Targets":[]},{"RuleName":"ScaleDownOnLowWorkerRole","RuleDescription":"Scale down the worker role","Targets":[]},{"RuleName":"ScaleUpOnQueueMessages","RuleDescription":"Scale
    up the web role","Targets":[]},{"RuleName":"ScaleDownOnQueueMessages","RuleDescription":"Scale down the web role","Targets":[]}]}
        DateTime=2013-12-11T21:31:03.7516260Z
    Autoscaling General Warning: 1004 : Undefined target.
    [BEGIN DATA]{"EvaluationId":"4f9f7cb0-fc0d-4276-826f-b6a5f3ea6801","TargetName":"AutoscalingWebRole"}
        DateTime=2013-12-11T21:31:03.7516260Z
    Autoscaling Updates Verbose: 3001 : The current deployment configuration for a hosted service is about to be checked to determine if a change is required (for role scaling or changes to settings).
    [BEGIN DATA]{"EvaluationId":"4f9f7cb0-fc0d-4276-826f-b6a5f3ea6801","HostedServiceDetails":{"Subscription":"psicloud","HostedService":"rmsazure","DeploymentSlot":"Staging"},"ScaleRequests":{"AutoscalingWorkerRole":{"Min":1,"Max":2,"AbsoluteDelta":0,"RelativeDelta":0,"MatchingRules":"default"}},"SettingChangeRequests":{}}
        DateTime=2013-12-11T21:31:03.7516260Z
    Autoscaling Updates Error: 3010 : Microsoft.Practices.EnterpriseLibrary.WindowsAzure.Autoscaling.ServiceManagement.ServiceManagementClientException: The service configuration could not be retrieved from Windows Azure for hosted service with DNS prefix 'rmsazure'
    in subscription id 'af1e96ad-43aa-4d05-b3f1-0c9d752e6cbb' and deployment slot 'Staging'. ---> System.ServiceModel.Security.MessageSecurityException: The HTTP request was forbidden with client authentication scheme 'Anonymous'. ---> System.Net.WebException:
    The remote server returned an error: (403) Forbidden.
       at System.Net.HttpWebRequest.GetResponse()
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       --- End of inner exception stack trace ---
    Server stack trace: 
       at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication(HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory`1 factory)
       at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebResponse response, HttpChannelFactory`1 factory, WebException responseException, ChannelBinding channelBinding)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    If anyone know why I am getting this anonymous access violation error. My webrole is secured site but worker role not.
    I appreciate any help.
    Thanks,
    ravi
      

    Hello,
    >>: The service configuration could not be retrieved from Windows Azure for hosted service with DNS prefix 'rmsazure' in subscription id **************
    Base on error message, I guess your azure service didn't get your certificate and other instances didn't have certificate to auto scale. Please check your upload the certificate on your portal management. Also, you could refer to same thread via link(
    http://stackoverflow.com/questions/12843401/azure-autoscaling-block-cannot-find-certificate ).
    Hope it helps.
    Any question or result, please let me know.
    Thanks
    Regards,
    Will 
    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.

  • Random movement within an irregularly constrained sprite (EDITED)

    (NEW EDIT AT BOTTOM)
    So, basically, I'm making a little program that crudely simulates an ant colony. I have little tunnels the ant-sprites can travel down, as well as chambers, in an irregularly-shaped sprite.
    I am not the most advanced at Director, but at least I've figured some things out. I found code on an open-source website (openspark, actually) that allows for an object to be dragged inside an irregular shape that has a matte ink.
    It's all well and good that the ants can be dragged within this boundary, but is there any way to have them use a Random Movement and Rotation behavior that is confined by the same laws? Or is that impossible / extremely hard?
    By the way, I already have a middleman behavior I use to toggle between dragging and random movement, so that does not factor into my question. I just need to know how to alter the Random Movement behavior so that it abides by the same constraint rules as my dragging behavior, if possible.
    Here is the code I'm using for dragging. I made a couple edits from the original, but not much.
    Don't worry about the canJumpGaps function of this code, as I am using a touch screen and it will never be used.
    property spriteNum
    property canJumpGaps    
    -- set to TRUE on mouseDown if the shiftDown
    property pSprite
    -- this draggable sprite
    property pConstraintSprite
    -- sprite to which this sprite is constrained
    property pConstraintAlpha
    -- alpha channel image of constraining member
    property pOffset
    -- offset between this sprite's loc and the mouse
    property pCurrentLoc
    -- last known position of this draggable sprite with respect to the constraining sprite
    -- EVENT HANDLERS --
    on beginSprite(me)
      pSprite  = sprite(spriteNum)
      pConstraintSprite = sprite(1)
      -- We'll use the value of the alpha channel to detect holes in the sprite
      pConstraintAlpha  = pConstraintSprite.member.image.extractAlpha()
    end beginSprite
    on mouseDown(me)
      canJumpGaps = the shiftDown
      if not pCurrentLoc then
        -- The user has not yet dragged the sprite anywhere.  Find out its
        -- current position with respect to the constraint sprite.
        pCurrentLoc = pConstraintSprite.mapStageToMember(pSprite.loc)
        if not pCurrentLoc then
          -- The mouse is not over an opaque part of the constraint
          -- sprite.  It can't be dragged at all.
          exit
        end if
      end if
      -- Start dragging
    pOffset = pSprite.loc - the mouseLoc
    end mouseDown
    on exitFrame(me)
      if not pOffset then
        -- The user is not dragging the sprite
        exit
      end if
    if the mouseDown then
        me.mMoveSprite()
      else
        -- The user just released the mouse
       pOffset = 0
      end if
    end exitFrame
    -- PRIVATE METHOD --
    on mMoveSprite(me) ---------------------------------------------------
      -- SENT BY exitFrame()
      -- ACTION: Calculates how near to the current mouseLoc the draggable
      --         sprite can be dragged.
      tMouseLoc = the mouseLoc + pOffset
      -- Find where the mouse is with respect to the constraint member
    tImageLoc = pConstraintSprite.mapStageToMember(tMouseLoc)
      if voidP(tImageLoc) then
        -- The mouse is currently outside the constraint sprite.  Use a
        -- slower but more powerful method of determining the relative
        -- position.
        tLeft = pConstraintSprite.left
        tTop = pConstraintSprite.top
        tImageLoc = tMouseLoc-point(tLeft, tTop)
      else if canJumpGaps then
        -- Check if the mouse is over a non-white area of the constraint
        -- member
       tAlpha = pConstraintAlpha.getPixel(tImageLoc, #integer)
      end if
      if tAlpha then
        -- Let the mouse move to this spot
    else -- Can't jump gaps or the mouse is over a gap
        -- Find how near the dragged sprite can get
        tDelta  = pCurrentLoc - tImageLoc
        tDeltaH = tDelta.locH
        tDeltaV = tDelta.locV
        tSteps = max(abs(tDeltaH), abs(tDeltaV))
        if not tSteps then
          -- The mouse hasn't moved since the last exitFrame
          exit
        end if
        tSteps = integer(tSteps)
    if float(tSteps) <> 0 then
    tStep  = tDelta / float(tSteps)
    -- This makes sure I'm not dividing by zero.
    else
    tStep  = 1
    end if
    repeat while tSteps
    -- Move one pixel towards the mouse
    tSteps = tSteps - 1
    tLoc = tImageLoc + (tStep * tSteps)
    -- Test that we are still on an opaque area
    tAlpha = pConstraintAlpha.getPixel(tLoc, #integer)
    if not tAlpha then
    -- We've gone a step too far: move back to an opaque area
    tSteps = tSteps + 1
    exit repeat
    end if
    end repeat
    end if
    -- Update the absolute and relative positions of the draggable
    -- sprite.
    tAdjust     = tSteps * tStep
    pCurrentLoc = tImageLoc + tAdjust -- relative to constrain sprite
    tMouseLoc   = tMouseLoc + tAdjust -- relative to the stage
    -- Move the sprite
    pSprite.loc = tMouseLoc
    end mMoveSprite
    Thank you SO incredibly much to anyone who can help. This is for a senior project of mine in undergrad, and I really appreciate any help I can get. My resources on Director are limited, especially for odd issues like this.
    EDIT:
    So I found out that a way to do collision detection in Director is by using getPixel().
    I found this protected dcr file that is a perfect example of the way in which I want my ant objects to interact with walls:
    http://xfiles.funnygarbage.com/~colinholgate/dcr/irregular.dcr
    I've been trying to build a getPixel() collision detection mechanism for hours but have been unsuccessful.
    Basically, what I want the behavior to do is... get the pixel color of the tunnel sprite (sprite 2) at the center of the ant sprite. If the pixel color is white (the transparent background color surrounding the tunnel shape), I want to tell the Random Movement and Direction behavior this:
    pSprite.pPath = VOID
    sendSprite(pSprite, #mNewPath)
    pSprite.pRotate = VOID
    sendSprite(pSprite, #mNewRotation)
    This tells the Random Movement behavior to stop moving and determine a new path. The behavior should probably also offset the center of the sprite by a couple pixels when this happens so it is no longer over an opaque area and the Random Movement behavior won't get stuck.
    Will this work? If not, could anyone help me in building a collision detection behavior based on getPixel? This doesn't seem like it'd be all that difficult - at least in theory.

    Hi Roberto,
    I had an experience, which defies most common sense about data modeling. Moving from a cube to a ODS and then back on to a cube to introduce delta on a BPS delta application. It is a long sad disappointing store. But I had 24 keys (I know 16 is the max, I combined 6 keys into a single filed also had the same fileds in the data fileds, use these combination keys to deal with 16 key max limitation and adjusted during transformation.
    It did work, but later gave up due to some other functional issues and we realized it is a bad experiement due to everyones data understanding.
    I am saying is 16 key limitation is an issue, you can overcome with combining couple of fileds into a single filed in the start routine, map it and reuse it later.
    Hope this gives you some ideas.
    Goodluck,
    Alex (Arthur Samson)

  • How to improve performance of Siebel Configurator

    Hi All,
    We are using Siebel Configurator to model the item structures. We wrote few constraint rules on that. But while launching the configurator it is taking more time to open.
    Even without rules also it is behaving in the same manner.
    Any inputs on this could be highly appreciated
    RAM

    duplicate thread..
    How to improve performance of attached query

  • OSM - Central Order Managment - Service Order Managment

    Hi!
    I'm studing OSM. Now, I have a problem. How the request Order passes from COM (Central Order Managment) to the SOM (Service Order Managment) ?
    Thanks

    Hi !
    I'm studing OSM too, I have been reading documentation and I Understand that COM and SOM are booth in a Single Orchestration process that can be designed in
    "Design Studio" as a plug in of the Eclipse Plataform, when you talk about "how the request Order passes from COM to SOM" I asume that you understand the
    process to get the income message that comes from a external system as a file .XSD and then the Orchestration process have to convert that file in a XML that understand the OSM, then the OSM have to map each products or items or services into a fulfillment plan that specifies how to fulfill that products or services or orders, and all of this components are entities that you have to define in the Orchestration process and that entities or components are in the Environmet of the Design Studio, some of this components are: "Orchestation Sequence" , "Order Item Specification", "Product Class", "Fulfillment Mode" , "Orchestration Stages" , "Order Recognition Rules", "Process", "Descomposition Rules" , "Automated or manual Tasks", "Data Dictionary".
    For more information about Concepts read "Order and Service Management 7.0.2 Documentation" in this documentation you can find the next topics:
    Communications Order and Service Management Concepts:
    3 Order Request Processing
    About Receiving Orders
    Understanding Order Input and Request Processing
    Understanding Order Recognition
    Defining Recognition Rules in Design Studio
    Recognition Rule Errors
    Understanding Order Validation
    Understanding Order Transformation
    Understanding Order Creation
    4 Orchestration Orders
    Understanding Orchestration Plans
    Understanding Orchestration Models
    Understanding Decomposition Rules
    Understanding Fulfillment Modes
    Understanding Orchestration Stages, Sequences, and Processes
    Modeling Orchestration Stages in Design Studio
    Modeling Orchestration Sequences in Design Studio
    Viewing Decomposition and Dependencies Graphically
    About Creating a Cartridge for Orchestration Orders
    Understanding Order Items and Order Components
    Understanding Order Component Control Data
    About Modeling Order Items in Design Studio
    About Modeling Order Components in Design Studio
    Understanding Dependencies
    About Compensating Dependencies in Orchestration Plans
    About Modeling Dependencies in Design Studio
    Understanding Product Specifications
    About Importing Product Classes in Design Studio
    About Creating Product Specifications in Design Studio
    About Defining Order Components in Product Specifications
    You can fin this documentation at: https://edelivery.oracle.com
    Regards.
    Lucas.

  • BCS reports

    We are accounting under Equity method for joint venture, but want the proportional financial statements  to be generated for the % of the ownership only.
    Is this reports possible? Please share your experience.

    hi venkat,
    Business Consolidation 
    Purpose
    This application component features consolidation functions you can use for external (statutory) rendering of accounts as well as internal (management) reporting.
    To do this, this component offers different consolidation types that are based on user-definable organizational units. Specifically, you can perform consolidation for companies, divisions, business areas or profit centers.
    In the component, the consolidation types are represented by dimensions. For example, you can define one dimension for company consolidations and, at the same time, another dimension for profit center consolidations. Each dimension lets you process flexible and, when needed, parallel hierarchies of consolidation units and consolidation groups:
    Flexible hierarchies means that you can use any number of hierarchy levels, define these hierarchies in variable depths, and maintain these hierarchies easily and clearly.
    Parallel hierarchies means that you use different criteria for structuring the consolidation units of each type of consolidation (e.g., business area consolidation). For example, one hierarchy could have a structure of consolidation units as companies, another hierarchy could have a structure with business segments.
    The component features the ability to use different consolidation charts of accounts. This lets you create parallel consolidated statements, for example, to meet requirements for both US GAAP and German HGB.
    You can use consolidation versions to maintain different categories of data, such as actual data, prognostic data or budget data.
    Integration
    The application features integration functions with different SAP OLTP modules that provide the data for consolidation; this is available for the consolidation types company consolidation, business area consolidation and profit center consolidation. The integration features enables the following:
    Generation of the organizational units of consolidation, based on the units in the transaction system.
    There must be a clearly defined relationship between the organizational units of the transaction system and those of the consolidation system before an automatic transfer of data can take place.
    Automated collection of transaction data.
    Several data transfer methods are available. A prerequisite for the collection of transaction data is that the data carried in local charts of accounts be converted for the aggregated chart of accounts in Consolidation. In some consolidation scenarios the transaction data can even be collected into different consolidation charts of accounts.
    Features
    Different methods are available for transferring the transaction data to the Consolidation system. Which method you use depends on your consolidation scenario.
    You can post manual entries, for example to standardize the reported data to the group's methods of balance sheet valuations.
    You can use validations to check the consistency of the reported or standardized financial data.
    You can translate the reported financial data into the currency of the consolidation group.
    You can automatically execute the following consolidation tasks:
    interunit eliminations (elimination of payables and receivables, elimination of revenue and expense, elimination of investment income)
    Elimination of Interunit Profit/Loss in Transferred Inventory
    consolidation of investments
    Reclassifications
    The automated postings are controlled by the task settings you previously define in Customizing.
    The logic of the consolidation tasks remains the same for all types of consolidation. For example, the system uses the same logic when executing interunit eliminations for either company consolidations or business area consolidations.
    You can generate reports using the standard tools in drilldown reporting, and the Report Painter or Report Writer of R/3. There are also existing reports for listing master data, additional financial data and the control parameters.
    The entire consolidation process can be broken down into two areas: a) the collection and preparation of reported financial data, and b) the consolidation of the financial data. Both of these areas have their respective monitor, which you can use to maintain and execute all of the individual tasks.
    Constraints
    The automated execution of the elimination of IU profit/loss in transferred assets is not available in this release.
    see this link
    The statements can be generated at the. PBA level, which lists the sum of each owner’s ..... that were previously recorded in the SAP financial system.
    http://64.233.167.104/search?q=cache:gYFz7shFMhUJ:www.sap.com/industries/oil-gas/pdf/01_Production_and_Revenue_Accounting_e.pdffinancialstatementstobegeneratedforthe%25oftheownership%2B+sap&hl=en&ct=clnk&cd=6&gl=in
    thanks
    sekhar
    reward me points if usefull

  • Turn off a single conversation?

    Is there a way to disable conversation views on one particular conversation? Rules, Automator or such?
    While I prefer Conversations for most of my email handling, I have a web form which returns the same sublect and sender phrase in all responses, with customer information held in the message body. Consequently all emails submitted via our website get lumped into one converstion. I would prefer these to be separate in order to track progress with each enquiry.
    I'm running 10.8.3 with Mail Version 6.3 (1503).
    Many thanks, Dan Chambers

    I think you can use "active plot" together with "plot.visible"
    property node to control which one you'd like to display. By default,
    the property node refers to plot 0, but you can change to plot 1 or
    other plots by changing active plot property node. You can search
    "Plot" in LabVIEW Help if you'd like to know details.
    Good luck,
    Jian
    On 18 Feb 2004 03:28:49 GMT, [email protected] (Computerman74)
    wrote:
    >>
    >>I have a multiple plot waveform graph (4 plots). I want to turn off
    >>one of the plots, say plot 2. Is this posible from the graphs
    >>property node? The property node seems to only give a reference to
    >>plot 0. I am using labview 7.
    >>Cheers,
    >>Wayne
    >>
    >>
    >>
    >>
    >>
    >>
    >
    >I would love to know if this is possible. I have been trying to figure i
    t out
    >myself.
    >There is a way to turn a single array off and that is what I am doing for now
    >untill this is possible. The plot is still there but reads zero when tunred
    >off. It would be cool to have the abillty to turn off a single plot.
    >I have tryed all the property nodes with no luck. The answer may be in the
    >array size but I can't seem to control that either.
    >For now you can use wire all 4 channels using the comparison select. Use a
    >constant of 0 And wire up a swtich. When the input is false the output is zero
    >in effect making the plot inactive but it still there.

  • Can not attach an element to a document (CDA-01305)

    My application was migrated from Designer 2.1 to Desinger 9i. In Designer 2.1 a table element was attached to a document. After migration the element was missing. When attempting to re-attach the element in Desginer 9i I know receive the below listed error(s). I do not understand the reference to what "documentation" should be refered to. Both the table element and dcoument have been 'checked out'.
    Thank you.
    Message
    RME-00209: Current activity has outstanding violations
    Cause
    Could not 'commit' the data because of outstanding
    data integrity violations.
    Action
    Examine violations, fix the invalid data, and try again.
    Message
    RME-00224: Failed to close activity
    Cause
    Could not close ('commit') an activity.
    Action
    Examine other reported errors for specific details.
    Message
    CDA-01305: Document Attachment: UID 1 uniqueness violation
    Cause
    A uniqueness constraint violation was detected for this element.
    Action
    Refer to the documentation for the uniqueness constraint rules for
    this element. The number after 'UID' refers to which uniqueness
    constraint is violated if there are more than one.
    ------------------------------------------------------------------------------------------

    this may be the 1,000,000 time for this question - it certainly is THE MOST ASK (and answered) QUESTION on the iPhoto '08 forum
    When you move up to Leopard there are even more ways to access photos, but for now since you are still on Tiger the basic answer is to export photos to a temp desktop folder - use them and delete them
    For a complete idscussion on accessing the iPhto '08 library see TD's post in this thread - http://discussions.apple.com/thread.jspa?threadID=1371662&tstart=15
    LN

  • BUSINESS CONSOLIDATION SYSTEM

    Hi Gurus...
    Could you please send any document related to BCS (BUSINESS CONSOLIDATION SYSTEM )

    HI. Sudheer
    Business Consolidation (SEM-BCS)
    The following sections contain the documentation on the BW-based component Business Consolidation.
    The documentation on the R/3-based component Business Consolidation is located elsewhere. This documentation can be accessed, for example, by calling up Application Help in your R/3-based Business Consolidation system.
    Purpose
    You can use the SEM component Business Consolidation (Consolidation) to determine the resources of a group (or a similar enterprise or organizational unit), the claims by others to those resources, and the changes to those resources. Consolidation also provides the means for internal and external enterprise reporting.
    You can consolidate on the basis of customer-defined consolidation units. Consolidation units can represent, for example, companies, plants, business areas, profit centers, and cost centers. You can also portray matrix organizations (for example, using a combination of companies and profit centers).
    You can standardize the financial data reported by individual consolidation units to adhere to the accounting and valuation standards of the group. You then translate the standardized financial data from the various local currencies into the group currencies. Finally, you can eliminate the effects of group-internal relationships (for example, from interunit trade and services). Thus, you calculate the consolidated financial statements as if the group were a single entity.
    You can use the analysis functions of SAP Strategic Enterprise Management (SEM) and those of SAP Business Information Warehouse (BW) to analyze and report on your consolidated financial statement data.
    Integration
    The Consolidation component provides functions to collect master data and individual financial statement data from data files from non-SAP systems as well as SAP systems.
    All SEM components are based on BW. These are:
    Business Consolidation (SEM-BCS)
    Business Planning and Simulation (SEM-BPS)
    Corporate Performance Monitor (SEM-CPM)
    Stakeholder Relationship Management (SEM-SRM)
    Business Information Collection (SEM-BIC)
    The data processed by Consolidation is written to the BW system. There you can share the data between Consolidation and the other SEM components. For example, you can:
    Collect SEM-BPS planning data for use as reported financial data in consolidation
    Use consolidated actual data as the basis for further planning in SEM-BPS.
    Features
    Versions
    You can use versions to execute parallel consolidations with different categories of data (for example, actual data, planning data, forecasting data), using different accounting principles (for example, US GAAP, IAS, German HGB), using different valuations, and/or for simulations.
    Hierarchies
    You can create hierarchies for almost all characteristics (for example, consolidation units and financial statement items), where some hierarchies have special, consolidation-specific properties.
    Consolidation Charts of Accounts
    The component enables you to use different charts of accounts for consolidation. For example, this allows you to generate several consolidated financial statements in parallel to accommodate different accounting principles.
    Collection and Standardization of Reported Data
    You can use online data entry or flexible upload to collect individual financial statement data and other consolidation-relevant data into the consolidation system.
    You can post manual entries, for example, to standardize the reported data to meet the accounting and valuation requirements of the group.
    Consolidation Tasks
    You can automatically execute the following consolidation tasks:
    Currency translation (which translates the financial data into the currency of the consolidation group)
    Validation
    Interunit eliminations (for example, for payables and receivables, revenue and expense, or investment income)
    Elimination of interunit profit/loss in inventory
    Consolidation of investments
    Reclassification
    Allocation
    Balance carryforward
    The automated postings are controlled by the task settings you define once beforehand in Customizing.
    Reporting
    After performing the consolidation tasks, you can use BW reports to analyze your data. SAP provides pre-defined BW business content (InfoCubes, queries, etc.) for this purpose.
    You can use XBRL to create individual or consolidated financial statements.
    Execution and Monitoring of the Consolidation Process
    You use the consolidation monitor to execute the consolidation tasks and to monitor the entire consolidation process.
    Constraints
    The automated execution of the elimination of IU profit/loss in transferred assets is presently not available.
    The automated execution of consolidation of investments presently only covers the purchase method with the activities first consolidation and subsequent consolidation.
    You can use manual posting to perform the consolidation tasks that are not yet automated to meet the statutory requirements for creating consolidated financial statements.
    http://help.sap.com/saphelp_sem320bw/helpdata/en/62/f7e73ac6e7ec28e10000000a114084/frameset.htm

  • Dynamically Assign Login Module

    I have a customer that requires users be able to log into the end user interface using either 2-factor or single factor authentication depending on the actions they wish to initiate while in the interface. Determining which login group the user belongs to during login is not an option because all users are End Users.
    One possible way to implement this feature would be to create a jump off page with links for the two different login types; for example: <a href='http://idm/user/login.jsp?manager=true">manager login</a> and <a href="http://idm/user/login.jsp?manager=false>user login</a>.
    A login constraint rule could then be created that would base the login module off of the manager=true or false value in the page request. 
    Im wondering if anyone has had a similar requirement from a customer and how they went about implementing it?  What about modifying the /user/login.jsp to include a checkbox that when checked would set the login module to use two-factor authentication?
    -Kevin Elle

    Try this code.. at the initialize event for textfield...
    if $record.<context_node_name>.level.rawValue == "1" then
      textfield.rawValue == "Sample1"
    else
      textfield.rawValue == "Sample2"
    endif
    Regards,
    Reema Shahbazkar.

  • How to create business rule for 'Integrity constraint - child not found'

    Hello, I am using JDeveloper 11.1.2.3.0.
    When an integrity constraint is violated an error message coming from database is displayed in my application. In this case is the error "integrity constraint (TableName) violated - child record found "
    How can I personalize the error shown in this case? I tried with EO business rules but I couldn't find this key, only "Key exists" or "UniqueKey".
    Can anyone help?

    Check Catch Me If You Can article. This should be handled there as one of the errors thrown in the model layer. Check the AdfmErrorHandlerImpl ...
    Timo

  • How can I use database constraints in entity attribute validation rules

    I am interested in using database constraints to validate attributes in entity objects.
    I would like to implement a JboValidatorInterface in a way that I can use an operator like "GreaterOrEqualTo" to compare with values retrieved from the database for a column associated with an entity object attribute.
    I have used this pattern with success in other environments, where the user community decides the minimum value for a thing should change from x to y, and simply changing a database object also changes the validation methods of all applications which access it.
    I am not certain that column constraints are the appropriate vehicle, but so far that seems to be the case.
    I see that you can create a validation rule which makes comparisons against a view object attribute. I am wondering if there is a generic way to use standardized names for column constraints along with ADF hooks into properties of database columns, to avoid writing individual queries for each attribute.
    Thanks in advance!!!

    Jeffrey,
    If you already have constraints on the underlying tables, why do you need to validate them in ADF BC? You can certainly use some framework extension classes to give the user nicely formatted error messages - see ER: ADF BC - allow custom error msgs for common exceptions (e.g. DML) for more details.
    I am using this method so that anything that is enforced in the database (check constraints, foreign keys, unique constraints, etc) are not enforced in the ADF BC layer as well - after all, there's more than one way to get data into a table, and DB constraints ensure that even if data gets in through another mechanism (apart from the ADF application), it is valid. My 2 cents, of course.
    Hope this helps,
    John

Maybe you are looking for

  • Bug in To do's - Due date won't change unless you go to "Other..."

    Bug in To do's - Due date won't change unless you go to "Other..." when you create or edit a to-do in Reminders>To Do's view Mail Version 3.0 (912.1/912)

  • Freight Cost transfferred to COPA

    Guys, Need a quick help with this. I have got a full blown Transport management system being implemented at my client site in ECC6.0. I need to know if anybody has worked on a variable costing report whereby I can pull the freight cost value into COP

  • Re allocation number

    Hello, I'm trying to re-allocate number. It has been suspended for 3 weeks, now I put credits on the "right" account with skype manager. Skype manager and the user with the number have enough credits, but still not possible to re allocate the number:

  • Xdo delivery config file: unknown server elements

    I am working on XML Pubisher for E-Business Suite version 5.6.3 with the EBS Bursting integration patch. I have created a xdodelivery.cfg config file to include a IPP printer definition: <config xmlns="http://xmlns.oracle.com/oxp/delivery/config"> <s

  • Intrastat Belgium - Use of Region

    Hello Gurus We have added fiscal regions, 1, 2 and 3,  to the geograqphical ones through VE70 for BE. I have then maintained the geographical region on the plant, as instructed and marked region of origin as mandatory for BE in VEB1. However, when In