Customizing the iexpense workflow notification.

Hello All,
I wanted to know how to change iexpense workflow notification. We wanted to add few more fields in the noification.
Do we have to make the changes in the OAF page, classes, VO etc?
If anybody worked on similar type of requirements then please help.
Thanks
Ganesh Mane

Hi,
You can do it via personalizations if the fields are in the VO's Query.
Thanks,
Gaurav

Similar Messages

  • Customizing Standard OTL workflow notification.

    Hi All,
    We have requirement to customize the Time details in OTL workflow modifications. Updated details of time card should be
    displayed in different colour. Notifications are  being rendered dynamically. So unable to c ustomize the notification details.
    Could you please let us know if any one has done the customizations on Oracle provided Workflow notification in OTL.
    Thanks
    Vishnu

    Hi,
    You can do it via personalizations if the fields are in the VO's Query.
    Thanks,
    Gaurav

  • Customizing the existing Workflow..

    Hi all
    I need to update the .wft file.
    Its in PA_TOP/patch/115/import/PAAPINVW.wft/
    My Apps Version is 11.5.9
    os rhel 4.6
    Wen tried to open this file using Workflow Builder 2.0,its showing read only,am not able to update this..
    Can anyone help me..

    Hi user;
    Please check :
    APINV - Workflow Patch 5948386 Fails To Load APFIAWIE.WFT due to Error - Could not save to database. MODE=UPGRADE [ID 423145.1]
    http://oracleappstechnology.blogspot.com/2007/12/prevent-failure-of-worker-running.html
    Hope it helps
    Regard
    Helios

  • Regarding the workflow notification page customization

    Hello Everyone...
    I am new to Oracle OAF...
    Customize the Oracle Workflow Notifications page (for Open Notifications) by using OA Framework Customization (to display more details on the Notification)
    what is solution for this component?
    could someone help me out in this task plz...

    You need to check how the notifications are getting created. Please download the workflow from instance and check the logic of the notification creation. That should give ideas on customizations involved.
    Regards
    Sumit

  • How to Implement the Search page for Workflow Notifications?

    Hi All,
    I want to implement the new Search page for Workflow Notifications. Search page containing Company, Paygroup, Source, Initiator, Supplier Name, From date & To date fields. These fields(Poplist & Calendar) are getting the values from different tables and these fields are not in WF_NOTIFICATIONS table only Initiator & dates are there. After selecting the values in all fields or one field based upon these values I want to display the all Workflow Notifications ( Those are satisfy the search criteria only not all ) in Advance Worklist Table RN in the Notifications page. Is it possible to create the Search page based upon the above scenario if Yes Let me know how to implement this search page for Workflow. Page was designed but how to get the sortlisted Notifications and how to pass these values to next page?
    Thanks in advance.
    Edited by: user635152 on Nov 13, 2008 10:53 AM

    Hi Guru,
    I crete the Search page having 5 poplists and select the values from dropdown list and click GO button it serch the records and displays that records in ResultsTable in same page.
    My case, Search page is running fine if I select the values and click GO button page is refreshed without errors but I am unable to displays the records in ResultsTable.
    What I am missing?
    My Select Stmt:
    SELECT * FROM      
    (select wn.nid notification_id
    ,ou.name company
              ,I.PAY_GROUP_LOOKUP_CODE paygroup
              ,'AP' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,I.GL_DATE FROM_TO_DATE
    from ap_invoices_all i
    , po_vendors pv
         , hr_operating_units ou
         , per_all_people_f pf     
         , FND_USER FU
    , (SELECT trim(substr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),
    1,instr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),' for'))) inv_no
    ,notification_id nid
    FROM WF_NOTIFICATIONS WN
    WHERE WN.MESSAGE_TYPE = 'APINV'
    AND WN.STATUS NOT IN ('CANCELED','CLOSED')) wn
    where i.vendor_id = pv.vendor_id
    and i.invoice_num = wn.inv_no
    and i.WFAPPROVAL_STATUS = 'REQUIRED'
    and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
    and i.org_id = OU.organization_id
    AND OU.name like nvl(:company_name,name)
    and i.pay_group_lookup_code = nvl(:pay_group,i.pay_group_lookup_code)
    and exists (select ad.invoice_id
    from ap_invoice_distributions_all ad
    where ad.invoice_id = i.invoice_id
    and ad.accounting_date between nvl(:from_date,ad.accounting_date)
                                       and nvl(:to_date,ad.accounting_date))
    and 'AP' = nvl(:source,'AP')
         and i.created_by = fu.user_id
         AND fu.EMPLOYEE_ID = pf.person_id
         AND pf.full_name like nvl(:initiator, pf.full_name)
    UNION ALL
              select po_num.nid notification_id
              ,ou.name company
              ,ps.PAY_GROUP_LOOKUP_CODE paygroup
              ,'PO' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,P.CREATION_DATE FROM_TO_DATE
         from po_headers_all p
         ,po_vendors pv
              ,po_vendor_sites_all ps
              ,hr_operating_units ou
              ,per_all_people_f pf
         ,(select trim(substr(wn.subject,24,instr(wn.subject,' for')-24)) po_no, notification_id nid
              FROM WF_NOTIFICATIONS WN
         WHERE WN.MESSAGE_TYPE = 'POAPPRV'
         AND WN.STATUS NOT IN ('CANCELED','CLOSED')
         and wn.subject like 'Standard Purchase Order%') po_num
         where p.SEGMENT1 = po_num.po_no
         and p.vendor_id = pv.vendor_id
         and p.org_id in(select organization_id
         from hr_operating_units
         where name like nvl(:company_name,name))
         and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
         and p.AUTHORIZATION_STATUS = 'IN PROCESS'
         and p.CANCEL_FLAG = 'N'
         and 'PO' = nvl(:source,'PO')
         and p.agent_id = pf.person_id
         and pf.full_name like nvl(:initiator, pf.full_name)
         and pv.vendor_id = ps.vendor_id
         and ps.org_id = ou.organization_id
         and ou.name like nvl(:company_name,name)
    and ps.PAY_GROUP_LOOKUP_CODE = nvl(:pay_group,ps.PAY_GROUP_LOOKUP_CODE)
         and trunc(p.creation_date) between nvl(:from_date,trunc(p.creation_date)) and nvl(:to_date,trunc(p.creation_date))
    In CO PFR Code:
    if (pageContext.getParameter("Go") != null)
    OAQueryUtils.checkSelectiveSearchCriteria(pageContext, webBean);
         String COMPANY = pageContext.getParameter("COMPANY");
    String PAYGROUP = pageContext.getParameter("PAYGROUP");
    String SOURCE = pageContext.getParameter("SOURCE");
    String INITIATOR = pageContext.getParameter("INITIATOR");
    String SUPPLIER_NAME = pageContext.getParameter("SUPPLIER_NAME");
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    Serializable[] parameters = { COMPANY, PAYGROUP, SOURCE, INITIATOR, SUPPLIER_NAME, executeQuery};
    Class[] paramTypes = { String.class, String.class, String.class, String.class, String.class, Boolean.class };
    am.invokeMethod("initSearch", parameters, paramTypes);
    OAAdvancedTableBean table = (OAAdvancedTableBean)webBean.findChildRecursive("ResultsTable");
    table.queryData(pageContext, false);
    AM invoke Method():
    public void initSearch(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    WorklistFindVOImpl vo = getWorklistFindVO1();
    if (vo == null)
    MessageToken[] tokens = { new MessageToken("OBJECT_NAME", "WorklistFindVO1") };
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", tokens);
    vo.initQuery(company, paygroup, source, initiator, supplier_name, executeQuery);
    VO Code:
    public void initQuery(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    StringBuffer whereClause = new StringBuffer(500);
    Vector parameters = new Vector(5);
    int clauseCount = 0;
    int bindCount = 0;
    setWhereClauseParams(null); // Always reset
    if ((company != null))
    String companyname = null;
    try
    companyname = new String(company);
    catch(Exception e) {}
    whereClause.append("COMPANY= :COMPANY");
    whereClause.append(++bindCount);
    parameters.addElement(company);
    clauseCount++;
    if ((paygroup != null) && (!("".equals(paygroup))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("PAYGROUP = :PAYGROUP");
    whereClause.append(++bindCount);
    parameters.addElement(paygroup);
    clauseCount++;
    if ((source != null) && (!("".equals(source))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SOURCE = :SOURCE");
    whereClause.append(++bindCount);
    parameters.addElement(source);
    clauseCount++;
    if ((initiator != null) && (!("".equals(initiator))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("INITIATOR = :INITIATOR");
    whereClause.append(++bindCount);
    parameters.addElement(initiator);
    clauseCount++;
    if ((supplier_name != null) && (!("".equals(supplier_name))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SUPPLIER_NAME = :SUPPLIER_NAME");
    whereClause.append(++bindCount);
    parameters.addElement(supplier_name);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    parameters.copyInto(params);
    setWhereClauseParams(params);
    if ((executeQuery != null) && (executeQuery.booleanValue()))
    executeQuery();
    } // end initQuery()
    Please let me know what I did mistake in my code?
    I am unable to find it what I missing and there is no errors but no records displayed in Results Table.
    Please it's urgent.
    Thanks
    Nag.
    Edited by: user635152 on Nov 19, 2008 4:43 PM

  • Workflow notifications customization

    Hi All,
    I want to know on the notification's page, can we customize the page to display a custom attribute under the type name.
    Example
    Type Subject Sent Status
    PO Approval PO:= 2234 needs 11-Oct-2001 Open
    In the above case the PO Approval is the Display name of the item type of PO Approval workflow, is there a way to customize it in a way so we can display a attribute value there...
    Thanks
    Ashish

    I do not think you can customize the main Workflow Notification page (even though it is possible, but it is not supported) -- Please log a SR to confirm this with Oracle support.
    Thanks,
    Hussein

  • Workflow Notification Mailer continues to fail with a STOPPED_ERROR component status

    We are running the E-Business Suite version 12.1.3 (Standard) on Solaris Operating System (SPARC 64-bit). Multi-Org enabled. We just applied over the weekend RUP 7 patch 18004477. We have several seeded and customized workflows running (HR, BENEFITS, GRC, AP, AR etc).
    The Workflow Notification Mailer continues to stop in error with this message in fnd_svc_components:
    STOPPED_ERROR - Maximum number of errors (10000) have been reached for this Service Component -> oracle.apps.fnd.cp.gsc.ProcessorException: An unexpected RuntimeException or Throwable occurred -> java.lang.NullPointerException
    It only runs for a few minutes before ending in error.
    I attached the last Workflow Notification Mailer log entries begining around where the component exited with the error above. I suspect that one of the error messages above is the problem. I can send more of the log if necessary.
    Due the error message above regarding the maximum number errors we have updated wf_notifications and wf_items table for any rows that are 'WFERROR' to CLOSED status and to a mail_status of SENT. In wf_items we set the end_date to the sysdate for the items where the item type = 'WFERROR'. Despite this we are still receiving this error with the Workflow Notification Mailer.
    Does anyone have an idea what is causing the component to shut down with this message? I would greatly appreciate any help with this issue that we are having.
    Thank you, Greg
    Message was edited by: GregTruta

    Hi Greg,
    Please see:
    Users Suddently Stop Receiving Email Notifications (Doc ID 467516.1)
    Error in log ~ The agent could not be found: ECX_INBOUND (Doc ID 1188056.1)
    Thanks,
    Hussein

  • Workflow notification, where I can control which should send by email

    Hi,
    In a old version SRM3.5 (but is a general question for most of versions) customer wants some workflow notifications by email, I have activated SO16 option and is working but now customer wants to deliver only some of the notifications by email and SO16 doesn't allow to discriminate.
    The SPRO notification option must be activated but only some of them should be delivered by email.
    Do you know any BADI or any other form to discriminate that notifications go by email
    thanks

    Hello Jorge,
    Are you talking about recipient notification or approval workflow mail ?
    If it is for approval workflow, see my previous response.
    On the contrary, if it is about recipient notication, Muthuramam gave you the good way: by customizing, you can define for which document type you allow or not recipient notification.
    Regards.
    Laurent.

  • KIMYONG: Outbound Workflow Notification Event Message 를 tracking하는 방법

    Purpose
    Outbound Workflow Notification Event Message 가 발송됐으나 user가 받아보지 못한경우 가 발생했으나 user
    이를 tracking하는 방법을 알아보고자 한다.
    Solution
    1. notification 이 발송될때 oracle.apps.wf.notification.send event발생한다
    event key 로 Notification ID 를 사용한다.
    2. 다음 조건에서만 The e-mail notification이 발송된다.
    i) Notification status is OPEN or CANCELED
    ii) Notification mail_status is MAIL or INVALID
    SELECT status, mail_status
    FROM wf_notifications
    WHERE notification_id = '&nid';
    iii) Recipient Role has a valid e-mail address and notification preference is in the format MAIL%
    SELECT email_address,
    nvl(WF_PREF.get_pref(name, 'MAILTYPE'),notification_preference)
    FROM wf_roles
    WHERE name = upper('&recipient_role');
    iv) Workflow Deferred Agent Listener is running
    v) Workflow Notification Mailer is running
    3. e-mail로 발송되기전 message가 2번 정지한다.
    Raised --> WF_DEFERRED Queue --> Processed by Deferred Agent Listener --> WF_NOTIFICATION_OUT Queue --> Processed by Notification Mailer and sent as e-mail
    4. oracle.apps.wf.notification.send을 dispatch 할때 error가 발생하면
    message 는WF_ERROR queue에 enqueue되고 .
    Error Agent Listener 가 WF_XML.Error_Rule 을 수행하는 oracle.apps.wf.notification.send 의
    ERROR subscription 을 dispatch합니다.
    5. notification id 와 WF_DEFERRED and WF_NOTIFICATION_OUT queue 의 message stauts 등을 확인하기 위해 $FND_TOP/sql/wfmlrdbg.sql 를 수행합니다.
    PROCESSED in WF_DEFERRED - The message is enqueued to WF_NOTIFICATION_OUT
    PROCESSED in WF_NOTIFICATION_OUT - The message is sent as e-mail
    READY in WF_DEFERRED - Check if Deferred Agent Listener is running
    READY in WF_NOTIFICATION_OUT - Check if Notification Mailer is running
    6. notification id 의 outbound XML message 를 분석합니다.
    . The wfmlrdbg.sql output provides the XML message generated by WF_XML.Generate at the time the script is run. If the original XML message used by the mailer is required to be analyzed following SQL may be used.
    SELECT tab.user_data.text_lob text_lob
    FROM applsys.aq$wf_notification_out tab
    WHERE dbms_lob.instr(tab.user_data.text_lob,'&1') > 0
    7. 필요하다면 WF_NOTIFICATION_OUT queue 를 rebuild 합니다.
    The wfntfqup.sql script rebuilds the WF_NOTIFICATION_OUT queue by dropping and recreating
    that queue, removing pending notification messages from the WF_DEFERRED queue, and
    repopulating the WF_NOTIFICATION_OUT queue from the Oracle Workflow Notification System
    tables.
    Wfntfqup.sql Version >=115.9
    If you have implemented Oracle Alert and the WF_NOTIFICATION_OUT queue contains any pending
    alert e-mail messages, those messages must be processed before the queue can be rebuilt. The
    wfntfqup.sql script checks the queue for any alert e-mail messages and, if it finds any, the
    script returns an error message that specifies how many alert e-mail messages are pending
    and indicates that these messages must be processed before the script can run.
    Wfntfqup.sql Version <= 115.8
    If you have implemented Oracle Alert and the WF_NOTIFICATION_OUT queue contains any pending
    alert e-mail messages, those messages must be processed before the queue can be rebuilt. The
    wfntfqup.sql script checks the queue for any alert e-mail messages and, if it finds any,
    exits without performing any changes.
    Stop Notification Mailer, rebuild Mailer Queue using $FND_TOP/patch/115/sql/wfntfqup.sql.
    Reference
    Note 433359.1

    Thanks for your update.
    I have checked as per the metalink doc "242941.1" . i am getting below message only for IMAP.
    *C:\prod\scripts>%AFJVAPRG% -classpath %AF_CLASSPATH% -Dprotocol=imap  -Ddbcfile=
    c:\prod\prodappl\fnd\11.5.0\secure\PROD_qlng-s-012\prod.dbc -Dserver=qlng-s-003.
    qalhatlng.int -Dport=995 -Dconnect_timeout=120 -Ddebug=Y -Daccount=oracle1@qlng
    .om -Dpassword=System123 -DdebugMailSession=Y oracle.apps.fnd.wf.mailer.Mailer
    MLRTST : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.o
    ut until necessary parameters are retrieved for Logger to be properly started.
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.
    IMAPStore,Sun Microsystems, Inc]*
    Kindly suggest need to any setup in ms exchange server or firewall level.
    Thanks

  • ORACLE WORKFLOW NOTIFICATION MAILER START 방법

    제품 : MFG_IP
    작성날짜 : 2003-04-22
    ORACLE WORKFLOW NOTIFICATION MAILER START 방법
    ============================================
    PURPOSE
    Notification Mailer를 background에서 running 시키고,unix account의 logging out 후에도 지속적으로 running 시킬뿐 아니라 standard output 및 error message를 각각 저장할 수 있게 workflow unix user로 workflow mailer를 start 할 수 있다.
    Explanation
    nohup $ORACLE_HOME/bin/wfmail.snd -f <config_file>
    1>mailer.log 2>mailer_err.log &
    where <config_file> is $ORACLE_HOME/wf/res/wfmail.cfg
    Alternatively, you can do the following to start the Notification Mailer without specifying the CONNECT parameter & value in the above step: Create Mailer Configuration file as the password parameter in the $ORACLE_HOME/wf/res/wfmail.cfg file is in clear text and poses a security problem.
    nohup $ORACLE_HOME/bin/wfmail.snd -f $ORACLE_HOME/wf/res/wfmail.cfg owf_mgr/password@connect_string 1>mailer.log 2>mailer_err.log &
    (Please note that even this method of running the Oracle Workflow Notification Mailer is not entirely secure in the sense that if anybody who has access to the middle-tier can always do a “/usr/ucb/ps -auxwww | grep wfmail.snd” and get the CONNECT information).
    Example
    Nohup $FND_TOP/bin/WFMAIL apps/apps@ 0 Y -f $FND_TOP/resource/ wfmail.cfg
    1> $APPL_TOP/$APPLLOG/startwfmailer.log
    2> $APPL_TOP/$APPLLOG/startwfmailer.log&
    Reference Documents
    -------------------

    제품 : MFG_IP
    작성날짜 : 2003-04-22
    ORACLE WORKFLOW NOTIFICATION MAILER START 방법
    ============================================
    PURPOSE
    Notification Mailer를 background에서 running 시키고,unix account의 logging out 후에도 지속적으로 running 시킬뿐 아니라 standard output 및 error message를 각각 저장할 수 있게 workflow unix user로 workflow mailer를 start 할 수 있다.
    Explanation
    nohup $ORACLE_HOME/bin/wfmail.snd -f <config_file>
    1>mailer.log 2>mailer_err.log &
    where <config_file> is $ORACLE_HOME/wf/res/wfmail.cfg
    Alternatively, you can do the following to start the Notification Mailer without specifying the CONNECT parameter & value in the above step: Create Mailer Configuration file as the password parameter in the $ORACLE_HOME/wf/res/wfmail.cfg file is in clear text and poses a security problem.
    nohup $ORACLE_HOME/bin/wfmail.snd -f $ORACLE_HOME/wf/res/wfmail.cfg owf_mgr/password@connect_string 1>mailer.log 2>mailer_err.log &
    (Please note that even this method of running the Oracle Workflow Notification Mailer is not entirely secure in the sense that if anybody who has access to the middle-tier can always do a “/usr/ucb/ps -auxwww | grep wfmail.snd” and get the CONNECT information).
    Example
    Nohup $FND_TOP/bin/WFMAIL apps/apps@ 0 Y -f $FND_TOP/resource/ wfmail.cfg
    1> $APPL_TOP/$APPLLOG/startwfmailer.log
    2> $APPL_TOP/$APPLLOG/startwfmailer.log&
    Reference Documents
    -------------------

  • Reg. Deferred Workflow Notifications

    New to wf (in 11.5.10.2 ). My ct. requested to find the "Deferred Workflow Notifications per Day".
    i, What does it meant by "deferred" in workflow notifications ?
    ii, How to find a notification is deffered or not ?
    iii, and is there a basic SQL which will pull the derered notifications.
    Thanks,
    Sashi.

    Hi,
    I've answered your duplicate post on the WorkflowFAQ forum here .
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • How do I add the customer's name to Workflow Notification email subject line?

    How do I add the customer's name to Workflow Notification email subject line?
    I'm expecting that I need to add a tag, but I'm not sure what the correct tag would be, I have tried a few but it just writes the tag I inserted and not the customer's name.
    Thanks

    This is something you can not add at the moment. You can change the layout a bit of workflow notifications from the system but you can not change the subjects at this time to render a system tag like that.

  • OAF page in the workflow notification

    Hi,
    I have a custom OAF page and a custom workflow. When the page is submitted, i am invoking the workflow. I was just wondering if i can put the page screen shot in the workflow notification so that the users doesn't have to worry about logging back into the page to check the details. Is there any option?
    Thanks

    Hi,
    Including the custom page in the notification is fine. But what i find was generally we will call workflow to send messages to the other person based on the business requirement at that time inclusion of page in notification may not be good.

  • How to send workflow notification from a custom form in R11i

    Hi Gurus,
    We have a custom module to evaluate vendors, which has 2 custom forms viz Evaluate form and Approve form, user will evaluate the vendor and submits the same for approval, and when submitted for approval(Submit button) a mail is being sent to the employees supervisor using UTL_MAIL.SEND informing him to approve.
    And now client wants to send workflow notification upon submitting for approval. As Iam very much new to workflow I need your valuable guidance and suggestions.
    Thanks
    Sandeep

    Hi Sandeep
    Take some time and check the Oracle Workflow tutorial available at Anil Passi website. The URL is as follows
    http://oracle.anilpassi.com/oracle-workflows-training.html
    Hope this will help.
    Regards
    Ali

  • How to change the text mail of Workflow Notification?

    Hi all,
    I would like to change the text mail of workflow notification. I took a look at the Help Sap and saw how to customize the text mail notification. Unfortunately, I could not found the text for workflow Notification at “notificationTexts_<language>.properties”.
    Is possible to change the text mail of Workflow Notification?
    Thanks in advanced,
    Alcides Flach

    Hi Alcides,
    Please refer to the following link.
    https://www.sdn.sap.com/irj/sdn/thread?threadID=40700
    Rajiv

Maybe you are looking for

  • Leading Zeros won't display on a PDF form

    Hey, I am using Acrobat 7.0 professional on my Windows XP system. I have a PDF that was sent to me by someone known. This PDF is already fielded (meaning, I can type in my name and other relevant info in the form). However; I am trying to populate in

  • HDMI or HDMI-DVI adapter to HP Dreamcolor

    i just got a Mac Mini 2012, it has HDMI out and an HDMI to DVI adapter. When i hook up its HDMI out directly to my HP Dreamcolor (HDMI input), it looks horrible. By using the HDMI to DVI adapter to the Dreamcolor DVI in looks much better. Anyone know

  • Externally Loaded Dynamic Text Problem

    Hi, Has anyone encountered problems loading in a % sign as part of a string? For example I'm loading the following in from a database through an asp page using sendAndLoad (this is just a snippet of the results): &AnswerEN1_1=8% &AnswerFR1_1= The var

  • Saving Problem, can anyone help me?

    To All, I am having a severe problem with saving my GUI. Due to the fact i have internal frames, i am using JDesktopPane, and i am trying to save the whole desktop, so that when i load it, i can add this desktop to the GUI again. I do this action fro

  • Creating recommendations by system in Multi providers

    hi all, While we are creating dimensions on mp? we have the options of creating recommendations by ourself nor to carry out by the system itself. When shall we go for creating recommendations by ourselves and when shall we go for creating recommendat