Preventing blank values for dDocAccount

We are using Oracle Services using RIDC. I have few questions regarding dDocAccount:
1. How do you make dDocAccount a required parameter using the UCM configuration manager?
2. During document checkin, the dropdown for account displays a blank value along with some custom accounts. How do I prevent the blank value from appearing?

1) You can achieve this by removing the ability of users to checkin 'documents without accounts'
You can access this setting from User Admin Applet >Users tab > Edit > Accounts tab > documents without accounts ()
you can leave them with documents without accounts (R) if you like.
This does mean everything must be checked in a named account byt this user.
You will notice the Account field goes red on the checkin page to symbolise that it is mandatory
2) Without a customization I am not sure you can do this...it would be very easy to est a default value via profiles/rules however.
Tim
Edited by: Tim Snell on 15-Feb-2011 06:14

Similar Messages

  • How to return blank value for a column

    Hi All
    We would like to create a short version of the BI report for the scorecards that has the same number and order of the columns, but far less rows. This will improve the size and performance of the Overhead, Services scorecard.
    For some columns, we need blank values , which means the content should be blank , but the column should appear in the report.
    I have tried checking some options in "column format" tab under column properties and played with "column header interaction" and "value interaction" , however i couldnt get the desired results.
    Can we achieve this?
    Please suggest me on the same.
    Regds
    Mano

    Mano wrote:
    For some columns, we need blank values , which means the content should be blank , but the column should appear in the report.Can you not just add any colulmn from the subject area and change its formula to '' ? You can rename the column name, and it will show blank values for all the records.
    Assign points if helpful.
    Regards,
    -Amith.

  • Default the blank value for MessageChoice

    Hi,
    I have created a Message Choice Bean and I require to have a blank value as the first value followed by the original values. How to achieve this ?
    I have also tried setting through personalization 'Add Blank Value' to 'true' and also tried with the function 'setAllowBlankValue(true)' for the messagechoice bean. But its not working.
    Please help me by giving the valuable suggestions to achieve the above.
    With Thanks,
    Thiyagarajan

    The only possible case of this happening, is you might have made required property as true, which removes blank value because if value is required in messagechoiceebean, then blank alue can not be included.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Displaying blank value for the Rounding Value field in MM03 transaction

    Hello All,
    We are using BDC to create a material master record.Some users are not loading the rouding value in the MRP1 screen. The rounding value is stored in the MARC table which has the data type as QUAN. Thus when there is no value being passed it implicitly converts the blank value to 0.00. The users do not want the rounding value to be displayed as 0 when they view the material record using mm03. Kindly let me know if there is any way to display the rounding value as blank if no value is present.
    Thanks in Advance.
    Regards,
    Avinash Sai N S

    Hai siddharth,
    I have enabled the BADi HRPBSIN_ADDITIONAL_CHECKS to do validations for loans. Can u pls explain is there any FM or wat can be used to set default value for the field in portal.
    Pls give some suggestions,
    thnaks,
    Nalla B.

  • Blank values for editable JComboBox

    Hello,
    I have a editable JComboBox that the user can erase its current value and if they simple change focus (like click on a text field on the same panel) the combo box is left blank. i would like to have it so that if the user leaves focus of the box and its blank that current value goes back to what it was before they erased it.
    Many thanks,
    Jonathan

    import java.awt.FlowLayout;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import java.awt.event.ItemEvent;
    import java.awt.event.ItemListener;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.SwingUtilities;
    public class NonBlankCombo {
       JComboBox comboBox;
       Object previousContent;
       void makeUI() {
          Object[] data = {"One", "Two", "Three", "Four", "Five"};
          previousContent = data[0];
          comboBox = new JComboBox(data);
          comboBox.setEditable(true);
          comboBox.addItemListener(new ItemListener() {
             public void itemStateChanged(ItemEvent e) {
                if (e.getStateChange() == ItemEvent.SELECTED
                      && !((String) comboBox.getSelectedItem()).trim().isEmpty()) {
                   previousContent = comboBox.getSelectedItem();
          comboBox.getEditor().getEditorComponent().addFocusListener(new FocusListener() {
             public void focusGained(FocusEvent e) {
                previousContent = comboBox.getSelectedItem();
             public void focusLost(FocusEvent e) {
                if (((String)comboBox.getSelectedItem()).trim().isEmpty()) {
                   comboBox.setSelectedItem(previousContent);
          JFrame frame = new JFrame("Non-blank Combo");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setSize(200, 100);
          frame.setLayout(new FlowLayout());
          frame.add(comboBox);
          frame.add(new JButton("Click"));
          frame.setLocationRelativeTo(null);
          frame.setVisible(true);
       public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
             public void run() {
                new NonBlankCombo().makeUI();
    }db

  • Removing # sign in the Report for Blank Value

    Guys,
    I was trying to use the below code VB, but i am getting error like Expected: End of statement.
    I am new to VB, do anyone have step by step guide to implement the below macro for Excel and remove the # from BEx analyzer.
    Do i need write this macro for each query? I totally dont understand the link.
    Kindly guide to run the macro and avoid # in reporting.
    Do I need to implement this macro on each end user client server ?
    Removing '#' in Analyzer (Report)
    In ODS, there are records having a value BLANK/EMPTY for some of the fields. EX: Field: `Creation Date' and there is no value for some of the records.
    For the same, when I execute the query in Analyzer, the value `#' is displaying in place of `BLANK' value for DATE and other Characteristic fields. Here, I want to show it as `BLANK/SPACE' instead of `#'. How to do this?
    I had a similar problem and our client didn't want to see # signs in the report. And this is what I did. I created a marco in Workbook as SAPBEXonRefresh and run my code in Visual Basic editor. You can run same code in query also as when you will refresh query this # sign will be taken care. You can see similar code in SAP market place.
    I will still suggest not to take out # sign as this represent no value in DataMart. And this is SAP standard. I did convince my client for this and later they were OK with it.
    The codes are below:
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    If queryID = "SAPBEXq0001" Then
    resultArea.Select
    'Remove '#'
    Selection.Cells.Replace What:="#", Replacement:="", LookAt:=xlWhole, _ SearchOrder:=xlByRows, MatchCase:=False, MatchByte:=True
    'Remove 'Not assigned'
    Selection.Cells.Replace What:="Not assigned", Replacement:="", LookAt:=xlWhole, _ SearchOrder:=xlByRows, MatchCase:=False, MatchByte:=True
    End If
    ' Set focus back to top of results
    resultArea(1, 1).Select
    End Sub
    Regards,
    Anand
    Edited by: araj123 on Oct 19, 2010 4:51 PM
    Edited by: araj123 on Oct 19, 2010 4:58 PM

    Anand,
    This is what I have used in the past and works just fine
    Sub HashRemoval()
        Application.ScreenUpdating = False
        Cells.Replace What:="#", Replacement:="", LookAt:=xlWhole, SearchOrder:= _
            xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
        Application.ScreenUpdating = True
    End Sub
    But I have this as a separate macro that can be called any time.
    Cheers
    Craig

  • ODS Key Fields allows blank values in Transformation

    Dear Experts,
    I have two layers:
    1. Datawarehouse layer (purpose is to represent exactly data at the backend)
    2. Consolidation Layer
    Scenario 1:
    In Datawarehouse layer, the fiscal variant is a key field in ODS and I have two other key fields i.e. combine to form a composite key.
    When I load the data from PSA to this ODS, I have a record which contains blank value for the fiscal variant. It successfully loads into the Datawarehouse ODS.
    Sceanrio 2:
    In the consolidation layer, i have 4 key fields out of which fiscal variant is one of them. Now when I load the data from the datawarehouse ods to consolidated ods, it throws an error saying:
    Diagnosis
         An exception fiscvarnt_missing was raised while executin
         module RST_TOBJ_TO_DERIVED_TOBJ .
    System Response
         Processing the corresponding record has been terminated.
    The transformation mapping for the fiscal varaint in both sceanarios is 1:1 mapping with the rule type 'Time Characteristic'.
    My questions is:
    1. Why different behaviour during scenario 1 and sceanario 2
    2. Solution to the above issue
    Thanks
    Jain

    Thanks J.S.
    Yes the format selected in the field for the datasource is 'Internal'.
    When loading the data from R3>PSA>ODSX(Datawarehouse Layer), I have no problems even when the field is blank.
    When loading from ODSX-->ODSY(Consolidated Layer) the empty (blank) field for that records throws error.
    Any ideas?
    Jain

  • Urgent :CHECK BLANK VALUES

    Hi
    I am fetching some data into a date IO but the problem is that some records contain a blank value for that fild.
    So i am using a routine to assign some value to that field based on some logic.
    i have used
    if DATEIO is intial...
    then codn..
    but the code doesnt seems to work.
    Is this the right way to check. or shud i use if DATEIO = '00000000'.

    Hi,
    What you put is correct, but let me review your code:
    Assumptions: You are using the code in update/field routine.
    if comm_structure-date is initial.
    logic......
    endif.
    Cheers,
    Rewards accepted

  • Capturing blank and non blank values in parameter

    In one of the report there is only one parameter “BU VP Name”, now the business has added one more field “Director” to the application and they want this to be as a parameter. Now all the new records will have Director name
     and old records will be blank for Director. How can I create a multi parameter with blank and relevant values for my report. Please note I am using sharepoint list to create the report.
    SFH

    Hi Syedfpl,
    According to your description, you want to add a parameter which include a blank value.
    In Reporting Service, we are allowed to use blank value for a multivalue parameter, but we are not allowed to use null values. So in this scenario, you should insert some blank values(‘’) into column “Director” so that we don’t need convert null values into
    string at query level. Besides, in order to be allowed to use blank values in a parameter, we should choose the option "Allow blank value ("")". Also “Allow multiple values” option should be checked. As we tested in our environment, the
    final result looks like below:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Restore default value for SharePoint Store

    Hi,
    I followed this TechNet article to set up SharePoint App Store! 
    https://technet.microsoft.com/en-us/library/fp161236.aspx
    At the end of the article it stands: 
    In some cases, for example, when you have an on-premises SharePoint 2013 farm where updates are installed infrequently, you will need to run a cmdlet to update the URL used to point to the SharePoint Store:Set-SPAppStoreConfiguration -Url http://office.microsoft.com -Enable $true
    When I changed this value the users couldn't access the store anymore. I tried to change this value by using a blank value for -Url, but it didn't change the value. Now I have a value that doesn't work and I can't change it back to original value which is
    empty! 
    My question is how can I reset this value and remove http://office.microsoft.com from my farm?
    Regards
    Henrik A. Halmstrand
    sharepointrevealed.com
    getspconfig.codeplex.com
    Please click Mark As Answer; if a post solves your problem or
    Vote As Helpful; if a post has been useful to you.

    Hi,
    Refer to the following to turn off the SharePoint Store.
    Set-SPAppStoreConfiguration -Enable $false
    Refer to the following article about Set-SPAppStoreConfiguration:
    https://technet.microsoft.com/en-us/library/jj730451.aspx
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Tab delimition for the blank values

    Hi experts,
    I need to generate the tab delimited file.
    I m using FCC for the same.
    if there are 3 fields in my structure and values are coming for all, then its working fine, but if any of the blank value is coming as blank, the its giving prb.
    I am facing the below problem.
    if  Input is - Jack  Michael  Richard
    output file is generated prorperly
    if input is- Jack           Richard
    then output is coming as - Jack  Richard 
    But I want result as - Jack                  Richard
    Please advise.
    Thanks in advance.

    Hi,
    Try this mapping:
                                                                                    InputField----
    >
    InputField --->
                           equalS  -
    >ifThenElse
    Constant[] --->                              Constant(with blank -
    >
                                                          spaces equal to length)
    -Supriya.

  • APO DP Macro for Blank Values

    HI all
    In SCM 5.0 the system now distinguishes between 0 values and Blank values.
    I am trying to get a macro to run if a value in DP is Blank (not Zero)
    I cannot find a function in the Macro builder to do this. 
    Can anyone help?
    regards

    somemore information on IS_INITIAL macro funtion
    IS_INITIAL()
    Syntax
    IS_INITIAL( Key Figure )
    Key Figure: Row, column, or cell element (data source = row attributes)
    Description
    The IS_INITIAL function returns the value 1 if the cell is initial. (The column results from the current step iteration; the row is determined by the Key Figure parameter.) Apply this function for key figures that can distinguish between zero values and initial values. This function is not available if the compatibility mode is activated for the macro book.

  • IE11 - registry value for AcceptLanguage becomes blank

    We are in testing phase for IE9 to IE11 migration in our environment.
    On test system we found that on gpupdate the value of registry "AcceptLanguage" in
    HKCU:\Software\Microsoft\Internet Explorer\International becomes blank, and this is not acceptable since some of our applications are dependent on this value
    Even if the entry is removed or set with a value, upon gpupdate the entry is reappearing with a blank value.
    We have checked all linked GPOs for users & computers and scripts for any settings affecting this value and found none
    The registry was unaffected when the same computer had IE9 and group policy was refreshed
    Any help would be greatly appreciated

    Hi,
    I would like to confirm with you that how you migrated IE 9 to IE11?
    1. Just migrate the data from IE 9 on Windows 7 to IE11 on Windows 8.1.
    or
    2. Migrate the data from IE 9 on Windows 7 to IE11 on Windows 7.
    If the second scenario, there should be any problem, I just test easily upgrade IE 9 to IE 11, and the settings are all taken over from IE 9.
    For the first scenario, the settings will also affect the input language and Windows store preference language, that's should be the issue.
    Kate Li
    TechNet Community Support

  • How to find average for non blank values

    I need to calculate avarage for each restricted key figures. There are some blank values in this restricted key figures. Now I need to sumup and divide by non blank count. Do you know how to do it? How to count non blnak values and find avereage.
    Thanks,
    Phani

    In the properties of Key figure used in column/row, Calculations section, you can maintain calculation type for result as well as single value. There is "Average of all values not equal 0" option is available.
    Rgds,
    Vikram.
    Edited by: Vikram Kate on May 22, 2008 11:23 AM

  • Creation of Blank CR for MDG-S

    Hi
    I need to need blank CR (Without proving any value for Mandetory fields also but with CR Description and Attachment).
    For this I selected BP Role BBP000 and assigned to Vendor Account Group 0001 .We are using Vendor Like UI with template WS5310044.
    I do custimation in Configure Properties of Change Request Step for Step 00 as per below
    So every error message converts to warning message and I can able to submit CR as Reqestor.
    Here are few questions
    Is it possible to make Account Group field as optional in Vendor Like UI? so  that requestor need to provide only CR description with attachment only.
    Even if requestor provides Account Group as 0001 then I can see error messages converted into warning messages as per below
    But when requestor selects attachment tab to attach file all warnig messages are converted back into error errors as per below
    How to achive this in this case?

    Hi Sanjay,
      May be you should approach in the following way:
    May be you should try to create a new implementation for the UI Badi USMD_UI_EVENT2 for the method IF_EX_USMD_UI_EVENT2~MODIFY_VIEW and with in the signature of the method you have an exporting parameter ET_PROPERTY which is a structure try to clear the value required and check to make it as optional.
    Once you define a implementation for UI BADI the remaining things are achievable. by above mentioned configurations.
    Regards,
    Pavan

Maybe you are looking for

  • Adding music folder from hard disk to itunes causes the original music  to vanish

    what is causing itunes to delete original music folder from hard disk when selecting add folder to itunes

  • How can i remove a credit card?

    How do i remove a credit card from my itunes account

  • 7.3 Components not building on NWDI 7.0

    Hi All, I am currently experiencing an issue with NWDI and am at a loss on how to proceed... Environment: CBS - Configured (to the best of our knowledge) to enable JDK1.6.0 builds but default to 1.4.2 builds TRACK - The default build variant for our

  • Digital Artifacts in animation

    I am working on an animation project. I have talent that is chroma keyed in the animated background (animation in DV-NTSC mov. at highest setting in fcp). When the DV tape plays with talent in fcp - no digital artifcats. When the animation is rendere

  • Change folders color labels

    Hi, I want to change the color label of folders which contain specified files, eg movs, jpegs. I don´t want to copy or remove files, because folder size is about 140 GB. The biggest group of files is about 50 GB. I mention this, because I think getti