Validation at AM level ?

Hi All:
I wanted to know the best way to handle validation where there are multiple dependent entities which are involved in the validation rule (eg. if attribute in entity1 is not null, attribute in entity 2 shld not be null)
I tried to add a validation method at AM level to call before the SAVE, and throw a ValidationException there, but the exception never makes it to the UI page and the processing does not stop and the SAVE happens.(when in fact the desired behavior is that the SAVE should stop till the user corrects the problem)
Do i need to override the commit method in the transaction for this? or there is some other recommended way?
Thanks
Raj

Hi,
Download the following white paper and take a look at section 6.1.4 Multi Entity Rules: http://www.oracle.com/technology/products/jdev/collateral/papers/10131/businessrulesinadfbctechnicalwp.pdf
Olivier

Similar Messages

  • Validation on Entity level

    Hi All,
    In Jdev11g, I have set the validation on attribute level to check whether a field (e.g. password) contains only alphanumeric.
    I have used Rule Type as Regular Expression with the regular expression value [A-Za-z0-9]+.
    I am worried, why this validation is not getting fired up?
    Please help me to get around this.
    Regards,
    Loganathan

    When do you expect it to fire?
    Entity level validation only occurs if you call it directly or doDML call has been issued.
    I guess the validation rules are inherited by the VO and by components build from the VO.
    Timo

  • Validation on Application Level?

    Hi,
    is there the possibility to define a validation on application level? Couldn't find anything.
    I thought about a validation on page 0, but page 0 doesn't allow to create validations...
    Purpose: I want to validate the Apex_Application.g_fxx arrays. The validation will be the same for all pages.
    Thanks for your help
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com

    Hi Vikas,
    thanks for the help. Just tried it out, didn't work :-(
    It does the redirect, but doesn't show the error message. I assume the g_validation_ids_in_error and g_item_ids_in_error has also to be set. But the redirect isn't good in my case anyway, because the tabular form entries are lost.
    But I just found out that APEX_Application.show_error does exactly what I was looking for!
    Thanks for your help
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com

  • Entity level validation and view level validation in programmatic approach

    I want to know entity level validation and view level validation in programmatic approach how to i start and how to fetch the data pls tell me
    am new to df

    Hi,
    did you read the documentation ? http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/toc.htm
    Frank

  • Date and Salary validation at EO level.

    Hi All,
    I have two fields Salary and Date both are present at EO level
    I need to write a validation that if the date of birth entered on UI is more than 50 years as of today then salary should not be less than 5000
    Ex: if date entered is 02-02-1961 and salary entered is 4500 then it should throw an error message on click of the button.
    There are many custom validations at eo level but exactly where should this be done.
    Thanks,
    Arun

    Thanks All ... Actually i have binded the UI fields and in the bean i have written the following code and calling it on click of a button and its working... Anyhow i will try the other options also such as using groovy and writing the code in eoimpl provided in this thread .... The code which i have written is as follows but is it the right approach please let me know
    public void comm() {
    oracle.jbo.domain.Number s = (oracle.jbo.domain.Number)sal.getValue();
    oracle.jbo.domain.Date ds = (oracle.jbo.domain.Date)dob.getValue();
    java.util.Date sa = convertDomainDateToUtilDate(ds);
    System.out.println("The dob is "+sa);
    Calendar cl = Calendar.getInstance();
    cl.setTime(new java.util.Date());
    cl.add(Calendar.YEAR, -50);
    java.util.Date toDate = cl.getTime();
    System.out.println("The 50 years before date is "+toDate);
    if ( sa.before(toDate) && s.intValue() < 5000) {
    FacesMessage msg =
    new FacesMessage(FacesMessage.FACES_MESSAGES,
    "sal should be more than 5000");
    FacesContext context = FacesContext.getCurrentInstance();
    context.addMessage(null, msg);
    } else {
    invokeEL("#{bindings.Commit.execute}");
    public static java.util.Date convertDomainDateToUtilDate(oracle.jbo.domain.Date domainDate) {
    java.util.Date date = null;
    if (domainDate != null) {
    java.sql.Date sqldate = domainDate.dateValue();
    date = new Date(sqldate.getTime());
    return date;
    Thanks,
    Arun

  • Validation in entity level

    hi all
    I have an entity "currncy" and I want to make
    a validation in entity level on its attribute "Isdefaultcurrency"
    which is boolean.
    Entity Object : Currency
    attributes :
    1. Currencyid DBsequence
    2. Currencyname String
    3. Isdefaultcurrency, Boolean, CheckBox
    Rule Type : List
    Operator : In
    List Type : Query Result 'select ISDEFAULTCURRENCY from currency where ISDEFAULTCURRENCY=1'
    I want when user insert in table, validation checks the attribute 'Isdefaultcurrency'
    was true then show the error message that there was default currency and if you
    want to set it to true (or default) you must change another record that was true
    and uncheck it then back to current record and will make it true and
    there is one record in my table that its attribute 'Isdefaultcurrency' must be true
    please explain it

    Hi Thanks for reply,
    i used following but same issue, the respected fields are not getting marked.
    EoIMpl
      public void registerAttrValExceptionForAttribute(String attrName)
        oracle.jbo.AttributeDef attrDef = getDefinitionObject().getAttributeDefImpl(attrName);
        registerAttributeException(attrDef, 0,
                                          new oracle.jbo.AttrValException(oracle.jbo.common.MetaObjectBase.TYP_ENTITY_OBJECT, getResourceBundleDef(), ERRCODE, getEntityDef().getFullName(),
                                                                          attrName, getAttribute(attrName), null, false));
      }EO-Validation Groovy Script
    source.registerAttrValExceptionForAttribute('MyAttr');Thanks,
    Santosh.

  • Business rules and validation at view level?

    Hello,
    I was hoping to be able to do attribute validation at view level but I could not find this option and I would need to help to determine how to achieve this.
    I have a view based on several entities. That view include a updatable entity and others read only entities.
    Basically I have a season entity/ table and a dateRange Entity/table. The model is that dateRange is a child of Season ( a season can have several dataranges...).
    I need a validation rule to fire when users change the dateRange in the UI, I have to make sure that the date range attributes from and to are in the range of the season definition (season table has two attributes: starting date and ending date). So I would like to verify that
    daterange.from > season.startingdate and daterange.to < Season.endingdate and daterange.from < daterange.to
    Can I do that in some way? I don't how to resolve this at the entity level. the entity does not know about other entities, here I need a validation of the transaction by checking serveral entities.
    Thank you very much for your help

    You can do this programatically.
    Check out [url http://download.oracle.com/docs/cd/E21764_01/web.1111/b31974/bcrules.htm#sm0241]this part of the docs (and the surrounding chapter as well)
    John

  • Failed validation as a level hierarchy

    Hi,
    I have dimension called SKU in my analytic workspace with a hierarchy PRODUCTS defined as ALLPRODUCTS<--MD<--MG<--PG<--STYLE<--PRODUCT. I have used composite keys as Members to maintain uniqueness. For example the member expression for PG is CUBE_DEV.DIMSKU.MDID || CUBE_DEV.DIMSKU.MGID || CUBE_DEV.DIMSKU.PGID. I'm not using Surrogate keys. When I hit the maintain Dimension SKU, LOAD NO SYNCH succeeds but the compile step fails with error
    "INI: error creating a definition manager, Generic at TxsOqConnection::generic<BuildProcess>INI: XOQ-01712: "SKU.PRODUCTS" failed validation as a level hierarchy., Generic at TxsOqStdFormCommand::execute"
    I looked at the rejected records and every record has the error "(XSRWLD13) Cannot change the level of a dimension member within a single load." Can anyone help me resolving this issue ?
    I'm using AWM 11.2.0.1.0 on Oracle 11g R2 server.
    Thanks,
    RK

    David,
    I looked at the data and found out that there were NULLs in many key columns. I updated all of them to the value 'Unknown'. Also I re-implemented Composite keys because I thought Type 2 dimension would pose problem in determining uniqueness. Now there are no errors and I could successfully load data into the dimension.
    Below is the latest definition
    <!DOCTYPE Metadata [
    <!ENTITY % BIND_VALUES PUBLIC "OLAP BIND VALUES" "OLAP METADATA">
    %BIND_VALUES;
    ]>
    <Metadata
    Version="1.2"
    MinimumDatabaseVersion="11.2">
    <StandardDimension
    Name="SKU"
    ETViewName="SKU_VIEW"
    ETKeyColumnName="DIM_KEY"
    ETLevelColumnName="LEVEL_NAME"
    ETMemberTypeColumnName="MEMBER_TYPE"
    ETDimensionOrderColumnName="DIM_ORDER"
    DefaultHierarchy="PRODUCTS"
    ETHierarchyOrderColumnName="HIER_ORDER"
    ShortValueDescriptionAttribute="SHORT_DESCRIPTION">
    <Organization>
    <AWPrimaryDimensionOrganization
    AW="&AW_NAME;"
    AddUniqueKeyPrefix="True"
    MVOption="NONE"
    HierarchyConsistencyRule="CONSISTENT">
    <MVCreationOptions
    RefreshType="COMPLETE"
    RefreshOn="DEMAND"
    UsingConstraintsClause="TRUSTED">
    </MVCreationOptions>
    <DefaultBuild>
    <![CDATA[BUILD SPEC SYS_DEFAULT
      LOAD,
      COMPILE
    )]]>
    </DefaultBuild>
    <AttributeOrganization
    Attribute="SHORT_DESCRIPTION">
    </AttributeOrganization>
    </AWPrimaryDimensionOrganization>
    </Organization>
    <DimensionLevel
    Name="MERCHDIVISION"
    ETKeyColumnName="MERCHDIVISION">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="MERCHDIVISION">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="MERCHDIVISION">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="MERCHDIVISION">
    </Description>
    </DimensionLevel>
    <DimensionLevel
    Name="MERCHGROUP"
    ETKeyColumnName="MERCHGROUP">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="MERCHGROUP">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="MERCHGROUP">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="MERCHGROUP">
    </Description>
    </DimensionLevel>
    <DimensionLevel
    Name="PRODUCTGROUP"
    ETKeyColumnName="PRODUCTGROUP">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="PRODUCTGROUP">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="PRODUCTGROUP">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="PRODUCTGROUP">
    </Description>
    </DimensionLevel>
    <DimensionLevel
    Name="STYLE"
    ETKeyColumnName="STYLE">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="STYLE">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="STYLE">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="STYLE">
    </Description>
    </DimensionLevel>
    <DimensionLevel
    Name="PRODUCT"
    ETKeyColumnName="PRODUCT">
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="PRODUCT">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="PRODUCT">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="PRODUCT">
    </Description>
    </DimensionLevel>
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="sku">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="sku">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="sku">
    </Description>
    <Hierarchy>
    <LevelHierarchy
    Name="PRODUCTS"
    IsSkipLevel="True"
    IsRagged="True"
    ETParentColumnName="PARENT"
    ETDepthColumnName="DEPTH"
    ETViewName="SKU_PRODUCTS_VIEW">
    <HierarchyLevel
    DimensionLevel="MERCHDIVISION">
    <HierarchyLevelMap
    KeyExpression="DIMSKU.MDID"
    Query="DIMSKU">
    <AttributeMap
    Name="SHORT_DESCRIPTION"
    Attribute="SHORT_DESCRIPTION"
    Expression="DIMSKU.MDID">
    </AttributeMap>
    </HierarchyLevelMap>
    </HierarchyLevel>
    <HierarchyLevel
    DimensionLevel="MERCHGROUP">
    <HierarchyLevelMap
    KeyExpression="DIMSKU.MDID || DIMSKU.MGID"
    Query="DIMSKU">
    <AttributeMap
    Name="SHORT_DESCRIPTION"
    Attribute="SHORT_DESCRIPTION"
    Expression="DIMSKU.MDID || &apos;:&apos; || DIMSKU.MGID">
    </AttributeMap>
    </HierarchyLevelMap>
    </HierarchyLevel>
    <HierarchyLevel
    DimensionLevel="PRODUCTGROUP">
    <HierarchyLevelMap
    KeyExpression="DIMSKU.MDID || DIMSKU.MGID || DIMSKU.PGID"
    Query="DIMSKU">
    <AttributeMap
    Name="SHORT_DESCRIPTION"
    Attribute="SHORT_DESCRIPTION"
    Expression="DIMSKU.MDID || &apos;:&apos; || DIMSKU.MGID || &apos;:&apos; || DIMSKU.PGID">
    </AttributeMap>
    </HierarchyLevelMap>
    </HierarchyLevel>
    <HierarchyLevel
    DimensionLevel="STYLE">
    <HierarchyLevelMap
    KeyExpression="DIMSKU.MDID || DIMSKU.MGID || DIMSKU.PGID || DIMSKU.STYLE"
    Query="DIMSKU">
    <AttributeMap
    Name="SHORT_DESCRIPTION"
    Attribute="SHORT_DESCRIPTION"
    Expression="DIMSKU.MDID || &apos;:&apos; || DIMSKU.MGID || &apos;:&apos; || DIMSKU.PGID || &apos;:&apos; || DIMSKU.STYLE">
    </AttributeMap>
    </HierarchyLevelMap>
    </HierarchyLevel>
    <HierarchyLevel
    DimensionLevel="PRODUCT">
    <HierarchyLevelMap
    KeyExpression="DIMSKU.MDID || DIMSKU.MGID || DIMSKU.PGID || DIMSKU.STYLE || DIMSKU.SKU"
    Query="DIMSKU">
    <AttributeMap
    Name="SHORT_DESCRIPTION"
    Attribute="SHORT_DESCRIPTION"
    Expression="DIMSKU.MDID || &apos;:&apos; || DIMSKU.MGID || &apos;:&apos; || DIMSKU.PGID || &apos;:&apos; || DIMSKU.STYLE || &apos;:&apos; || DIMSKU.SKU">
    </AttributeMap>
    </HierarchyLevelMap>
    </HierarchyLevel>
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="PRODUCTS">
    </Description>
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="PRODUCTS">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="PRODUCTS">
    </Description>
    </LevelHierarchy>
    </Hierarchy>
    <Attribute>
    <BaseAttribute
    Name="SHORT_DESCRIPTION"
    IsVisibleForAll="True"
    SQLDataType="NVARCHAR2(100)"
    ETAttributeColumnName="SHORT_DESCRIPTION">
    <Description
    Type="ShortDescription"
    Language="AMERICAN"
    Value="Short Description">
    </Description>
    <Description
    Type="LongDescription"
    Language="AMERICAN"
    Value="Short Description">
    </Description>
    <Description
    Type="Description"
    Language="AMERICAN"
    Value="Short Description">
    </Description>
    <Classification
    Value="STAR"/>
    </BaseAttribute>
    </Attribute>
    </StandardDimension>
    </Metadata>
    But I'm facing problem if I put Names in Short Description attribute. I have fields MerchGroupName, MerchDivisionName, ProductGroupName, StyleName in the database table which I would love to use for short description. When I use them, the error is
    INI: error creating a definition manager, Generic at TxsOqConnection::generic<BuildProcess>INI: XOQ-01600: OLAP DML error "ORA-34034: 1 is already a value of DEMANTRADW!SKU_MERCHDIVISION_SURROGATE." while executing DML "SYS.AWXML!R11_LOAD_DIM('SKU.DIMENSION' SYS.AWXML!___R11_LONG_ARG_VALUE(SYS.AWXML!___R11_LONG_ARG_DIM 1) 'MATCH' 'YES' 'YES' 'SKU.MERCHDIVISION.LEVEL' 'SKU.MERCHGROUP.LEVEL' 'SKU.PRODUCTGROUP.LEVEL' 'SKU.STYLE.LEVEL' 'SKU.PRODUCT.LEVEL' 'SKU.SHORT_DESCRIPTION.ATTRIBUTE' 'SKU.PRODUCTS.HIERARCHY')", Generic at TxsOqStdFormCommand::executeINI: XOQ-01601: error while loading data for Cube Dimension "CUBE_DEV.SKU" into the analytic workspace, Generic at TxsOqStdFormCommand::execute

  • Customer validation on all levels of WBS

    Dear All,
    I have done validation on 1st level of WBS that customer field is must to fill in or it gives error message.
    How do i do this for all levels of WBS?
    Regards,
    Smile

    In prerequisiste of validation at WBS level maintain the logic such as
    PROJ-PROFL = 'XYZ''  AND PRPS-STUFE >= '2' i.e you are doing a prerequisite for project profile XYZ and WBS level > 2. This validation will be applicable for all conditions matching.
    If you just want level then maintain PRPS-STUFE >= '1' , so that validation will be carried out for all levels of WBS greater then 1.
    Thnaks
    Sarang

  • Validation at transection level

    Hello Gurus,
    I am new in adf and using jdev 11.1.2.3.
    We have the option to validate business rules at attribute level and row level, but my requirement is i want to validate at transaction level. Mean if user has added four rows i want to validated theses four row simultaneously before commit changes to database. For example i have a vo in which user is entering data. i want when he entered all the data i want to loop through all records which he entered and then if validation is paased then will save changes to db.
    Please advice how can i do this in adf.
    Thanks,

    ADF does not have direct built-in method(s) for this purpose. Declarative Enitty validators have an option to "Defer execution to Transaction level" (have a look at the "Validation Execution" tab of the "Edit Validation Rule" dialog). However, Entity validators are not suitable for validating multiple Entity instances together.
    The recommended way to implement validation among multiple Entity instances is to override the EntityImpl.beforeCommit() method. Have a look at subtopic 8.5.2 here:
    Implementing Validation and Business Rules Programmatically
    If you follow this alternative, do not forget to set a required system property in order to avoid unexpected side effects:
    Decompiling ADF Binaries: Throwing ValidationException from the beforeCommit() logic !
    The alternative of overriding the ViewObjectImpl.beforeCommit() method is not recommended. Have a look here for explanation:
    Andrejus Baranovskis's Blog: Coding Validation in ADF BC View Object Before Commit Method
    Dimitar

  • BCS validation at document Level

    Hi all SEM-BCS experts
    We are adopting a matrix consolidation (company & profit center) design. We would like to have a validation at the manual posting document (posting level 10) where all line items can only be posted with the SAME company code only. Posting to different profit center is allowed.
    Currently the system allows the posting of manual document which involves multiple company code with different profit center as system can generate an auto clearing cons unit line item to balance up the document.
    Appreciate any advice on the set up of the validation rule which is assigned to the document type. Thanks
    Cheers
    Lee

    One suggestion is to create a header validation requiring (condition) a company code.

  • Show validation X besign fields if validation at entity level failed

    Hi,
    We are doing all validation at the entity level by throwing sth like the following
    when a condition mandatory field is not filled in (i.e we override the validateEntity method).
    <pre>
    return new AttrSetValException(MetaObjectBase.TYP_ATTRIBUTE, OurMessageBundle.class, "27014", fieldName, fieldName, fieldValue);
    </pre>
    Everything is cool, as the validation message is showing up at the top. However, we need to put a X besides the field too when this failed, much like what you see when you use <af:convertDateTime tag...> .
    How to do this? Is it possible? We have defined our own error handle class and faces life cycle as doc by Oracle.
    I though by throwing AttrSetValException with fieldname="name" and my input text on jspx has id="name" will do the trick but it doesn't.
    Help is much appreciated.
    Mel

    See an example of custom-validation rule that can be applied to an entity/attribute.
    It's oracle.jbo.server.rules.JboGenericValidator and the source is in BC4J/src/bc4jaddinsrc.zip
    Also I've verified on JDev 903 Preview release that creating a new 'validationrule' in the project editor and applying it to 'entity' at entity level does work. validateValue() is called with 'entity' as the input Object.

  • Validation complete document level

    Dear All,
    I want to create one validation to restrict user at document type level. if document type DZ system should not allow entires like gl to gl postings.
    Regards,
    Sankar

    I think your requirement can be met through the configuration of Document Splitting through the indicator, "Only Once".  Below are the details of this indicator.
    Item type permitted only once
    If this parameter is selected, the corresponding item category may only be used once in the business transaction concerned. A document of this business transacation cannot be posted if the item category exists more than once.
    You may find this indicator in table V_T8G28 or menu path, "Define Business Transaction Variant" in configuration of Document Splitting.  Define a new variant or change the existing one attached with the Document Type DZ.
    Regards,

  • ME21N validation at transaction Level

    Hi All,
    I want validate at SAP Transaction level (ME21N). When I am going to create PO i need to validate the EKGRP maintained at PO level and maintained at Info record level. if both are different i need to throw an error??
    So can you please tell me the procedure to go ahead? if i need to write the code in the exit, please let me know the procedure where to write.
    Thnks,
    Raghu.

    Hello Raghu
    Having BAdI ME_PROCESS_PO_CUST available on your system you can use its method CHECK to do final validations which allow you to cancel saving of the PO (in case of failed validations set CH_FAILED = 'X' ).
    IMPORTING parameter IM_HEADER (IF_PURCHASE_ORDER_MM) has a method GET_DATA which returns the header data (structure MEPOHEADER). Here you can find EKGRP at header level.
    If I am correct then info records are found at item level. Thus, call IM_HEADER->GET_ITEMS to retrieve them.
    Items are TYPE REF TO IF_PURCHASE_ORDER_ITEM_MM -> implementing class CL_PURCHASE_ORDER_ITEM_MM).
    Loop over the item instances and call method lo_item->GET_DATA in order to retrieve the item data (structure MEPOITEM) which contain field INFNR ( Number of Purchasing Info Record ).
    Well, from here on it should be possible to find the way on your own.
    Regards
      Uwe

  • PO output Validation at Item level

    Hi All,
    We have created VOFM routine for PO output. We have to validate at item level.But the structure KOMPBEA in the routine is empty and it is not executing KOMPBEA_FILL function module.
    Is it possible to Validate PO output at Item level ?
    if possible then how to fill KOMPBEA.
    Thanks in advance.
    Quadri.

    I think you are working with RR scenario;
    then SNC (RO) triger SD to create SO in ERP (not created in SNC).
    PO number is not item level, it is header level, that means all the items of a PO have same PO number.
    PO is created at customer system, so are you sending the PO numbers from SNC to your customer?

Maybe you are looking for

  • PC freeze while running RAM preview (After Effects CS6)

    Hi everyone! Recently my PC froze while doing RAM preview of full-hd 30 fps timelapse (photos in RAW), which was about 25 seconds long. I haven't had any issues to date and i find it somewhat strange since i haven't been messing with settings lately.

  • S920 problems

    I have been unable to send or recieve picture text messages but i can send and recieve unattached messages.i have contacted my service provider who says sim is fine as is the APN -they think the  handset may have a block- can anyone help?

  • HP Pavillion dv6000 shows it is connected to Airport Extreme Guest network, but does not allow internet access.  Anyone have ideas what to do?

    My MacBookPro works fine on both primary and guest networks.  HP info shows excellent signal strength.  Web page won't open.  Tried reducing security level from WPA2personal to WPA.  Tried entering TCP/IP addresses manually in HP.  I'm told that the

  • When downloading a "Purchased" Photoshop package and you get an "Error 6...

    When downloading a "Purchased" Photoshop package and you get an "Error 6", how do you actually get to speak with someone at Adobe?  The program appeared to download properly and requested that I restart my computer, which I did, it indicated that I w

  • Broadcaster XML Formant

    We are broadcasting our queries in XML format. The size of the XML format is however quite large. I see it uses a lot of colors, which are nod needed at all. Is there a way to change the XML template the broadcaster uses please? Thanks for any input