Problem with step off record

Hi,
Need to Create an Opportunity and step off the record. An error message should be thrown if the Probablity of the Opportunty is 0% and Sales Cycle is blank.
like below I have written the code:
function BusComp_PreWriteRecord ()
var prob;
var stage;
prob=this.GetFieldValue("Primary Revenue Win Probability");
stage=this.GetFieldValue("Sales Stage");
if(prob == '0' && stage == '')
TheApplication.RaiseErrorText("% should not be 0 and sales stage should not be blank");
else if((Revenue == '$0.00')&&(Quality == '5-Poor'||Quality =='4-Fair'))
TheApplication.RaiseErrorText("With this combination of Revenue and Quality values can not be changed");
     return (CancelOperation);
     return (ContinueOperation);
Following error is thowing while stepping of the record:
TypeError 1406:The script refers to a method that either does not exist or has an incorrect syntax.Verify that the method syntax is correct and the object supports the method (SBL-SCR-00141)
can you please direct where went wrong.
Thank You.

First of: use try,catch,finally
http://download.oracle.com/docs/cd/B31104_02/books/eScript/eScript_JSLOverview44.html#wp1004538
In the finally part is where you would release/destroy any object variables that you have created.
Like instances of business components or business objects. Like this:
finally
loAccCUAddrBC = null;
loAccountBO = null;
You should have a naming convention for you variables. With some prefix/postfix.
like
l = local variable
g = global variable (variables declared in the (declaration) part)
use a type prefix
s = string
o = object (those are the ones you should release/destroy in the finally part)
i = integer
some postfix
BC = Business Component
BO = Business Object
e.g. loAccountBO, loAccCUAddrBC, ...
And once again, try as best you can to avoid writing script. It will
slow down the application, make it harder to upgrade, ...
First place to look:
Simple configuration with calculated fields, pre-defaults, ....
User Props on (Business Components, Applets, Integration Obj.)
Work flows
If all that fails, look to scripting.
And when you to, make sure you write your scripts well.
If you need the code more then once, put it into a business service.
And now to your code.
It look like Server Script code and then you need TheApplication().
and not just TheApplication.
try
var lsProb;
var lsStage;
var l?Revenue; // needs type and a get for the value
var l?Quality; // needs type and a get for the value
lsProb = this.GetFieldValue("Primary Revenue Win Probability");
lsStage = this.GetFieldValue("Sales Stage");
if(lsProb == '0' && lsStage == '')
TheApplication().RaiseErrorText("% should not be 0 and sales stage should not be blank");
else if((l?Revenue == '$0.00')&&(l?Quality == '5-Poor'||l?Quality =='4-Fair'))
TheApplication().RaiseErrorText("With this combination of Revenue and Quality values can not be changed");
catch(e)
     throw(e);
finally
return (ContinueOperation);

Similar Messages

  • Problem with  Creating Info Record

    Hello Gurus,
    I've problem with Creating Info Record
    i tried to create info record for Plant Specific/Purchase Org
    The first Screen General Data is OK
    i entered all the data in the next screen ie
    Purchase Organization Data screen but i'm getting error
    <b>Make an entry in all required fields</b>
    but there is Mandatory Textbox ie "VALID TO" which im unable to select Bcos its Disabled
    pls help me regarding this
    thanks in advance

    Hi
    Have u given the net price. <b>VALID TO</b> is the date until which the price shown in the info record is valid.
    If there is no price that is valid on the current date, the last-valid price is displayed and the date field contains the day before the start of the next validity period (this may be 12.31.9999 if there is no further validity date). If all validit periods lie beyond the current date, the price of the next period is displayed. The date field then contains the end date of this period.
    These validity periods we will maintain Purchse data CONDITIONS while creating info record. Check the validity period for the conditions.
    Hope this will helps u
    Ravi
    Ravikumar Bolla

  • Problem with step input using MIDI Keyboard

    Hi,
    I'm new to Logic Pro X and wanted to know how I can use my MIDI keyboard as a source of Step Input Recording.
    I created a new software instrument track, then open Window - > Show step input keyboard.
    If I click the keyboard on the screen, it records notes with no problem. However, if I play my MIDI keyboard while on-screen keyboard is shown, it does not record anything even though I hear the sound I played.
    Is there anything I can do about this?
    Thanks!
    -Holly
    EDIT : Actually I could solve the problem. I needed to click "MIDI IN" button on "MIDI Region" window.

    Holly,
    Have you opened the Audio MIDI Setup app on your mac? It's found in your Launchpad app (on your doc) and Other folder it should be in there. Make sure your MIDI keyboard is recognized and configured for the mac. Also look at your MIDI settings within Logic as well.

  • Problem with steps in health app!!

    Hello guys, i have problem with my health app, i enable steps in the app but it doesnt count even a single step, it says "No Data". I searched in the Internet the way i can enable steps and did exactly what it says but nothing. Can someone help?

    you can use 3rd party apps to monitor your activity, but this will drain you iPhone Battery significantly more than if using the integrated Motion coprocessor.

  • Problem with updating a record method in a database

    I've searched for the forums for info on this to no avail.
    I am connecting to Access database, using the sun.jdbc.odbc.JdbcOdbcDriver.
    I'm trying to be able to update 2 fields in a record (cost & quantity).
    I have an addrecord method, an update method.
    I can use the addrecord and it works great.
    But (yep, there's always a but!), when I try to update only the 1 or 2 fields on a record, I get a message that says "syntax error in UPDATE statement"
    I've written, deleted and re-written code & I'm going nuts.
    Here are my database methods and the actionPerformed where it calls those methods. Is the error message regarding my UPDATE (sql) syntax?
    Why does it work for adding, but not updating?? It seems my 1st if statement under my "update button" is never gone to... so maybe it's just a problem with my "if" statement.
    Please help me before I go crazy! Thanks!
    //flags
    //snippet of code
    private void enableButtons(boolean flag1)
        boolean flag2 = false;
        if (flag1 == false)
           flag2 = true;
        jbtUpdate.setEnabled(flag2); // was flag1 wouldn't work.
        jbtDelete.setEnabled(flag1);
        jbtAdd.setEnabled(flag1);
        jbtFirst.setEnabled(flag1);
        jbtNext.setEnabled(flag1);
        jbtPrev.setEnabled(flag1);
        jbtLast.setEnabled(flag1);
    //...actionperformed(ActionEvent e)
    else if (e.getSource() == jbtAdd)
        jtfItem.requestFocus();
        enableButtons(false);
        jtfItem.setText("");
        jtfDescription.setText("");
        jtfQuantity.setText("");
        jtfCost.setText("");
        addFlag = true;
      else if (e.getSource() == jbtUpdate)
        double quantity1 = parseInt(jtfQuantity.getText());
        double cost1  = parseCurrency(jtfCost.getText());
        Item itemUpdate = new Item(jtfItem.getText(), jtfDescription.getText(),
        cost1, (int)quantity1);
        System.out.println("update button was clicked");
        //first "if"
        if ((jbtUpdate.isEnabled()) && (addFlag == false))
          InventoryDB.updateField(itemUpdate);
          currentItem = itemUpdate;
          System.out.println("it's going to first if stmt");
        //2nd "if"
        if (addFlag == true)
          InventoryDB.addRecord(itemUpdate);
          currentItem = InventoryDB.moveFirst();
          addFlag = false;
          System.out.println("it's going to 2nd if stmt");
        currentItem = itemUpdate;
        performItemDisplay();
        enableButtons(true);
        System.out.println("it's going to last of update code");
    //method snippets  for database manipulation
    public static void addRecord(Item item) throws SQLException
        String query = "INSERT INTO Items (ItemNumber, ItemDescription, UnitCost, Quantity)  " +
            "VALUES ('" + item.getItem() + "', " +
               "'" +        item.getDescr() + "', " +
            "'" +         item.getCost() + "', " +
               "'" +     item.getQuantity() + "')";
        Statement statement = connection.createStatement();
        statement.executeUpdate(query);
        statement.close();
        close();
        open();
      public static void updateField(Item item) throws SQLException
        String query = "Update Items SET " +// Items (ItemNumber, ItemDescription, UnitCost, Quantity) " +
          "VALUES ('" + item.getCost() + "', " +
          "'" +     item.getQuantity() + "', " ;
    //      "WHERE ItemNumber  = " ItemNumber "'"
    //       "WHERE ItemDescription = " ItemDescription "', ";
          Statement statement = connection.createStatement();
          statement.executeUpdate(query);
          statement.close();
          close();
          open();
       public static void updateRecord(Item item) throws SQLException
        String query = "UPDATE Items SET " +
            "ItemNumber  = '" +      item.getItem() + "', " +
            "ItemDescription = '" + item.getDescr() + "', " +
               "UnitCost =  '" +        item.getCost() + "', " +
            "Quantity = '" +     item.getQuantity() + "', " +
            "WHERE ItemNumber = '" + item.getItem() +  "'";
        Statement statement = connection.createStatement();
        statement.executeUpdate(query);
        statement.close();
        close();
        open();
      public static void deleteRecord(String ItemNumber) throws SQLException
        String query = "DELETE FROM Items " +
            "WHERE ItemNumber = '" + ItemNumber + "'";
        Statement statement = connection.createStatement();
        statement.executeUpdate(query);
        statement.close();
        close();
        open();

    not familiar with this syntax,
    public static void updateField(Item item) throws
    s SQLException
    String query = "Update Items SET " +// Items
    ems (ItemNumber, ItemDescription, UnitCost, Quantity)
    " +
    "VALUES ('" + item.getCost() + "', " +
    "'" + item.getQuantity() + "', " ;
    // "WHERE ItemNumber = " ItemNumber "'"
    // "WHERE ItemDescription = " ItemDescription
    public static void updateRecord(Item item) throws
    ws SQLException
    String query = "UPDATE Items SET " +
    "ItemNumber = '" + item.getItem() + "', " +
    "ItemDescription = '" + item.getDescr() + "', " +
    "UnitCost = '" + item.getCost() +
    etCost() + "', " +
    "Quantity = '" + item.getQuantity() + "', " +one ',' too many
    "WHERE ItemNumber = '" + item.getItem() + "'";

  • Gradient problems with stepping single and full colour

    Hi, just wondering is anyone else is having problems on printed
    jobs with the gradient having definite steps between the
    different tints. We had no problems with CS3, but since updating to CS4 we
    have had jobs showing this stepping problem. Has Indesign changed settings?
    Any help would be appreciated I have checked all the the PDF settings as our RIP works from the PDF's to create the plates. The RIP is a Harlequin Rip.

    GrahamHe wrote:
    We don't actually rip the files. We are a pre-press/production department in an Agency. We do ensure that the files we deliver to the printer are 100% clean. Our problem with exporting is that if you have a gradient, as InDesign splits up large images into small pieces when writing the PDF we have seen single images that have different resolutions. We even had one file where 99% of the image was 350 dpi, and a small part 100 dpi.
    It could be that CS4 has fixed these problems and am willing to try it out, but am very wary of exporting.
    InDesign only splits things up when you flatten, as far as I know. If you use an unflattened format, PDF1.4 or higher, there is no flattening, so the problem may well be in HOW you are exporting. Of course, it sounds like you do ads, and I send flattened ads to publications myself because I don't trust that they know how or have the technology to handle a proper transparent PDF, but I don't distill, and I try to avoid situations that would cause problems to begin with.
    Take a look at the Transparency Flattener Preset you are using when you export. I believe the default is [Medium Resolution] which has a gradient resolution of 150 ppi. If possible, save your distiller settings as a .joboptions file and use that to export the same file and compare the distilled and exported versions.

  • Problem with Retrieving Parent records

    Hi
    I am facing some problem with Relation ship tables
    I am able to retrieve all child relation record by using Parent record id, but the other why around is not working that is
    I am unable to retrieve  all parent records by using a child record.
    Please can you help out this..
    find the below sample method which i was trying
    public HashMap<String, Record[]> getMemberRecords(Record[] rec,
                   RetrieveRelationshipsCommand relation,
                   RepositorySchemaEx repositorySchema, String code,
                   HashMap<String, Record[]> returnMap) throws MDMException {
              LOG.debug("calling getMemberRecords");
              HashMap<String, Record[]> returnVal = returnMap;
              LOG.debug("Assigning returnType to default HashMap.");
              try {
                   for (int recordCount = 0; recordCount < rec.length; recordCount++) {
                        LOG.debug("For recordCount = " + recordCount);
                        Record tempRec = rec[recordCount];
                        relation.setAnchorRecord(tempRec);
                        LOG.debug(" setting AnchorRecord = " + tempRec);
                        relation.setLoadRecords(true);
                        LOG.debug(" setting LoadRecords = " + true);
                        relation.setGetChildren(false);
                        LOG.debug(" setGetChildren has setup with  = " + true);
                        relation.setAnchorRecordId(tempRec.getId());
                        LOG.debug(" setting AnchorRecordId = " + tempRec.getId());
                        relation.setRelationshipId(repositorySchema
                                  .getRelationshipId(code));
                        LOG.debug("Before execution relation execute.");
                        relation.execute();
                        LOG.debug("After execution relation execute.");
                        RelationshipGroup group = relation.getRelationshipGroup();
                        LOG.debug("Retrieved Relationship Group.");
                        Relationship[] relat = group.getMembers();
                        LOG.debug("Length = "+relat.length);
                        Record[] tempRecords = null;
                        if (relat != null) {
                             int length = relat.length;
                             LOG.debug("Length = "+length);
                             tempRecords = new Record[length];
                             for (int count = 0; count < length; count++) {
                                  tempRecords[count] = relat[count].getMemberRecord();
                        if (tempRecords != null) {
                             LOG
                                       .info("Records size is not equal to Null So Calling recursive getMemberRecords.");
                             returnMap = getMemberRecords(tempRecords, relation,
                                       repositorySchema, code, returnMap);
                        LOG
                                  .debug("Setting HashMap Value Values with Parent ID, records[]");
                        returnVal.put(tempRec.getId().getString(), tempRecords);
              } catch (SessionException se) {
                   MDMException exception = new MDMException();
                   ErrorContext ec = new ErrorContext();
                   ec.setErrorMessage(se.getMessage());
                   ec.setErrorCode("MetadataException : " + se);
                   LOG.fatal(se, se.getCause());
                   se.printStackTrace();
                   exception.setContext(ec);
                   throw exception;
              } catch (IllegalArgumentException iae) {
                   MDMException exception = new MDMException();
                   ErrorContext ec = new ErrorContext();
                   ec.setErrorMessage(iae.getMessage());
                   ec.setErrorCode("MetadataException : " + iae);
                   LOG.fatal(iae, iae.getCause());
                   iae.printStackTrace();
                   exception.setContext(ec);
                   throw exception;
              } catch (CommandException ce) {
                   MDMException exception = new MDMException();
                   ErrorContext ec = new ErrorContext();
                   ec.setErrorMessage(ce.getMessage());
                   LOG.fatal(ce, ce.getCause());
                   ce.printStackTrace();
                   exception.setContext(ec);
                   throw exception;
              LOG.debug("Before returning from getMemberRecords");
              return returnVal;

    Hi
    I am facing some problem with Relation ship tables
    I am able to retrieve all child relation record by using Parent record id, but the other why around is not working that is
    I am unable to retrieve  all parent records by using a child record.
    Please can you help out this..
    find the below sample method which i was trying
    public HashMap<String, Record[]> getMemberRecords(Record[] rec,
                   RetrieveRelationshipsCommand relation,
                   RepositorySchemaEx repositorySchema, String code,
                   HashMap<String, Record[]> returnMap) throws MDMException {
              LOG.debug("calling getMemberRecords");
              HashMap<String, Record[]> returnVal = returnMap;
              LOG.debug("Assigning returnType to default HashMap.");
              try {
                   for (int recordCount = 0; recordCount < rec.length; recordCount++) {
                        LOG.debug("For recordCount = " + recordCount);
                        Record tempRec = rec[recordCount];
                        relation.setAnchorRecord(tempRec);
                        LOG.debug(" setting AnchorRecord = " + tempRec);
                        relation.setLoadRecords(true);
                        LOG.debug(" setting LoadRecords = " + true);
                        relation.setGetChildren(false);
                        LOG.debug(" setGetChildren has setup with  = " + true);
                        relation.setAnchorRecordId(tempRec.getId());
                        LOG.debug(" setting AnchorRecordId = " + tempRec.getId());
                        relation.setRelationshipId(repositorySchema
                                  .getRelationshipId(code));
                        LOG.debug("Before execution relation execute.");
                        relation.execute();
                        LOG.debug("After execution relation execute.");
                        RelationshipGroup group = relation.getRelationshipGroup();
                        LOG.debug("Retrieved Relationship Group.");
                        Relationship[] relat = group.getMembers();
                        LOG.debug("Length = "+relat.length);
                        Record[] tempRecords = null;
                        if (relat != null) {
                             int length = relat.length;
                             LOG.debug("Length = "+length);
                             tempRecords = new Record[length];
                             for (int count = 0; count < length; count++) {
                                  tempRecords[count] = relat[count].getMemberRecord();
                        if (tempRecords != null) {
                             LOG
                                       .info("Records size is not equal to Null So Calling recursive getMemberRecords.");
                             returnMap = getMemberRecords(tempRecords, relation,
                                       repositorySchema, code, returnMap);
                        LOG
                                  .debug("Setting HashMap Value Values with Parent ID, records[]");
                        returnVal.put(tempRec.getId().getString(), tempRecords);
              } catch (SessionException se) {
                   MDMException exception = new MDMException();
                   ErrorContext ec = new ErrorContext();
                   ec.setErrorMessage(se.getMessage());
                   ec.setErrorCode("MetadataException : " + se);
                   LOG.fatal(se, se.getCause());
                   se.printStackTrace();
                   exception.setContext(ec);
                   throw exception;
              } catch (IllegalArgumentException iae) {
                   MDMException exception = new MDMException();
                   ErrorContext ec = new ErrorContext();
                   ec.setErrorMessage(iae.getMessage());
                   ec.setErrorCode("MetadataException : " + iae);
                   LOG.fatal(iae, iae.getCause());
                   iae.printStackTrace();
                   exception.setContext(ec);
                   throw exception;
              } catch (CommandException ce) {
                   MDMException exception = new MDMException();
                   ErrorContext ec = new ErrorContext();
                   ec.setErrorMessage(ce.getMessage());
                   LOG.fatal(ce, ce.getCause());
                   ce.printStackTrace();
                   exception.setContext(ec);
                   throw exception;
              LOG.debug("Before returning from getMemberRecords");
              return returnVal;

  • Problem with step 2 in user exit.

    Hello collegues,
    I have a problem with the variables user exit in the bex analyzer. I have created a variable user exit and this is used as user authorization, and this variables is optional and enabled to entry . When i debugg the user exit, i put the break point in the step 1, in the step 0 and in the step 2, i can check the step1 and 0 but in the step 2 don´t stop. 
    Why does this happen?
    Thanks for your collaboration.

    Variable enabled to entry are not are not candidate to step 2. This step is only called once per exit variable not enabled to entry.
    Regards,
    Fred

  • Can't INSTALL: Problem with steps 3

    I'm trying to install Dreamweaver. Actually, it looks like
    it's installed but I'm having problems with the following steps.
    Step 3 : Please go to the “Activation” folder and
    copy 1 file called “Dreamweaver.exe” and
    paste/overwrite it
    To c:\program files\adobe\dreamweaver cs3 (or wherever you
    have installed Dreamweaver CS3 in)
    A message will pop up and ask you whether to replace existing
    files, just click “Yes”
    Every time I click on the file in the activation folder it
    say this....
    "\My
    Documents\Activation\configuration\Workspace\Designer.xml
    The application will not have a correct layout. Please load
    one from Windows>workspace"
    How do I fix this?
    Thanks
    Text
    Text

    Sounds like a crack to me. This is sure the right place to
    come for help
    with that.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "kim" <[email protected]> wrote in message
    news:g7jo99$2ml$[email protected]..
    >> I'm trying to install Dreamweaver. Actually, it
    looks like it's installed
    >> but I'm having problems with the following steps.
    >>
    >> Step 3 : Please go to the ?Activation? folder and
    copy 1 file called
    >> ?Dreamweaver.exe? and paste/overwrite it
    >> To c:\program files\adobe\dreamweaver cs3 (or
    wherever you have
    >> installed Dreamweaver CS3 in)
    >
    > I could be wrong but it does not sound to me like you're
    installing an
    > Adobe product. They would not let you copy/paste during
    installation!
    >
    > Are you installing a legit Adobe product?
    >
    > --
    > Kim
    > ---------------------------
    >
    http://www.geekministry.com
    >

  • Problems with shutting off/crashing

    I have an iPod video that is about 8 months old. I have about 13.5 Gb of files on it, the vast majority being music files at a high quality setting. The software is updated as of time of writing.
    I have a problem with the iPod turning itself off.
    Essentially, if I carry my iPod in a pocket, even with the wheel lock on, I risk the iPod suddently turning itself off mid song. A black screen appears with a very faint shadow screen as it was immediately before the crash. This seems to happen when it is jogged or it is moved (for example, moving it with my hand when I put my hand into my pocket to take it out) or when the wheel is lightly pressed.
    It doesn't happen every time, but for example, I have decided to post after it did this five times on the trot whilst I was at the gym, three times when I was just putting it into my pocket.
    As an aside, the thing just eats battery power.
    Can anyone offer any suggestions as to what might be wrong and/or fixes?
    Thanks in advance.
    iMac G5/iPod video   Mac OS X (10.4.7)  

    There is obviously a big problem with your ipod. I would try calling apple 1.800.725.2273.
    kEat0n

  • Problem with non-matching records

    I have 3 tables - TBL1 is a list of Conditions; TBL2 contains collected data; and TBL3 contains referenced details on the data in TBL2.
    TBL2 contains some matching values from TBL1.
    Ex.
    TBL1
    Condition
    01 Test A
    02 Test B
    03 Test C
    TBL2
    Name, Condition, Value
    Host101, 01 Test A, Yes
    Host101, 02 Test B, No
    Host101, 03 Test C, Yes
    Host102, 01 Test A, No
    Host102, 03 Test C, Yes
    I have them linked TBL1 Left Outer to TBL2 and TBL2 Left Outer to TBL3.
    My desire is to get the complete list of Conditions in TBL1 for each record in TBL2, even where there is no matching TBL1 value in TBL2 - so the report results of the above table data would be:
    Host101
    01 Test A     Yes
    02 Test B      No
    03 Test C      Yes
    Host102
    01 Test A     No
    02 Test B
    03 Test C      Yes
    So even though there is no data returned in TBL2 for Host102, 02 Test B, the record for that entry in TBL1 is still returned in the report.
    Currently I have the report structured as follows -
    {TBL2 Name}
    TBL1 Condition     TBL2 Value
    Seems quite simple, but I must be missing something somewhere, as I am only able to get the data where the records match, so, in the example above, I am getting only -
    Host102
    01 Test A     No
    03 Test C      Yes
    Any assistance would be much appreciated.  Thanks!
    Also, I tried doing a simple new report using just TBL1 & TBL2 and still get the same results (also tried a Full Outer join as well).
    Frustrating .......
    Edited by: Dragon77 on May 17, 2010 2:05 PM

    As I said, I have even tried removing TBL3 to make things even simpler - TBL1 & TBL2 Left Outer joined on the common field.
    I have tried every combination that I can think of.  We're talking on 4 fields in the report -
    Group Header 1 = {TBL2 Name}
    Group 2 = {TBL2 Unique Field}
    Detail = TBL1 Condition     TBL2 Value
    Group Header 1 = {TBL2 Name}
    Group 2 = {TBL2 Unique Field}
    Group 3 = {TBL1 Condition}     {TBL2 Value}
    Detail Suppressed
    No matter what I try, I only get matching records.
    I've gone so far as to just have the minimal 3 fields
    Group Header 1 = {TBL2 Name}
    Group 2 = {TBL2 Unique Field}
    Detail = TBL1 Condition
    Group Header 1 = {TBL2 Name}
    Group 2 = {TBL2 Unique Field}
    Group 3 = {TBL1 Condition}
    Detail Suppressed
    The tables only have the 1 field in comon {TBL1, TBL2 - Condition)
    This just doesn't make sense.  {TBL1 Condition} should have ALL of its entries returned along with any matching records from {TBL2 Condition} - not just where they are equal.

  • Problem with call-offs between APO and R/3 system

    Hi, gurus.
    We have following problem:
    APO system receives DELINS idocs. They are processed correctly (status 53). But sometimes the call-offs in R/3 system are not updated. I do not know much about the underlaying process but how can I check where the problem is?
    I suppose it can be caused by blocking of particular material or order or whatever in R/3 system when the call-off is being processed. But then the system should give some warning. I need to know where it could be found.
    The only workaround at the moment we do is to create copies of DELINS in APO system and let them be processed.by APO and consequently by R/3 system.
    Thank you.
    Stano Letko

    Hi Stano,
    When ever IDOC fail you can trigger a workflow to the respective person through Partner profile and message type setting .(we20) as Post processing permitted agent .
    Get in touch with techincal person who have idea of  IDOC configuration.
    Message type : DELINS
    Partner number : XXX
    Workflow tcode : PPOSE
    Manish

  • Problem with step mode in ultrabeat

    I use step mode in ultrabeat (when everything becomes yellow). Lots of tweaks are done in step mode, and everything sounds correctly. But after reopen the project some voices sounds like they are in voice mode, not in step mode, even if the step mode is on.
    This problem could be fixed by clicking on that voices. But there are 25 of them, it is really annoying. Could some one tell me, why does it happen? Thank you…

    Hi,
    Ultrabeat is not so much a sample player, but more a synthesizer. Your squeek probably has to do with the synth parameters of that sound in UB.
    This guy (David Earl aka SFLogicNinja) explains it well:
    http://nl.youtube.com/watch?v=KElps7_rIZM
    http://nl.youtube.com/watch?v=-RApWl2HgEU
    regards, Erik.

  • Problem with step Acquision and subsequnet consolidation

    Hi Gurus,
    I am trying to do step acquision, problem is as follows.
    A Ltd having % of holding @ first consolidation in BLtd 60%.
    I have executed COI and posted elimination entries with 60%
    In the next consolidation period I have increased my % of holding to 70%
    I have executed COI task in the next period, system is taking that additional 10% only for subsequent consolidation.
    Not referring old 60% ie 60%+10%=70%
    System taking 0.00 => 10.00
    Please help me to resolve the issue.
    Thanks in Advance
    Naveen

    Hi,
    Normally the COI activities as follows:
    1.First Consolidation u2013 Occurs when a new consolidation unit is acquired / established and it is consolidated within the group.
    2.Subsequent Consolidation u2013 Occurs when a consolidation unit is already consolidated in the group and the only changes in its equity are due to changes in the retained earnings. In the case of a subsequent consolidation the minority interests in the above mentioned items are posted.
    3.Increase or Decrease in Capitalization u2013 Occurs when there is a proportional increase / reduction of the equity and of the participation, without any changes in the percentage of ownership. In the case of an increase / reduction in capitalization, the increase in the stockholdersu2019 equity is offset with the change in the book value of the participation.
    4.Step Acquisition u2013 Occurs when there is an increase in the book value of a participant already consolidated and in the percentage of ownership. In the case of a step acquisition, the increase in the book value of the participation is offset with the change in the minority interests. Therefore, there is a reclassification between the minority interest items and the stockholdersu2019 equity items of the subsidiary, due to the change in the percentage of ownership.
    5.Distribution of Dividends u2013 For subsidiary companies only
    The system is taking only 10% because it is taking only the changes in its equity are due to changes in the retained earnings.   Execute balance carry forward then the COI in  next consolidation period is in same fiscal year.This should work now.
    Regards
    CSM Reddy

  • Pixelation problems with Live and Recorded Viewing

    I'm having massive pixelation when viewing live HD channels or viewing recorded HD shows.  When watching live TV the problem is active when I turn on a 2nd TV.  We had tech support out and the trouble shooting did not resolve the problem.  They thought it was related to bandwith.  I'm not well versed on the technology, and don't feel as if I need to understand why their product is not working as it should.  I'm paying for a product that is not functioning.  What do I need to do as a consumer to obtain the customer service that is expected from AT&T?

    Call and schedule another tech visit...Or download the Hyatt app, login with your att email account/password, run the troubleshoot test. This runs 5 tests, any problems found with these will help create a service ticket, if receive a green check mark, no problem found within tests ran. As you report increased issue with two TVs on, I suspect your on coax with cable issue. Inside wiring issues are billable, minimum $99 labor plus $55 for each cable run.If coax cable, looking at ends (compressed not screw or from), cable itself should be RG 6 not RG59, old wall plates, splitter (should only be one, Holland brand). If replacing the physical connections do not work, actually cable bad (store bought, RG59) best to either install up to two wireless receivers (one time charge $49 each) or have tech replace coax with cat5 ($55 per line) Are other issues possible, yes... But coax best describe your issue....Other possibilities include flaky receiver (replace receiver), failing port on RG (replace RG), or other wiring issues outside or inside... Test at nid for errors, no errors at nid is inside wiring issue. Foreign voltage from TV (especially newer TV with amplifier) needing TV grounded requiring you to have grounded outlets (electrician job if not grounded), bad ac power, many use power strip that goes flaky replace the power strip or plug direct into wall outlet.  As problem is listed as recent, something changed, what is question and who is responsible for repair (paying to fix). If can rule out inside (electric/cable runs your issue) then equipment and outside is company issue.  Request another service call, a fresh set of eyes main reveal something previous tech missed.

Maybe you are looking for

  • Cloning ebs r12 on 11gR2 database

    Hi all, our ebs r12 12.1.3 and db 11..2.0.2 OS:oul5x64 from ebs r12 12.1.3 and db 11.1.0.7 i do not have any problems with cloning, but when upgrade database to 11.2.0.2 . the template file was different and the clone failed because it could not fine

  • Watch tv show today now!

    http://www.rf-dimension.com/forum/entry.php?98482-2x6-Are-You-the-One-Season-2-Episode-6-Online-amp-Full-Episode http://www.rf-dimension.com/forum/entry.php?98557-8x5-Made-in-Chelsea-Season-8-Episode-5-Online-amp-Full-Episode http://www.rf-dimension.

  • Write Survey List items on to Excell through C#

    Hi team, i am working on a requirement where in i need to export the survey list items on to a excell, there is a OOB option to export but i need to do ti programatically but the problem is teh Survey list does not have the items like other lists. i

  • Recommended Media File Size for 56kbs connection

    What would be the largest single media file size when developing an adobe presenter course deployed through and LMS keeping the min connection to 56kbs in mind? Our current standard is trying to keep each media file under 200k. Our courses typically

  • How to disable airport so that standard users can't reenable it ?

    Even when I disable airport interface from the command line : sudo ifconfig en1 down (what requires sudo privileges) a standard user can reenable it ! Strange behaviour compared to linux or windows OS. If someone knows how to block airport, please le