Problem in Setting Focus, on a dynamically generated field

Hi all,
I am having a jsp page, in which I have dynamically generated n number of input text fields, and with the function onchange="chk();", and i am passing the current text field value, and 2 more parameters min and max.
In function chk(), i am validating the input value by condition it should be within min and max..
my problem is i want to[b] get back the focus to the input text box, where the input is entered and not satisfied my condtion
function chk(a,b,c)  / /a is my i/p, b and c are min and max values
if( (parseInt(a)>=parseInt(b)) && (parseInt(a)<=parseInt(c)) )
document.form1.submit;
return true
else
alert("Invalid Output");
var element=event.srcElement.name;
alert(element); // I am able to get the name of input text box
alert(event.srcElement.tagName);  // this gives INPUT
if(event.srcElement.tagName=='INPUT')
alert("yes"); // i can get this alert
event.srcElement.focus();  // the focus can't be set back to that input field or element
return false
}

try this and say me if it works fine!!!
<html>
<head>
<script>
function fileds() {
     var myParent = document.getElementById('myDiv');
     var text = document.createElement('input');
     text.setAttribute('id', 'myText');
     myParent.appendChild(text);
     document.all.myText.focus();
</script>
</head>
<body>
<input type="button" onClick="javascript:fileds()" value="Create And Give Focus">
<br>
<div id="myDiv"></div>
</body>
</html>
bye

Similar Messages

  • Problem in setting dataprovider for a dynamically generated datagrid

    Hi everybody
    I have a issue in flex, I am generating datagrids dynamically
    by using repeaters but i am unable to set a seperate dataprovider
    for each grid
    Grid1 might come with some set of data and grid 2 with some
    and so on so i want to set dataproviders at runtime for each grid
    how can i do that
    i have pasted my code for generating datagrid dynamically plz
    go thru that and find me some solution
    <mx:Repeater id="ProjectNames"
    dataProvider="{GetTimeSheetDetails.lastResult.NewDataSet.Table1}"
    >
    <mx:Canvas label="{ProjectNames.currentItem.ProjectName}"
    width="100%" height="251" id="CanvasTimeSheet"
    creationComplete="disablecanvas();">
    <mx:DataGrid x="10" y="10" width="864" height="206"
    editable="true"
    dataProvider="{GetTimeSheetDetails.lastResult.NewDataSet.Table}"
    id="dgTimeSheet">
    <mx:columns>
    <mx:DataGridColumn headerText="Task" dataField="TaskName"
    width="60" >
    </mx:DataGridColumn>
    <mx:DataGridColumn headerText="Task Description"
    dataField="TaskDescription" width="150" editable="true"/>
    <mx:DataGridColumn headerText="M" dataField="Monday"
    width="15" editable="true"/>
    <mx:DataGridColumn headerText="T" dataField="Tuesday"
    width="15" editable="true"/>
    <mx:DataGridColumn
    </mx:columns>
    </mx:DataGrid>
    <mx:Label x="564" y="222" text="0" width="35"
    textAlign="right" id="lblMonday" />
    <mx:Label x="602" y="222" text="0" width="33"
    textAlign="right" id="lblTuesday"/>
    </mx:Canvas>
    </mx:Repeater>
    </mx:TabNavigator>

    try this and say me if it works fine!!!
    <html>
    <head>
    <script>
    function fileds() {
         var myParent = document.getElementById('myDiv');
         var text = document.createElement('input');
         text.setAttribute('id', 'myText');
         myParent.appendChild(text);
         document.all.myText.focus();
    </script>
    </head>
    <body>
    <input type="button" onClick="javascript:fileds()" value="Create And Give Focus">
    <br>
    <div id="myDiv"></div>
    </body>
    </html>
    bye

  • Making a dynamically generated field as Read Only

    Hi All,
    I am extending a standard CO and in that I wanted to make an entire table as read only. I checked by personalizing the page from front end, but as the items are dynamically generated fields , they are not visible in personalize page.
    So is there any way to cach these fields and make them read only programmatically.
    Thanks,
    Srikanth

    Hi Pratap,
    I have looked into the view source and took the name of a input type ( There is no ID for the field) and used it in findIndexedChild, but it returns a null. I guess this is happening is the current CO is a mere region level CO and it is not being given the access.
    The code in the class file is as follows :
    public static void processTable(OAPageContext oapagecontext, OAWebBean oawebbean)
    oapagecontext.startTimedProcedure("CrossTableCO", "processTable");
    String s = null;
    String s1 = null;
    int i = oawebbean.getIndexedChildCount();
    String as[[][]] = new String[7];
    int j = 0;
    String as1[[][]] = new String[i][6];
    for(int k = 0; k < oawebbean.getIndexedChildCount(); k++)
    UINode uinode = oawebbean.getIndexedChild(k);
    if(!(uinode instanceof OAMessageStyledTextBean))
    continue;
    OAMessageStyledTextBean oamessagestyledtextbean = (OAMessageStyledTextBean)uinode;
    if(oamessagestyledtextbean.isRendered())
    oamessagestyledtextbean.setRendered(false);
    oamessagestyledtextbean.setAttributeValue("benCustomBeanRender", "Y");
    if("TotalPlanLabel".equals(oamessagestyledtextbean.getUINodeName()))
    s1 = oamessagestyledtextbean.getLabel();
    continue;
    if(s == null)
    s = oamessagestyledtextbean.getViewUsageName();
    as[j][0] = oamessagestyledtextbean.getViewAttributeName();
    as[j][1] = oamessagestyledtextbean.getSortByAttributeName();
    as[j][2] = oamessagestyledtextbean.getLabel();
    as[j][3] = oamessagestyledtextbean.getExportByViewAttrName();
    as[j][4] = oamessagestyledtextbean.getDestination();
    as[j][5] = oamessagestyledtextbean.getUINodeName();
    as[j][6] = oamessagestyledtextbean.getDataType();
    if(as[j][4] != null && as[j][5] != null)
    as1[j][0] = as[j][5];
    as1[j][1] = as[j][0];
    as1[j][2] = s;
    as1[j][3] = as[j][4];
    as1[j][4] = as[j][6];
    as1[j][5] = as[j][3];
    j++;
    continue;
    if("TotalPlanLabel".equals(oamessagestyledtextbean.getUINodeName()))
    s1 = "XXHideXXTotalXX";
    oawebbean.setAttributeValue("CrossTableUpdateInfo", as1);
    oawebbean.setAttributeValue("CrossTableRenderCount", Convert.getString(j));
    if(s == null)
    return;
    OAViewObject oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject(s);
    if(oaviewobject == null || !oaviewobject.isPreparedForExecution() || oaviewobject.first() == null)
    return;
    } else
    oawebbean.addIndexedChild(createTable(oawebbean, oaviewobject, as, j, s1));
    oawebbean.setAttributeValue("CrossTableRowCount", Convert.getString(oaviewobject.getRowCountInRange()));
    oapagecontext.endTimedProcedure("CrossTableCO", "processTable");
    return;
    private static UINode createTable(OAWebBean oawebbean, OAViewObject oaviewobject, String as[][], int i, String s)
    int j = oaviewobject.getRowCountInRange();
    DataTextNode datatextnode = new DataTextNode(new DataBoundValue("text"));
    String as1[] = new String[j + 1];
    CrossTableData acrosstabledata[] = new CrossTableData[i];
    int k = -1;
    for(int l = 0; l < i; l++)
    acrosstabledata[l] = new CrossTableData(new CrossTableCellData[j + 1]);
    for(int i1 = 0; i1 <= j; i1++)
    if(i1 > 0)
    try
    if(s != null && j > 1 && CT_NUM_MINUS_ONE.equals(oaviewobject.getRowAtRangeIndex(i1 - 1).getAttribute("GroupOiplId")))
    as1[i1] = s;
    else
    as1[i1] = (String)oaviewobject.getRowAtRangeIndex(i1 - 1).getAttribute("Name");
    catch(Exception exception)
    datatextnode = null;
    as1[i1] = "";
    if(k < 0 && j > 1 && "XXHideXXTotalXX".equals(s) && CT_NUM_MINUS_ONE.equals(oaviewobject.getRowAtRangeIndex(i1 - 1).getAttribute("GroupOiplId")))
    k = i1;
    for(int j1 = 0; j1 < i; j1++)
    if(i1 == 0)
    acrosstabledata[j1].getData()[i1] = new CrossTableCellData(as[j1][2]);
    else
    acrosstabledata[j1].getData()[i1] = new CrossTableCellData(null, as[j1][2], oaviewobject, i1 - 1, as[j1][0], as[j1][1], as[j1][3], as[j1][4], as[j1][5], as[j1][6]);
    TableBean tablebean = new TableBean("CrossTable", new ArrayDataSet(acrosstabledata), null, null, datatextnode, new ArrayDataSet(as1, "text"));
    tablebean.setWidth("100%");
    tablebean.setSummary(" ");
    tablebean.setNameTransformed(false);
    tablebean.setTableFormat(new DictionaryData("tableBanding", "rowBanding"));
    tablebean.setID((new StringBuilder()).append("CrossTable").append(oawebbean.getID()).toString());
    oawebbean.setAttributeValue("CrossTableId", tablebean.getID());
    DictionaryData adictionarydata[] = new DictionaryData[j + 1];
    Object obj = null;
    Object obj1 = null;
    for(int k1 = 0; k1 <= j; k1++)
    OAWebBean oawebbean1 = createColumn(k1);
    if(k1 == k)
    oawebbean1.setRendered(false);
    tablebean.addIndexedChild(oawebbean1);
    if(k1 == 0)
    adictionarydata[k1] = new DictionaryData("columnDataFormat", "textFormat");
    continue;
    try
    String s1 = (String)oaviewobject.getRowAtRangeIndex(k1 - 1).getAttribute("TextFormat");
    if("Y".equalsIgnoreCase(s1))
    adictionarydata[k1] = new DictionaryData("columnDataFormat", "textFormat");
    else
    adictionarydata[k1] = new DictionaryData("columnDataFormat", "numberFormat");
    catch(Exception exception1)
    adictionarydata[k1] = new DictionaryData("columnDataFormat", "numberFormat");
    tablebean.setColumnFormats(new ArrayDataSet(adictionarydata));
    return tablebean;
    private static OAWebBean createColumn(int i)
    OAFlowLayoutBean oaflowlayoutbean = new OAFlowLayoutBean();
    OAMessageTextInputBean oamessagetextinputbean = new OAMessageTextInputBean();
    OAMessageStyledTextBean oamessagestyledtextbean = new OAMessageStyledTextBean();
    OAMessageDateFieldBean oamessagedatefieldbean = new OAMessageDateFieldBean();
    OASwitcherBean oaswitcherbean = new OASwitcherBean();
    Hashtable hashtable = new Hashtable();
    hashtable.put("CtPPRTrgCol", new DataBoundValue(new CrossTableColumnData(i, "Name")));
    oaswitcherbean.setNamedChild("input", oamessagetextinputbean);
    oaswitcherbean.setNamedChild("date", oamessagedatefieldbean);
    oaswitcherbean.setChildNameBinding(new CrossTableColumnData(i, "Render"));
    oaflowlayoutbean.addIndexedChild(oaswitcherbean);
    oaflowlayoutbean.addIndexedChild(oamessagestyledtextbean);
    oamessagetextinputbean.setNameBinding(new CrossTableColumnData(i, "Name"));
    oamessagetextinputbean.setTextBinding(new CrossTableColumnData(i, "Text1"));
    oamessagetextinputbean.setAttributeValue(DESCRIPTION, new DataBoundValue(new CrossTableColumnData(i, "Label")));
    oamessagetextinputbean.setAttributeValue(COLUMNS_ATTR, "12");
    oamessagetextinputbean.setAttributeValue(PRIMARY_CLIENT_ACTION_ATTR, OAWebBeanUtils.getFirePartialActionForSubmit(oamessagetextinputbean, null, "update", hashtable, null));
    oamessagetextinputbean.setDataType("NUMBER");
    oamessagetextinputbean.setAttributeValue(READ_ONLY_ATTR, new DataBoundValue(new CrossTableColumnData(i, "ReadOnly")));
    oamessagetextinputbean.setAttributeValue(ON_SUBMIT_VALIDATER_ATTR, new DataBoundValue(new CrossTableColumnData(i, "SubmitValidator")));
    oamessagedatefieldbean.setNameBinding(new CrossTableColumnData(i, "Name"));
    oamessagedatefieldbean.setTextBinding(new CrossTableColumnData(i, "Text1"));
    oamessagedatefieldbean.setValueBinding(new CrossTableColumnData(i, "Text1"));
    oamessagedatefieldbean.setAttributeValue(DESCRIPTION, new DataBoundValue(new CrossTableColumnData(i, "Label")));
    oamessagedatefieldbean.setAttributeValue(COLUMNS_ATTR, "12");
    oamessagedatefieldbean.setAttributeValue(PRIMARY_CLIENT_ACTION_ATTR, OAWebBeanUtils.getFirePartialActionForSubmit(oamessagedatefieldbean, null, "update", hashtable, null));
    oamessagedatefieldbean.setDataType("DATE");
    oamessagedatefieldbean.setAttributeValue(READ_ONLY_ATTR, new DataBoundValue(new CrossTableColumnData(i, "ReadOnly")));
    oamessagestyledtextbean.setTextBinding(new CrossTableColumnData(i, "Text2"));
    return oaflowlayoutbean;
    Pls let me know for any clarifications.
    Thanks,
    Srikanth

  • Problem using Setting Focus

    Hello there, can you help me on how to use the set Focus.
    For instance I have a 3 JTextField, when I run it, the focus is on the first textField, what I want is that, when I pressed the enter key on the keyBoard, the focus will be on the 2nd textField, and when I pressed again the enter key, the focus will be on the 3rd textField and so on.
    can you give me a sample code on this one, thanks.

    the last post in this thread might give you some ideas
    http://forum.java.sun.com/thread.jspa?threadID=713697&tstart=0
    note: will only work if the textfields follow each other in the focus traversal policy

  • Problem in setting focus in JTable

    Hi,
    In my application I am using JTable with a customized table model. The table has two columns. First column has jcombobox as its editor and the second column has the customized editor developed by me. This particular table appears in a wizard. When this wizard page (which contains the above JTable) is shown I set the keyboard focus on the JTable using JTable's requestFocus() method (I even tried with grabFocus()method but got the same result). But the focus does not appear on the JTable. Even none of the cells get the focus. Also no matter how many time I press tab key the focus does not shift to the next component in the page which happens to be a JButton. I have set the next focussable element for the JTable as that JButton. When I manually put the focus on one of the cells by clicking on it and then if I press either arrow key or tab key the focus is lost and it does not go either on the next cell or the JButton.
    If anybody can shed some light on what exactly needs to be done to give proper keyboard navigation for JTable please let me know.
    Regards
    Atul

    Hi Atul,
    I suspect your problem is with your cell renderer. The DefaultTableCellRenderer class has code in the getTableCellRendererComponent method that provides the visual indication as to which cell has the focus. You will want to do something similar in your JPanel-subclassed renderer - perhaps change the border or the background color to indicate whether a cell is selected or not.
    Note also that there is a difference between a cell that has "isSelected" set to true, which indicates that the cell is part of the current selection, and a cell that has "hasFocus" set to true, which indicates that the cell is the last one to be clicked on. Actually, it seems to be a bit more complicated than that, but that's at least part of what "hasFocus" indicates. A cell can be selected and not have the focus, and a cell can have the focus but not be selected. You may want to setup your renderer to clearly indicate which of these states are set and then run your app and play with the table selection to get a feel for how it works.
    Hope that helps.
    - Tyler

  • Problem to set focus to the particular cell in matrix

    Hi All
    I want to set the focus on the particular set on the matrix. i used following code
       oMatrix.Columns.Item("MinSal").Cells.Item(iRow).Click(SAPbouiCOM.BoCellClickType.ct_Regular)
    but it execute two times and doesnt work Properly.
    Thanks
    Rupinder

    Hi
    If (pVal.ColUID = "MinSal") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_LOST_FOCUS) Then
                                                                                If MinSalaryRange(pVal.Row) = False Then
                                        BubbleEvent = False
                                                                                    End If
    and MINSalaryRange is a function
    Private Function MinSalaryRange(ByVal iRow As Integer) As Boolean
            Dim oMatrix As SAPbouiCOM.Matrix = oForm.Items.Item("SalGrade").Specific
            Dim MinSal, MinSal1, MaxSal As Integer
            Try
                If iRow > 1 Then
                    For i As Integer = 1 To iRow - 1
                        If oMatrix.Columns.Item("Date").Cells.Item(iRow).Specific.String = oMatrix.Columns.Item("Date").Cells.Item(i).Specific.String Then
                            MinSal = oMatrix.Columns.Item("MinSal").Cells.Item(iRow).Specific.String
                            MinSal1 = oMatrix.Columns.Item("MinSal").Cells.Item(i).Specific.String
                            MaxSal = oMatrix.Columns.Item("MaxSal").Cells.Item(i).Specific.String
                            If (MinSal >= MinSal1) And (MinSal <= MaxSal) Then
                                SBO_Application.MessageBox("Min Salary ")
                                'oMatrix.Columns.Item("MinSal").Cells.Item(iRow).Click(SAPbouiCOM.BoCellClickType.ct_Regular)
                              '  oMatrix.Columns.Item("MinSal").Cells.Item(iRow).Click()
                                MinSalaryRange = False
                            End If
                        End If
                    Next
                Else
                    MinSalaryRange = True
                End If
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
                MinSalaryRange = False
            End Try
        End Function
    Thanks

  • Problem of set focus on the cell during the validation.

    I am having a table with 5 columns.
    I can change the value of the 2nd cell in 2 ways.
    one by 1. editing the 2nd cell
    or by 2. clicking the button avilable in the 1st cell.(the button editor will set the value to the 2nd cell of selected row)
    In both cases, i have to validate the value in the 2nd cell.
    If the value is not meeting some criteria, i am pop uping a msg box, contain approprite message.
    and the cursor should be focused on the 2nd cell until the value will be corrected.
    i done for the case 1.
    but for the case 2, i couldn't keep the cursor on the 2nd cell when the value got changed by the button editor of cell 1, and if the value is wrong
    The 1st cell 2nd cell are having it own Renderer and Editor
    even i tried a lot, but i not yet achieved it.
    pls. guide me to get a perfect result.

    Thnks for u'r reply.
    the 1st part what i mentioned is done by the same way in those example by the sun site only.
    But in the 2nd part, when i set the value to text field by the button editor,
    the editor of the textField(2nd cell), is not got called.
    If i made to call editor also, i am unable to keep the cursor on 2nd cell

  • How to set focus on a specific UI field at the start of an application?

    Hello Web Dynpro ABAP experts,
    how can I set the focus/cursor on a specific UI (input) field at the start of an application?
    Thanks and best regards,
    Oliver

    Hi,
    I would suggest we don't play with focus.
    Handling the focus manually will go against the product standard Accessibility
    Regards
    Manas Dua

  • Dynamic generated fields

    Hi
    I'm new to JSF and could not find "the natural way" (for jsf) to manage dynamic fields. I mean, fields whose appereance are dynamically decided, even its name or id are dynamic.
    My case is quite more complicated but to exemplify, think about a simple application that captures the name and ages of your children. To do that, it first asks for how many children do you have, and then displays many fields as children you have.
    How can I do that in JSF ???
    Thanks in advance.
    Eduardo
    p.n. I've searched the forums and only find one question about it without any satisfactory answer.

    Hi, Try this and let me know if it works...
         for (int i = 0; i < ValueNode.size(); i++) {
                        ValueNode.setLeadSelection(i);
                        //get child node name
                        int NumFlds =
                             ValueNode.getNodeInfo().getStructureType().getNumberOfFields();
                        for (int count = 0; count <= NumFlds; count++) {
                             IField Fld =
                                  ValueNode.getNodeInfo().getStructureType().getField(count);
                             if (Fld != null) {
                                  FieldName = Fld.getName();
    wdComponentAPI.reportSuccess("Fld" + FieldName + "Val" + ValueNode.getElementAt(i).getAttributeValue(FieldName));

  • Dynamic generating fields

    While the user introducing data in a form already created, he needs extra fields for extra data to be added.
    Thus, I need to find a way for generating extra field in the form simultaneously.

    Hi :-)
    You have to create the extra fields and hide them by default.
    When you need to edit them you have to use their presence attribute via script to show (or hide) them.
    Naturally you have to use the correct event to recall that script.
    Bye,
    Roberto Bellarmino.

  • Set focus to object other than field

    I have a fairly large subform with a number of fields in it. In certain cases, I want to move the user's screen such that the top of the subform is showing. I've tried xfa.host.setFocus(), providing it with the subform object, but this does nothing. The documentation is not clear on whether this should work. Any ideas?

    Hi,
    here's the solution you're looking for.
    Adobe LiveCycle Designer Cookbooks by BR001: Using the Doc.scroll method in a LiveCycle Designer Form

  • Change and set Focus of window

    HI
    Guys
    I have encountered a problem while setting focus of my application's windows.
    i found the way i.e. by
    public void windowGainedFocus(WindowEvent wgf) {          
              if(this.isActive()){
                   VWM.theVWMDetailWindow.setAlwaysOnTop(true);
                   System.out.println(wgf.getSource());
         }by doing that there is errors came.....
    but there is no effect on the window theVWMDetailWindow to have operation setAlwaysOnTop successfully functoned
    Please help me out
    Thanks

    HI
    Yannix
    actually , i want to get the focus of my application window
    and then perform the action on it..
    The case is that::
    I have a main window..then on it a menu bar...
    when i click on one of the menu option then another separate window will be opened....and many other windows on different menu options....
    SO now i want to control their focus..... rite
    when my main window's focus lost means if i select another application
    another related opened window's must also lost their focus at that time.and when i came back to the main window another window's already opened must be on top.....
    So could you please suggest me some way , some solution to solve this
    Thanks

  • Setting Focus to datagrid next Item renderer column

    Hi
    I am having spark datagrid with 7 colum, I am facing problem to set focus for item renderer element.
    Below is my datagrid, when user enter some text in text input and press TAB key, I want trade button to be in focus. and from trade column Tab key press I want delete button to be in focus.
    I tried giving
    tabEnabled="true" tabChildren="false" tabFocusEnabled="true" editable="true" hasFocusableChildren="true"
    for datagrid.
    Also i tried giving selectedCell
    var _focusedCell:Object = new Object();
                                                                _focusedCell.rowIndex = dgTermDepo.selectedIndex;
                                                                _focusedCell.columnIndex = 5;
                                                                dg.selectedCell = _focusedCell as CellPosition;
    but nothing is working, I know I am missing some logic or property, Please suggest me on this
    Thanks
    Sonu

    You need to dig down into the event object and look at the
    listData.
    public function clickMe(e : MouseEvent ):void {
    var rowIndex : int = e.currentTarget.listData.rowIndex
    var colIndex : int = e.currentTarget.listData.columnIndex
    if the listData object is null when you try this you may need
    to add the following methods as overrides to the renderer or create
    a base renderer and extend all your renderers from the base
    renderer so that you always override these methods.
    [Bindable("dataChange")]
    private var _listData : BaseListData;
    override public function get listData() : BaseListData {
    return _listData;
    override public function set listData( value : BaseListData )
    : void {
    _listData = value;
    }

  • How  to set focus on next row inputfield in table

    Hello all,
    How  to set focus on next row input field in table
    Please help.
    Thanks in advance.
    CSP

    Hi,
    use the following code
    wdThis.wdGetAPI().requestFocus(nodeElement, attribute)
    Ex:
    Provide the attribute and replace the nodeElement with that of yours
    IWDAttributeInfo attributeInfo = wdContext.getNodeInfo().getAttribute("Your attribute");
           wdThis.wdGetAPI().requestFocus(wdContext.currentContextElement(), attributeInfo);
    Regards
    Ayyapparaj

  • Dynamic mandatory field error message is not getting displayed in webui

    Hi,
    In Appointment if the importance is HIGH i made Location as mandatory.For this i enhanced BT126H_APPT/ApptDetails. In the get_p_location() method of BTACTIVITYYH i have written the code.
    Now the problem is Error message for this dynamic mandatory field is not getting displayed in webui.
    I debugged in DO_FINISH_INPUT error message is getting generated but it is not getting displayed in ui.
    Can anybody tell where the problem is?
    Thanks,
    Hari.

    Hi Hari,
    Really sorry do not know how to convert this nug file to text
    How ever quick solution for your problem would be just keep your validation in 'DO_VALIDATE_INPUT' method of the view controller.
    Means even if the User clicks on SAVE , Since it fails here , it would not allow you to go further.
    Thanks,
    Rajesh P

Maybe you are looking for

  • Transaction CFC9 in ECC - regarding CIF change transfers to APO

    I am using APO 5.1 connected to an ECC 5 system. I am using ECC transaction CFC9 for CIF settings. How do the 'change transfer' settings (online/periodic) in transaction CFC9 actually relate to the use of the online change transfer via CFC5 and the u

  • 50%+ Webmail & Outlook Sent messages blocked as spam in last week. HELP!!!

    I'm having many of my Outlook and Web mail messages blocked as spam. More than 50% of  Message contents on web page says: Unable to Send Message. Unable to send e-mail: 550 5.7.1 The message you attempted to sedn was determined to be spam.  Please vi

  • How do I get good DVD output from FX7 footage?

    I just videotaped a dance concert and when I transferred the video to my computer and output it to a DL DVD, the quality is nowhere near as good as a straight HDMI connection to a TV. It doesn't even look that good on the computer in Premiere element

  • Watch out, iTunes 10.4.1 is deleting my MP3 files!

    Hi all, Just to let you know - iTunes has been pretty unstable since my upgrade to Lion 10.7.1 and iTunes 10.4.1. When it crashes, it seems that there is a library corruption that happens but that only affects MP3 files. I'm really bummed since my Ma

  • Why wont a cd i burned in itunes not play anywhere but on my mac?

    i burned a playlist of songs, mpegs, onto a brand new cd. all appeared succesful.  i clicked on the cd to open it, clicked on a song and it played fine.  ejected it from my mac and put it in my cd player.  nothing.  put it in my car's cd player.  not