Valdiation rule does not work on PrimaryBillToCity field

Hello to everyone,
Valdiation rule does not work on PrimaryBillToCity field (and other address fields)
Have someone a workaround ?
Thanks.
ML

I do not believe it is possible to do validation on the address fields in the address block.

Similar Messages

  • Membership rules does not work with UDF column name having the max length

    Found a bug in OIM .
    Membership rules does not work with UDF column name having the maximum length
    Steps to Reproduce
    1.Create a UDF having max column name length for eg UDF_USR_PERSONAL_SUB_DOMAIN_CO (lable = Personal Code)
    2. Create a simple Rule like Personal Code = 7000
    3. Assign this Rule as a member ship rule of a Group.
    4. Create a user with Personal Code = 7000.
    5. User doesnot get the group membership.
    Thanks
    Suren

    Yes , i verified logs as well .
    If you just decrease the column name length , w/o making change to any other attributes , it starts working ..
    Thanks
    Suren

  • Substitution rule does not work in SAP CRM

    Hi,
    In our client, we have work flow set up for substitutions. Manager A has specified B as his substitute for approving work flow items during his absence. I checked the table T77S0, WFLOW AUTOF is set to 'X'. I checked the table HRUS_D2, here the entry shows as 
    User   User   Start date         End date                   Substitute profile            Substitute Active
    A          B      03/10/2014        01/01/9999                0001                                    X
    However B is not able to receive the workflow items of A. When I tried to forward using SWIA, then B is getting workflow items. Not sure, why the substitution is not working. User A has set up workflow substitute in SAP CRM Web UI.
    Any suggestions to resolve this will be greatly appreciated.
    Thanks.
    With regards,
    Ravi

    You assigned substitution profile 0001 which is disciplinary or something like that - this substitution profile has no meaning and is only an example.  try not assigning a substitution profile or use profile 'all' which contains the 'NO_CLASS' task class which is the default classification for tasks in the system.
    you can see substitution definition in SAP Web Application Server → Business Management → SAP Business Workflow → Basic Settings (Organization Management) → Substitute Profile.
    see also: Maintaining and Activating Substitutes (SAP Library - SAP Business Workflow)

  • OIM 11g R1 - Rule does not work

    Hello,
    i want to add all users to a specified role "abc", if they are member of organization "xyz"
    I created a rule in Design Console:
    Type: General
    Element: Organization Name == xyz
    I added this rule to the role "abc", but the members will not be added automatically to this role.
    Why not? Do i have to run a job?

    Run the following query:
    update user_provisioning_attrs set policy_eval_needed = 1 where usr_key in (select usr_key from usr where act_key = (select act_key from act where act_name = 'xyz') and usr_status = 'Active')
    The next time the "Eval User Policy" scheduled task runs, it will evaluate all the users in that org to apply the rule.  Be careful doing this though because that many updates could cause a strain on the system so choose how many you update at a time and then process.
    -Kevin

  • PLSQL join does not work with RAW fields

    Hi All, I wanna to do a join between two table which have as primary key a GUID field (RAW 16). To do this I'm creating a cursor and the sql is simple. However, it returns the following error when I try to compile the procedure:
    Error(41,3): PL/SQL: SQL Statement ignored
    Error(42,27): PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    The tables and the cursor are listed below. I would like to know the best way to do a join with Raw fields in plsql once that the same query works when used out of the procedure.
         CURSOR Areas IS
    Select ha.partial, ha.acidental_burn, ha.edge_cut
    from harvest_area ha, harvest_order ho
    where ha."ORDER" = ho."ID";
    create table "HARVEST_AREA" (
    "ID" RAW(16) not null,
    "VERSION" NUMBER(10,0) not null,
    "ACCIDENTAL_BURN" NUMBER(1,0) not null,
    "AREA" DOUBLE PRECISION not null,
    "EDGE_CUT" NUMBER(1,0) not null,
    "K_FACTOR" NUMBER(1,0) not null,
    "PARTIAL" NUMBER(1,0) not null,
    "SISCONAGR_CONTROL" NUMBER(1,0) not null,
    "CUT" RAW(16) not null,
    "ORDER" RAW(16) not null,
    "PROVIDER" RAW(16) not null,
    "SHAPE" MDSYS.SDO_GEOMETRY,
    primary key ("ID")
    create table "HARVEST_ORDER" (
    "ID" RAW(16) not null,
    "VERSION" NUMBER(10,0) not null,
    "CHOPPED" NUMBER(1,0) not null,
    "CODE" NUMBER(10,0) not null,
    "FILE" NVARCHAR2(256),
    "LOAD_DISTRIBUTION" NUMBER(1,0) not null,
    "RAW_CANE" NUMBER(1,0) not null,
    "TIMESTAMP" TIMESTAMP(4) not null,
    "FACTORY" RAW(16) not null,
    "FRONT" RAW(16) not null,
    "MODE" RAW(16) not null,
    "SHAPE" MDSYS.SDO_GEOMETRY,
    primary key ("ID")
    );

    Ok, I could reproduce on my 10.2.0.4 (my first test was on 11.2.0.1):
    SQL> create table harvest_area
       id                raw (16) not null,
       version           number (10, 0) not null,
       accidental_burn   number (1, 0) not null,
       area              double precision not null,
       edge_cut          number (1, 0) not null,
       k_factor          number (1, 0) not null,
       partial           number (1, 0) not null,
       sisconagr_control number (1, 0) not null,
       cut               raw (16) not null,
       order1            raw (16) not null,
       provider          raw (16) not null,
       primary key (id)
    Table created.
    SQL> create table harvest_order
       id                raw (16) not null,
       version           number (10, 0) not null,
       chopped           number (1, 0) not null,
       code              number (10, 0) not null,
       file1             nvarchar2 (256),
       load_distribution number (1, 0) not null,
       raw_cane          number (1, 0) not null,
       timestamp         timestamp (4) not null,
       factory           raw (16) not null,
       front             raw (16) not null,
       mode1             raw (16) not null,
       primary key (id)
    Table created.
    SQL> declare
       cursor areas
       is
          select null
          from harvest_area ha,
               harvest_order ho
          where ha.order1 = ho.id;
    begin
       for c in areas
       loop
          null;
       end loop;
    end;
    Error at line 41
    ORA-06550: line 6, column 12:
    PL/SQL: ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 4, column 7:
    PL/SQL: SQL Statement ignoredProblem is the timestamp column in harvest_order which I think you need to rename:
    SQL> drop table harvest_area
    Table dropped.
    SQL> drop table harvest_order
    Table dropped.
    SQL> create table harvest_area
       id                raw (16) not null,
       version           number (10, 0) not null,
       accidental_burn   number (1, 0) not null,
       area              double precision not null,
       edge_cut          number (1, 0) not null,
       k_factor          number (1, 0) not null,
       partial           number (1, 0) not null,
       sisconagr_control number (1, 0) not null,
       cut               raw (16) not null,
       order1            raw (16) not null,
       provider          raw (16) not null,
       primary key (id)
    Table created.
    SQL> create table harvest_order
       id                raw (16) not null,
       version           number (10, 0) not null,
       chopped           number (1, 0) not null,
       code              number (10, 0) not null,
       file1             nvarchar2 (256),
       load_distribution number (1, 0) not null,
       raw_cane          number (1, 0) not null,
       timestamp1        timestamp (4) not null,
       factory           raw (16) not null,
       front             raw (16) not null,
       mode1             raw (16) not null,
       primary key (id)
    Table created.
    SQL> declare
       cursor areas
       is
          select null
          from harvest_area ha,
               harvest_order ho
          where ha.order1 = ho.id;
    begin
       for c in areas
       loop
          null;
       end loop;
    end;
    PL/SQL procedure successfully completed.

  • Cancel button on ADF popup does not work with AutoSubmit Fields

    Hello,
    I currently have a very simple form inside of and ADF popup. I the form contains one SelectManyListbox. Here's my issue.
    Lets say my form contains option A, B, and C.
    Okay I open the popup for the first time, and a select, A and B, and I click cancel. When I open the form again, I would expect no options to be selected. HOwever, that is not the case, the last options I selected, prior to hitting Cancel are still selected.
    I was able to fix this issue by setting contentDelivery to "lazyUncached".. However, as soon as I set autoSubmit to "true", the behavior goes back to keeping the selections I made, even if I hit cancel.
    Question :
    How can tell the popup to deselect the items that were selected in the SelectManyListbox during the canceled operation of the popup, when autoSubmit is enabled? IN other words, if A and B were selected, and I hit cancel, when I open the popup again, I should see zero items selected in the list.
    Regards,,.

    Here, is a sample that i have in my project.
    <af:popup childCreation="deferred" autoCancel="disabled" id="p1"
    binding="#{backing_dev_rma_cart_Details.showCartDetails}"
    contentDelivery="lazyUncached">
    <af:dialog id="d2" type="none"
    title="#{userinterfaceBundle.MODIFY_CART_DETAILS}"
    inlineStyle="font-size:small;" closeIconVisible="false">
    <f:facet name="buttonBar"/>
    <af:panelGroupLayout id="pgl33" layout="vertical">
    <af:panelFormLayout id="pfl2" rows="4" maxColumns="1">
    <af:panelLabelAndMessage label="#{userinterfaceBundle.SERIAL}"
    id="plam1">
    <af:outputText value="#{bindings.SerialNumber.inputValue}"
    id="ot9"/>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{userinterfaceBundle.PART}"
    id="plam2">
    <af:outputText value="#{bindings.ItemNumber.inputValue}"
    id="ot10"/>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{bindings.Description.hints.label}"
    id="plam3">
    <af:outputText value="#{bindings.Description.inputValue}"
    id="ot12"/>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage id="plam12"
    label="#{bindings.CustomerPo1.hints.label}"
    rendered="#{pageFlowScope.RmaAttributesBean.categoryId == 'RET ONLY' ? false : true}">
    <af:inputText value="#{bindings.CustomerPo1.inputValue}"
    label="#{bindings.CustomerPo1.hints.label}"
    columns="30" maximumLength="25"
    shortDesc="#{bindings.CustomerPo1.hints.tooltip}"
    id="it11" simple="true"
    required="#{sessionScope.GlobalInfo.rmaPOreq == true ? true : false}"
    rendered="#{pageFlowScope.RmaAttributesBean.categoryId == 'RET ONLY' ? false : true}">
    <f:validator binding="#{bindings.CustomerPo1.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{bindings.TrailerNo1.hints.label}"
    id="plam5">
    <af:inputText value="#{bindings.TrailerNo1.inputValue}"
    label="#{bindings.TrailerNo1.hints.label}"
    required="#{bindings.TrailerNo1.hints.mandatory}"
    columns="30" maximumLength="15"
    shortDesc="#{bindings.TrailerNo1.hints.tooltip}"
    id="it8" simple="true">
    <f:validator binding="#{bindings.TrailerNo1.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage id="plam11"
    label="#{userinterfaceBundle.REASON_FOR_RETURN_0}">
    <af:selectOneChoice id="soc5" autoSubmit="true"
    unselectedLabel="#{'--'} #{userinterfaceBundle.REASON_FOR_RETURN_0} #{'--'}"
    valueChangeListener="#{backing_dev_rma_cart_Details.reasonForReturnValueChange}"
    simple="true"
    value="#{bindings.ProblemTypeId.inputValue}">
    <af:forEach items="#{bindings.RmaProblemCodes.rangeSet}"
    var="item">
    <af:selectItem id="si4" value="#{item.Meaning}"
    label="#{item.LookupCode}"/>
    </af:forEach>
    </af:selectOneChoice>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{bindings.CompanyNotes1.label}"
    id="plam4"
    showRequired="#{bindings.ProblemTypeId.inputValue eq 'OT'}"
    partialTriggers="soc5">
    <af:inputText value="#{bindings.CompanyNotes1.inputValue}"
    label="#{bindings.CompanyNotes1.label}"
    required="#{bindings.CompanyNotes1.hints.mandatory}"
    columns="60" maximumLength="150"
    shortDesc="#{bindings.CompanyNotes1.hints.tooltip}"
    id="it9" simple="true" partialTriggers="soc5"
    rows="2">
    <f:validator binding="#{bindings.CompanyNotes1.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName1}"
    id="plam6"
    showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired1 == 'Y' ? true : false}"
    rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName1 != null}">
    <af:inputText value="#{bindings.Attribute1.inputValue}"
    label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName1}"
    columns="60" maximumLength="150" rows="2"
    shortDesc="#{bindings.Attribute1.hints.tooltip}"
    required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired1 == 'Y' ? true : false}"
    id="it14" simple="true">
    <f:validator binding="#{bindings.Attribute1.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName2}"
    showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired2 == 'Y' ? true : false}"
    rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName2 != null}"
    id="plam7">
    <af:inputText value="#{bindings.Attribute2.inputValue}"
    label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName2}"
    columns="60" maximumLength="150" rows="2"
    required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired2 == 'Y' ? true : false}"
    shortDesc="#{bindings.Attribute2.hints.tooltip}"
    simple="true" id="it15">
    <f:validator binding="#{bindings.Attribute2.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName3}"
    showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired3 == 'Y' ? true : false}"
    rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName3 != null}"
    id="plam8">
    <af:inputText value="#{bindings.Attribute3.inputValue}"
    label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName3}"
    columns="60" maximumLength="150" rows="2"
    shortDesc="#{bindings.Attribute3.hints.tooltip}"
    required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired3 == 'Y' ? true : false}"
    simple="true" id="it16">
    <f:validator binding="#{bindings.Attribute3.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName4}"
    showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired4 == 'Y' ? true : false}"
    rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName4 != null}"
    id="plam9">
    <af:inputText value="#{bindings.Attribute4.inputValue}"
    label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName4}"
    columns="60" maximumLength="150" rows="2"
    shortDesc="#{bindings.Attribute4.hints.tooltip}"
    required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired4 == 'Y' ? true : false}"
    simple="true" id="it17">
    <f:validator binding="#{bindings.Attribute4.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName5}"
    showRequired="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired5 == 'Y' ? true : false}"
    rendered="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName5 != null}"
    id="plam10">
    <af:inputText value="#{bindings.Attribute5.inputValue}"
    label="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customName5}"
    columns="60" maximumLength="150" rows="2"
    shortDesc="#{bindings.Attribute5.hints.tooltip}"
    required="#{pageFlowScope.RmaAttributesBean.rmaReturnType.customRequired5 == 'Y' ? true : false}"
    simple="true" id="it18">
    <f:validator binding="#{bindings.Attribute5.validator}"/>
    </af:inputText>
    </af:panelLabelAndMessage>
    <f:facet name="footer"/>
    </af:panelFormLayout>
    <af:spacer width="10" height="10" id="s19"/>
    <af:panelGroupLayout id="pgl40" layout="horizontal"
    styleClass="AFStretchWidth">
    <af:panelGroupLayout id="pgl41" layout="horizontal"
    styleClass="AFStretchWidth">
    *<af:commandButton text="#{userinterfaceBundle.CANCEL}"*
    styleClass="Button2" id="cb8" immediate="true"
    *actionListener="#{backing_dev_rma_cart_Details.showDetailsPopupCancel}">*
    *<af:resetActionListener/>*
    *</af:commandButton>*
    </af:panelGroupLayout>
    <af:panelGroupLayout id="pgl42" layout="horizontal" halign="end"
    styleClass="AFStretchWidth">
    <af:commandButton text="#{userinterfaceBundle.OK}" id="cb10"
    partialSubmit="true"
    actionListener="#{backing_dev_rma_cart_Details.okAction}"
    icon="/iq/skin/images/CommandButtonIcon.png"
    iconPosition="trailing"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    <af:spacer height="-25px" id="s20"/>
    </af:dialog>
    </af:popup>

  • CTRL+SHIFT+O does not work

    WHen i attempt to save a record in an infopath form, I receive an error that the form cannot be submitted and to press CTRL+SHIFT+O to identify errors.  This does nothing!  Is  there any other means to identify the errors on the form
    or to show the user which fields are in error?  All required fields are populated correctly but still the error occurs.
    I also receive a browser message that error fields are outlined in red.  This also does not work.  No fields are outlined.

    Hi jd, did you run the rule inspector in InfoPath to see what may be set up wrong? Try previewing the form in InfoPath and see where the errors are. Then check the setup on the field.
    cameron rautmann

  • Rules are not working correctly in OCS 10.1.2

    Hi,
    A few days ago we have encountered a problem in which the BCC rules or any other rules are not processed out of the user's mailbox.
    For example, a user goes to Oracle Mail (the web access, but not WAC), goes to Filters and creates a new rule for dealing with incoming mail (delivered or read, doesn't matter). The rule is processed ONLY if the the user asked to move/copy the mail to a subfolder IN HIS MAILBOX.
    If the user asks to forward ("Send a blind copy to") the delivered mails to a different mailbox (e.g. in OCS or to externally to gmail), the mail is NOT processed by the filter.
    Other than that mails are treated normally, incoming and outgoing. Manually forwarding to other OCS users also works, as well as forwarding to external mail systems such as gmail. Only the 'automatic' forward rule does not work.
    We have checked that the rules/filters are created with " oesrl -p" - and they are created.
    How can we troubleshoot this issue? Has anyone encountered it?
    System details:
    OCS 10.1.2
    Platform: Red Hat AS 4
    DB version: 10.1.0.4.2
    Thanks,
    -- Itay.

    Update:
    Problem resolved. restarted the SMTP-out service.

  • TableView : sort = "SERVER" ...does not work for "TIME"

    Hi,
    TableView sort = "Server" works automatically for "Date" Fields and "Text" Fields.
    But it does not work for "Time" field with data element "CDUZEIT". It shows the below error message:
    Note
    The following error text was processed in the system IFD : Invalid sort field type in "SORT ... AS TEXT".
    The error occurred on the application server ifdmain_IFD_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: IF_HTMLB_ELEMENT_DELEGATED~DO_AT_END of program CL_HTMLB_TABLEVIEW============CP
    Form: DELEGATED_END of program CL_HTMLB_ELEMENT==============CP
    Form: IF_BSP_ELEMENT~DO_AT_END of program CL_HTMLB_TABLEVIEW============CP
    Form: ONLAYOUT of program CLO27OLHO7EA9KVWPONPDC2NLTDFHCP
    Form: %_ONLAYOUT of program CL_O27OLHO7EA9KVWPONPDC2NLTDFHCP
    Form: DO_REQUEST of program CL_BSP_PAGE===================CP
    Form: CALL_VIEW of program CL_BSP_PAGE_BASE==============CP
    Form: CALL_VIEW of program CL_BSP_CONTROLLER=============CP
    Form: DO_REQUEST of program ZCL_ZPR_C_ACTION_LOG==========CP
    Form: DO_REQUEST of program CL_BSP_CTRL_ADAPTER===========CP
    Thanks and Regards,
    Bindiya

    Welcome to SDN.
    This problem and solution to it is exaplined in the following oss note number.
    <a href="https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=893210&_NLANG=E">893210</a>
    Regards
    Raja

  • Typeahead function in search field inside Facebook does not work in Firefox 13.0

    Until 3 or 4 days ago, cool typeahead function inside search field inside Facebook always worked in Firefox. Now since 4 days ago, it does not work. But the typeahead function works inside search field inside Facebook on Internet Explorer BUT I prefer to use Firefox and do NOT want to switch to IE!!!
    Is there anything I can do to regain that function?
    Aharon

    Shalom DJST,
    Thank you for reply.
    The behavior did not start with Firefox 13. I actually upgraded to Firefox 13 in hope it would solve the problem that happened in previous older versions. It failed to solve the problem.
    It had been working for 3 years on Firefox until last or 2 weeks ago.
    Regarding search, I mean by "type-ahead" which is that FB's search field offers a drop down list of possible search results as I type. For example, if I type S, it will show list of all people or groups with first letter S. If I type sk, it will show list of anything such as people or groups that starts with Sk, and so on. This is most valuable time saving technique to look for my pals to say hi or groups that I do not belong to but want to read their news or info.
    I think it is Facebook's programming problem but if I ask them, they will point to Firefox's fault by saying that it works for my Internet Explorer but not for Firefox and I do not want to get involved into tug war between Facebook and Mozilla.
    I am just bummed that the valuable time saving search method no longer exists on Firefox.
    Regards,
    Aharon

  • Added field to dynamic selection screen does not work in FBL5N

    hi,
    we have added KNA1-KATR5 to the selection screen of FBL5N by using logical database DDF using "view CUS" but it does not work.
    Our system is 6.0
    is there any OSS note or program that we should add?
    many thx.

    Refer This:
    Additional field selections in FB03

  • SAPWebConsole - dropdown field works in ABAP but does not work on Web

    Hi All,
    I am writing an RF transaction in ABAP using regular dialog programming. My transaction works fine in the GUI. But it does not work OK when I access the transaction over the web (using IE) via SAPWebConsole.
    My issue is that on the SAPGUI I have a dropdown box that is populated with entries and I can choose an entry but on the same transaction on IE I cannot choose any entries in the same field as it does not have a dropdown option.
    Am I doing something wrong here in the ABAP? Am I assuming incorrectly that SAPWebConsole can have dropdown lists?
    Thanks,
    N.
    I know that this is stictlynotan ABAP issue but it does have possible overlap.

    Hi Niall!
    WebSAPConsole has in it's own limitations with regards to Dialog Programming Development, but a much better version than SAPConsole(Text Based).You cannot have drop down on WebSAPConsole on RF Transaction,pl suppress it in you dialog programming, both F1 & F4.Pl look at the Supported Features in the WebSAPConsole USers Guide.
    Let me know if you have any additional questions regarding this?
    Thanks
    Gisk
    Message was edited by: Sivakumar Ganesan(Gisk)

  • Updating extended fields in SRM Business Partner Web Dynpro UI does not work

    Hey community,
    I'd like to extend the SAP SRM Business Partner Web Dynpro (SRM 7.13). I did it like in SAP Note 1386310 described. Everything works fine, the fields show the correct data. But updating these fields does not have any effect.
    I only want to extend the existent fields NAME_ORG3 and NAME_ORG4. I did the following steps:
    - Because of the fact that the fields are existent and not custom, I skipped the extension of structures INCL_EEW_BUT000 and INCL_EEW_BUT000_X (ok, in utter despair I even tried this, but of course I got the message "fields already exist...")
    - I added the 2 fields to the SRM business partner data transfer structure INCL_EEW_BP_CSF_COMPANY_DATA.
    - In Web Dynpro /SAPSRM/WDC_MODC_NAME, view V_PS_OIF_NAME I added the fields NAME_ORG3 and NAME_ORG4 to the context node COMPANY_DATA
    - I added corresponding Input fields and labels to the WD layout.
    - in view /sapsrm/v_mdfsbc I customized the new fields
    -> the new fields are visible in the WD, and, oh wow, they even show the correct data!
    -> Unfortunately, updating the fields does not work, but000 does not get any data.
    Debugging the function "bupa_central_extincl_change" brings up, that function BUP_MEMORY_BUT000_GET gets a but000 structure with filled NAME_ORG1 and NAME_ORG2, but NAME_ORG3 and NAME_ORG4 are empty.
    I also regarded SAP Note 1453747, but the code was already right.
    Any Ideas? Many thanks in advance!
    Steffi

    Hi  Stefanie Krause,
    I am also facing the same problem
    I added the one fields "APPROVAL_EMAIL” to the SRM business partner, data transfer structure '/SAPSRM/S_CLL_BP_COMPANY_DATA ' . I have appended the structure.
    I added corresponding Input fields and labels to the WD layout.
    -> the new fields are visible in the WD,
    -> i am able to visible the input field in WD,
    But if add some value press on next tab and back to the screen the value will be refreshed .
    Kindly help me
    Thanks and Regards,
    Maruthi.M

  • Infopath does not default yes/no field value.

    More infopath issues.
    I have 2 yes/no fields in a SharePoint list.  In infopath, the fields are defined to default to FALSE.  When i attempt to add a new row or edit an existing row, infopath throws an error 
    The form cannot be submitted because it contains validation errors.
    So basically, Infopath does not default the value as defined in the form, and then throws an error because it didn't default it.  I tried setting the value in the form in a rule if it's not TRUE or FALSE but this also does not work.  Tried setting
    the value to "false" also but again, it does not execute the rule as instructed.  The error says only "true" or "false" are permitted but infopath provides "TRUE" and "FALSE" as the options on the box. 
    Infopath needs to decide on what it wants! 
    In addition, Infopath changed the definition of my field to default to "YES" when I had it defaulting to "NO". 
    I think the problem is that infopath has the wrong idea.  SharePoint uses "YES/NO" as values while infopath thinks YES=TRUE and NO=FALSE.  Pretty stupid eh.
    One question... IS INFOPATH A RECOMMENDED OPTION FOR SHAREPOINT?????   MY GUESS:  NO WAY!!!  This tool is a complete piece of junk!

    Hello Roland and jd,
    I've the same issue here with InfoPath 2010 (international version of MS Office Professional Plus Version 14.0.7015.1000 (32-bit) - but set to English language).
    The property of a check box only offers (Blank), TRUE, FALSE, 1, 0 for data type "True/False (boolean)".
    TRUE and FALSE are not accepted at "Form Submit" - this is due to a built-in check, not a validation rule.
    I tried to set the boolean field with a rule to either "true" or "false" just before submit - the rule action dialog does not check the data type like the check box but provides an empty text field. However, this does
    NOT solve the issue!!
    I can avoid the hassle with a text field which I assign "TRUE" and "FALSE".
    The boolean field is not used as SharePoint property, so this is definitly a problem of Infopath 2010.
    Any ideas? Suggestions?

  • A2109 tablet autorotate does not work

    The autorotation on my recently purchased tablet A2109 does not work. I look in settings and the auto rotate field is not highlighted, I therefore cannot choose to turn it on.The tablet has the Android jellybean OS and I did update it but to no avail. Can anyone help?
    Thanks
    Solved!
    Go to Solution.

    Dear tdsouza
    Welcome in lenovo forums
    just a clarification , do you mean option Rotate is dimmed in setting 
    Please let me know 
    Thanks
    Alaa
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for