Register custom webpage on R12

Hi experts,
Today I try register my webpage on customer's server, it can not run. When I open pdf window, the system shows "404 Not Found-Resource /OA_HTML/0 not found on this server". However I can run the page on my Jdeveloper smoothly. This is the integration between OAF and XML publisher.
Please help me to resolve this issue.
Many thanks for your helps
Best Regard,
Hieu

Hi Pratap,
This is these step I get the issue
- Login ORacle application server
- Go to Oracle Self Service report
- Click on the link and run the report
- After get the result, click on link to generate to PDF. This this step I have the error "Resource /OA_HTML/0 not found on this server".
However I can run my program on my pc smoothly
This is the code of CO
/*===========================================================================+
| Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
| All rights reserved. |
+===========================================================================+
| HISTORY |
+===========================================================================*/
package cimb.oracle.apps.per.xx_print_appraisal.webui;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
import java.sql.SQLException;
import java.util.ArrayList;
import com.sun.java.util.collections.Hashtable;
import oracle.apps.fnd.common.AppsContext;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.OAApplicationModule;
import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
import oracle.apps.fnd.framework.server.OADBTransactionImpl;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAHTMLWebBean;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.xdo.XDOException;
import oracle.apps.xdo.oa.common.DocumentHelper;
import oracle.apps.xdo.oa.util.DataTemplate;
import oracle.jbo.domain.BlobDomain;
* Controller for ...
public class xx_print_appraisal_detailCO extends OAControllerImpl
public static final String RCS_ID="$Header$";
public static final boolean RCS_ID_RECORDED =
VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
* Layout and page setup logic for a region.
* @param pageContext the current OA page context
* @param webBean the web bean corresponding to the region
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
super.processRequest(pageContext, webBean);
Hashtable params = new Hashtable();
System.out.println("---------------------Before String P_APPRAISAL_ID-----------");
String dtP_APPRAISAL_ID = pageContext.getParameter("P_APPRAISAL_ID");
System.out.println(dtP_APPRAISAL_ID);
System.out.println("---------------------After String P_APPRAISAL_ID-----------");
params.put("P_APPRAISAL_ID", dtP_APPRAISAL_ID);
BlobDomain result = getXdoData(pageContext, webBean, "XX_PRINT_APPRAISAL", params);
// Rendering result
pageContext.getPageLayoutBean().addIndexedChild(
getXdoBean(pageContext, "XX_PRINT_APPRAISAL", result.getInputStream()));
//am.invokeMethod("initEmpVO");
//am.invokeMethod("getEmpDataXML");
//am.invokeMethod("getPrintDataXML");
* Procedure to handle form submissions for form elements in
* a region.
* @param pageContext the current OA page context
* @param webBean the web bean corresponding to the region
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
public BlobDomain getXdoData(OAPageContext pageContext,
OAWebBean webBean,
String defName,
Hashtable params)
//String d_mod = D_MODULE_getXdoData;
// if (WebLog.isProcOn(pageContext,d_mod)) { WebLog.procBegin(pageContext,d_mod); }
OAApplicationModule am = pageContext.getApplicationModule(webBean);
AppsContext ctx = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
System.out.println("---------------------Stop here--CTX-----------");
System.out.println(ctx);
BlobDomain xmlData = new BlobDomain();
DataTemplate dataTemplate = null;
//String APP_SHORT_NAME = "PER";
OutputStream out;
try
System.out.println("---------------------Before dataTemplate-----------");
dataTemplate = new DataTemplate(ctx,"PER",defName);
System.out.println("---------------------After dataTemplate-----------");
dataTemplate.setParameters(params);
out = xmlData.getBinaryOutputStream();
dataTemplate.setOutput(out);
dataTemplate.processData();
System.out.println(dataTemplate.toString());
out.close();
catch (SQLException e)
// TODO
catch (XDOException e)
// TODO
catch (IOException e)
// TODO
// if (WebLog.isProcOn(pageContext,d_mod)) { WebLog.procEnd(pageContext,d_mod); }
return xmlData;
public OAHTMLWebBean getXdoBean(OAPageContext pageContext, String template, InputStream stream)
//String d_mod = D_MODULE_getXdoBean;
//if (WebLog.isProcOn(pageContext,d_mod)) { WebLog.procBegin(pageContext,d_mod); }
System.out.println("---------------------String xdoURL-----------");
String xdoURL = DocumentHelper.getOutputURL(
pageContext,
"PER",
template,
stream,
"PDF",
null, // properties
null, // language
null); // territory
System.out.println("---------------------After xdoURL-----------");
OAHTMLWebBean doc =
(OAHTMLWebBean)createWebBean(
pageContext,
HTML_WEB_BEAN,
null,
"IFRAME");
System.out.println("---------------------OAHTMLWebBean doc-----------");
System.out.println(doc);
System.out.println("---------------------OAHTMLWebBean doc-----------");
doc.setHTMLAttributeValue("src", xdoURL);
doc.setHTMLAttributeValue("width", "1400");
doc.setHTMLAttributeValue("height","2000");
//if (WebLog.isProcOn(pageContext,d_mod)) { WebLog.procEnd(pageContext,d_mod); }
return(doc);
Thanks and Regards
Hieu

Similar Messages

  • How to register custom report under Custom Development Application

    Hi 2 all
    How to register custom report under the Custom Development application in R12 vision DB, and also confirm location/folder of Custom Development application in R12.
    Thanks
    Zulqarnain

    Hi,
    You may or may not need to "register" the workflow - it depends on the changes that you made and which Item Type you modified. Some applications are essentially hard-coded to use a specific item type and process, some hard-coded to use an item type but you can configure the process to use, and some allow you to specify which item type and which process to use.
    Without knowing exactly what you have done, though, there is no specific advice that anyone can give you here on what you need to do, apart from to ensure that you have saved the new definition to the database.
    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

  • SQL to register custom Interface

    Steps to register a custom interface are given below.
    1) Assign iSetup super user role.
    2) Create Function
    3) Create Menu
    4) Create Grant
    5) Register Interface.
    Since it consumes good amount some time, it may not be required in development or UT environments. I have provided the query that would directly register interface with iSetup schema without having to go through the above flow.
    Also, this provides a chance for customer who are on 11.5.10.2CU to create and register customer interfaces with iSetup.
    Please note that this short cut must be used only in development and UT environments.
    INSERT INTO az_apis
    API_NAME,
    APPLICATION_SHORT_NAME,
    SEQ ,
    DISPLAY_NAME,
    DESCRIPTION,
    COMMIT_IF_WARNING,
    TYPE_CODE,
    METHOD_NAME,
    PATH,
    CREATED_BY,
    CREATION_DATE,
    LAST_UPDATED_BY,
    LAST_UPDATE_DATE,
    LAST_UPDATE_LOGIN,
    API_CODE,
    SEQ_NUM,
    API_DESC,
    COMMIT_IF_WARNING_FLAG,
    API_TYPE,
    REPORT_LAYOUT,
    FILTERING_PARAMETERS,
    DATA_SOURCE_NAME,
    UPDATABLE_FLAG,
    CHANGE_UPDATABLE_FLAG,
    ALLOW_SET_TARGETVAL_FLAG,
    ALLOW_FILTER_FLAG,
    API_STANDALONE_FLAG,
    ACTIVE,
    DISABLE_REPORT_FLAG
    VALUES
    NULL ,
    :1 ,
    NULL ,
    :2,
    NULL ,
    NULL ,
    NULL ,
    'importFromXML',
    :3,
    1,
    to_timestamp('03-JAN-07','DD-MON-RR HH.MI.SSXFF AM'),
    1,
    to_timestamp('21-MAR-07','DD-MON-RR HH.MI.SSXFF AM'),
    0,
    :4,
    NULL,
    NULL,
    'N',
    :5,
    'MULTIPLE',
    :6,
    NULL,
    NULL,
    NULL,
    NULL,
    'Y',
    'Y',
    'Y',
    NULL
    Where
              *:1 => APPLICATION_SHORT_NAME* => Product code under which you would like to register the interface.
              *:2 => DISPLAY_NAME* => Any user friendly name to identify the API. This would appear as data object name while creating custom selection set.
    *:3 => PATH* => Path to lct file or Java path to refer AM.
    Example, for BC4J iSetup framework API => oracle.apps.az.isetup.server.ReportCurrenciesAM
    for Generic Loader (FNDLOAD) API => patch/115/import/mysamplelct.lct
    *:4 => API_CODE* => A unique identifier to register the API.
                                  Naming convention => Application Short Name + “_” + API Name without any spaces.
                                  Example => AZ_Currencies
    *:5 => API_TYPE* => Type of API.
    For iSetup framework BC4J APIs => BC4J
                                  For generic Loader APIs => FNDLOAD          
              *:6 => FILTERING_PARAMETERS* => Filtering Parameters is stored as XML. Keep it NULL if there are no filtering_parameters.
    I have provided a sample XML.
    <?xml version="1.0"?>
    <parameters>
    <conjunction>AND</conjunction>
    <language></language>
    <mode type = "Export">
    <param type = "NameValuePair" seq = "1" display = "DisplayEnabled" editable = "Editable">
    <operator>=</operator>
    <separator></separator>
    <name>PRODUCT_CODE</name>
    <value></value>
    <msgcode>AZ_R12_PRODUCT_CODE</msgcode>
    <appcode>AZ</appcode>
    <filtercode></filtercode>
    <datatype>java.lang.String</datatype>
    <sqlforlov>select distinct product_code from fnd_application_vl</sqlforlov>
    <sqlforlovcol>PRODUCT_CODE</sqlforlovcol>
    </param>
    </mode>
    </parameters>
    Delete Record Query
              DELETE FROM az_apis WHERE api_code= :1;
    where
    *:1 => API_CODE* => A unique identifier to register the API.
                                  Naming convention => Application Short Name + “_” + API Name without any spaces.
                                  Example => AZ_Currencies

    Have your signed your assembly ??
    Microsoft Dynamics CRM Training|Our Blog |
    Follow US |
    Our Facebook Page |
    Microsoft Dynamics CRM 2011 Application Design
    Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question.

  • Error After deploying a new custom page in R12

    Hi,
    After I deployed a new custom page in R12, I'am getting the below error when open the page:
    An exception occured.
    URL=http://ebsdev.jeddah.gov.sa:8000/OA_HTML/"OA.jsp?page=/xxjm/oracle/apps/xxper/webui/EmpSearchPG"&transactionid=1699620845&language_code=US&&OAFMID=86090&OAPB=_OAFMID&oas=pGtT6lCw2sB8c7zsJQx6xg..
    javax.servlet.ServletException: oracle.classloader.util.AnnotatedClassNotFoundException:
         Missing class: __22_OA
         Dependent class: oracle.jsp.runtimev2.JspPageInfo
         Loader: oc4j:10.1.3
         Code-Source: /oracle/EBS/UAT/apps/tech_st/10.1.3/j2ee/home/lib/ojsp.jar
         Configuration: in META-INF/boot.xml in /oracle/EBS/UAT/apps/tech_st/10.1.3/j2ee/home/oc4j.jar
    This load was initiated at oacore.web.html.jsp32339236:0.0.0 using the loadClass() method.
    The missing class is not available from any code-source or loader in the system.
    Any idea please?
    Cheers,
    Khaled

    Hi,
    I found that the HTML Call was incorrect as I put it in between " " before.
    OA.jsp?page=/xxjm/oracle/apps/xxper/webui/EmpSearchPG
    After I removed the " ", I've got a new error which I attached.
    It missleading error:
    Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    Cheers,
    Khaled

  • How to register custom forms & reports

    Hi,
    Please anyone help me the steps required to register custom forms & reports to e-business suite 11i.
    regards
    sva

    Hi,
    Please refer to the following document.
    Note: 216589.1 - Step By Step Guide to Creating a Custom Application in Applications 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=216589.1
    Note: 177610.1 - Oracle Forms in Applications FAQ
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=177610.1
    Note: 104697.1 - Setup & Usage (Customization)
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=104697.1
    Oracle Applications Developer's Guide
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115devg.pdf
    Regards,
    Hussein

  • BUG in 10.1.3 EA: Can't register custom ViewCriteriaAdapter

    I am following Steve Muench's "Implementing a View Criteria Adapter to Customize Query By Example Functionality" article to create custom ViewCriteriaAdapter.
    BUT, framework seams to ignore my attempts to register custom adapter. I am using code like this:
    setViewCriteriaAdapter(something);I also try setting jbo.ViewCriteriaAdapter property but with no result.
    No matter what I do, it uses default OracleSQLBuilderImpl.
    Realy simple test case can be found at http://www.sharanet.org/~icuric/Test_BUG_1.zip (zipped application workspace).

    In case you didn't see it in subject, I am using JDeveloper 10.1.3 EA.
    Client is ADF Swing.
    I tried the same code in JDeveloper 10.1.2 and it works as advertised :)

  • Unable to register custom workflow activity on MS CRM 2015 Online

    Hi All,
    I am trying to register custom workflow activity using plugin registration tool on MS CRM 2015 Online.
    Error says that 'No Plugin have been selected from list. Please select atleast one and try again'
    In short my assembly is not considered as custom workflow activity.
    I am giving my code let me know, If any thing is wrong.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Activities;
    using Microsoft.Xrm.Sdk;
    using Microsoft.Xrm.Sdk.Workflow;
    namespace Training.SamplePlugin
        public class SampleCustomworkflow : CodeActivity
            [Input("Birthday")]
            public InArgument<DateTime> BirthDate { get; set; }
            [Output("NextBirthday")]
            public OutArgument<DateTime> NextBirthDay { get; set; }
            protected override void Execute(CodeActivityContext executionContext)
                //Create the tracing service
                ITracingService tracingService = executionContext.GetExtension<ITracingService>();
                //Create the context
                IWorkflowContext context = executionContext.GetExtension<IWorkflowContext>();
                IOrganizationServiceFactory serviceFactory = executionContext.GetExtension<IOrganizationServiceFactory>();
                IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
                if (context.PrimaryEntityName.ToLowerInvariant() == "contact")
                    DateTime birthDate = BirthDate.Get<DateTime>(executionContext);
                    DateTime nextBirthDate = new DateTime(DateTime.Now.AddYears(1).Year, birthDate.Month, birthDate.Day);
                    //NextBirthDay.Set(executionContext, nextBirthDate);
                    Entity newContact = new Entity();
                    newContact.LogicalName = "contact";
                    newContact.Id = context.PrimaryEntityId;
                    newContact["new_nextbirthday"] = nextBirthDate;
                    service.Update(newContact);
    If code is correct then has somebody faced this kind of issue earlier, what is resolution.
    Thanks
    Apurv

    Have your signed your assembly ??
    Microsoft Dynamics CRM Training|Our Blog |
    Follow US |
    Our Facebook Page |
    Microsoft Dynamics CRM 2011 Application Design
    Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question.

  • Custom reports in R12 not returning any data

    I'm seeing an issue of custom reports in R12 not returning any data. So far what I've been able to dig into is that the report query itself is referring to APPS synonyms that are secured under MOAC. What I am able to do is run the query in SQL Developer after having run mo_global.set_policy_context and I receive the data I'm looking for. This is not the case when running the report through the concurrent programs request.
    Secondly, I've also configured the concurrent program request to run as single operating unit mode. This aided in fixing any issues with LOVs on the parameter form. However, still no results from the report itself. I've also searched around quite extensively and added a P_CONC_PROGRAM_ID user parameter in reports developer, as well as adding SRW.USER_EXIT('FND SRWINIT') to the before report trigger and SRW.USER_EXIT('FND SRWEXIT') to the after report trigger as well. No luck. I've also tried running mo_global.set_policy_context on the before report trigger and no such luck.
    Has anyone seen similar issues with this and could shed some light? At this point, the workaround I would see is to just change the query to use respective all tables and match up against the orgid, but I'd rather not do that.

    I am facing exactly the same issue with 2 of my custom Reports in R12.1.3. We did our level best to find out the issue. It was always a hit and trial fix.
    But the following were our observations and workarounds
    0) The reports Conc Prog were in MOAC - Single mode. Both the reports had SRW INIT, EXIT and P_CONC_REQUEST_ID
    1) The reports which caused the issues[NO data fetched for MOAC] had multiple Queries in the data model and one Query fetches data and the 2nd one doesnt. Both the queries when run from SQL developer after setting the org gave results.
    Workaround for Report1
    a) We deleted the data link connecting the 2 columns in both the queries and added a bind variable instead in the 2nd /child query to refer to the column in the parent query and linked the 2 groups.
    Workaround for Report 2
    a) In report 2 the queries were not linked to each other. Only one query used to return results and the 2nd one returned 0 rows. The workaround was to use the "where" conditions as lexical parameters after having set the value for the same in before report trigger.
    Both the work around looks illogical. Still It worked..!
    Thanks
    Biju Radhakrishnan

  • Bug in 10.1.3 production: Cannot register Custom ViewCriteriaAdapter

    Hi
    I think there is a bug in JDeveloper 10.1.3 production. I cannot register a custom ViewCriteriaAdapter (see also Thread BUG in 10.1.3 EA: Can't register custom ViewCriteriaAdapter
    This is my code:
    public class myAdapter implements ViewCriteriaAdapter
      public String getViewCriteriaClause(ViewObject viewobject, ViewCriteria viewcriteria)
        System.out.println("***** \"myAdapter\" successfully called ***** ");
        return "My ViewCriteria Clause";
    public class tester
      public static void main(String[] args)
        System.out.println("Check if you see a line which states that, that myAdapter was successfully called:");
        AppModuleImpl module = (AppModuleImpl) Configuration.createRootApplicationModule("project1.AppModule", "AppModuleLocal");
        ViewObjectImpl vo = module.getArticlesView1();
        vo.setViewCriteriaAdapter(new myAdapter());
        ViewCriteria vc = vo.createViewCriteria();
        ViewCriteriaRow vcRow = vc.createViewCriteriaRow();
        vcRow.setAttribute("ArticleNo", "like 'DV%'");
        vc.addElement(vcRow);   
        vo.applyViewCriteria(vc);
        vo.executeQuery();
        System.out.println("You didn't see such a line? This means 'myAdapter' has not been called, which is a bug!");
    }

    Some investigations discovered that the problem seems to be, that method "applyViewCriteria" in ViewObjectImpl resets the Custom ViewCriteriaAdapter.
    So the problem seems to be solved if you override ViewObjectImpl.applyViewCriteria() like this:
        public void applyViewCriteria(ViewCriteria viewcriteria)
          super.applyViewCriteria(viewcriteria);
          setViewCriteriaAdapter(new myAdapter());
        }Another workaround is to set property "jbo.ViewCriteriaAdapter" to "project1.myAdapter" in the Configuration of all ApplicationModules (or at least in the one which is first instantiated).
    Hope this helps.
    Frank Brandstetter

  • Custom Webpage with data from Web JetAdmin

    We are currently using Web JetAdmin to monitor a large fleet of network printers spread across our campus.  I love the features of the application but I would like to see if there is a way to simplify the interface a little bit.  I would like to see if it is possible to create a custom webpage with the status images of the printers that Web JetAdmin provides on the application interface.  Essentially what I would like to do is create a grid of these images for each printer so we could constantly monitor the status of these printers. 
    Any ideas how I could do this?
    Thanks
    -Jesse

    hi there,
    U can copy that data into a excell file in a fixed format. After that using SQL*Loader u can import that data into oracle database.
    But fix one format so that u can easily dump that data into oracle database when ever u want with out much effort.
    Cheers
    Naveen

  • How to make customer inactive in R12 receivables?

    Does anyone know how to make a customer inactive in R12 receivables? I can find where to make the account that is linked to the customer inactive but not how to amend the status of the customer itself. I am sure that it is something simple that I am missing. Any assistance would be greatly appreciated. Thanks

    Under Data Librarioan responsibility go to Data Quality --> Party Maintenance, search for your party then change the status. Just remember you will not be able to search for Inactive party (untill you re-activate the party again). And more important question: are you sure you want to inactivate a party? Does Oracle recommend it?
    Oleg

  • JMF Solutions 2.1.1. - Register Custom Payload

    hello there,
    ooo... the sun-forum is read only... so let's start here from the scratch until all the things are migrated... :(
    I just was looking for the solutionspage (again) for the JMF-solutions. Has anyone got the solution for "Transmitting and Receiving Custom RTP Payloads" (http://www.oracle.com/technetwork/java/javase/index-140313.html) on his computer and would mail me the source?
    That would be great...
    thx for your help,
    sma

    799158 wrote:
    try this link from sun forum http://www.cs.odu.edu/~cs778/spring04/lectures/jmfsolutions/examplesindex.html
    Is there an "Unhelpful" button on these new forums?
    Did you happen to look at that link before you offered it as help, because it's only a subset of the full set of solutions and doesn't have the "Register Custom Payload" example that was requested...

  • Custom objects outside register custom Schema.

    Is there anyway of detecting custom database objects in an EBS system if they have been put somewhere besides a registered custom schema?

    When creating custom objects they should be placed in a registered custom schema and use the xx_ naming convention. However, it's just a standard, you can create objects in any schema within a the EBS database. For example if you have the privileges you can create objects in the GL schema, even though it is bad practice.
    So if I give you an existing 11i or 12 system that has been maintained by another DBA how can you check that no custom objects have been created in the standard schemas?

  • How do you programmatically register custom tags through the adminapi?

    Hello,
    I am not able to find much documentation out on the net on how to write codes to programmatically register custom tags through the adminapi (extensions.cfc). The only examples I have been seeing involve setting up datasources. Any advice you can provide is appreciated. Thanks.
    Best regards,
    C. Lee

    Short answer:
    The problem is that the login method is a bit goofy in that it requires the password first and the username second. Assuming you are using a valid password (and not the string "password" you are showing), reversing them should solve your problem.
    Long answer:
    As background for those interested, in order to call any method in any of the Admin API CFCs, one does have to log in programmatically, providing a valid CF Admin password, or password/username combination if you have enabled multiple user logins for the CF Admin. (Multiple user logins in the Admin is an optional feature since CF 8.)
    If one does not setup multiple user names, then you only need to pass a password to the login method (just as on the login page of the CF Admin). Technically, the default username in that case is "admin", and you can specify it if you want to, but again it has to be password then username, on this login method. (The Admin API was added in CF 7, before the multiple usernames feature was added, so it looks like they just added it as a new argument.)
    You can learn more about multiple user logins in the CF Admin (and an option to change or remove the default "admin" username) an Adobe DevCenter article linked to from http://www.carehart.org/articles/#2009_1.
    Note finally that the username/password field values are case-sensitive, even on Windows, and the default username really is "admin" not "Admin".
    This discussion of needing to login is documented on the page that Adam pointed to (see the "using" and "examples" sections of the page). There's even a comment from someone pointing out the need to put them in password/username order (because it's not mentioned in the docs). I also just added a comment there about the case sensitivity, either of which could bite someone. Let's hope they update the docs in the next release to clarify both these points.
    /charlie

  • Making a customer inactive in R12 Receivables

    I am using R12 and in receivables I am attempting to make customer inactive but cant seem to find how to do it in this form. I can make the account and site inactive but not the customer. I am sure that there is a simple way to do this but the customer form in R12 can be hard to follow at times. Any help would be greatly appreciated. Thanks

    Hi Helios
    Thanks for the info however the note refers to making a customer contact inactive, but does not refer to making the customer itself inactive. Also the AR user guide does not display how to do this either.
    Does anyone else have any idea how to make a customer inactive in the R12 AR customer form?
    Thanks

Maybe you are looking for