Reference Module in F n' R

Hi,
Can anyone guide me how I can create a reference module in forecasting ang replenishment, so that I can have new articles adopting its consumption values? Is there any documention available on this topic?
Thank you,
Manoj.

Hi Manoj,
a reference module can be created manually in F&R in the respective transaction. It has to be assigned to the "new" article as reference product using the mass maintenance for LP. You have to run the transaction that creates the artifical history. Then run FRP and check the time series consumption data of reference.
Once again: you find more information in the F&R workshops (see previous thread).
Best regards
Barbara
Edited by: Barbara Wessela on Oct 9, 2009 2:47 PM

Similar Messages

  • EJB references post upgrade from 8.1 to 10.3

    Hi,
    I have an application.xml file in META-INF directory of the EAR file. It has the below reference:
    <module>
              <ejb>content.jar</ejb>
         </module>
         <module>
              <ejb>content_repo.jar</ejb>
         </module>
         <module>
              <ejb>netuix.jar</ejb>
         </module>
         <module>
              <ejb>p13n_ejb.jar</ejb>
         </module>
         <module>
              <ejb>prefs.jar</ejb>
         </module>
         <module>
              <ejb>wps.jar</ejb>
         </module>
    Post upgrade I accidentally packaged an EAR without above references in application.xml and without actual jars in the EAR file. The application seemed to be running fine, did not test it completely though. Do we really need these jar files? I had upgraded this application from 8.1 to 10.3 using upgrade tool in workshop. This is a portal based web application. Also, what is the purpose of these libraries? Could these be automatically added by the upgrade tool to the weblogic.xml.

    Hi Srini,
    it supports but you need to upgrade correctly.
    follow this link
    Beehive Applications
    after upgrade if you found some error like classnotfound error.
    If those are the errors you were also experiencing, then please follow one of these options to resolve this issue:OPTION
    1:Identify all the JARs that contain the beehive classes and explicitly add the jar files to the classpathOPTION
    2:When you created the domain (if you used the Config Wizard), do you make it a "Workshop" domain? If not, try that.That should deploy the Workshop framework (Beehive controls, NETUI, etc) libraries as shared libraries. Then these libraries should be referenced in your applications weblogic.xml and weblogic-application.xml.
    regards,
    Kal

  • (Urgent) Where can find the code and documentations for ATG mobile  ?

    Hi there,
    We have a customer (Gome) which is implementing ATG products and ATG solution needs to support iPhone app as well. Due to the tight schedule, we are looking to have some reference modules to jump start our mobile module development and help us staying on the course of ATG best practices.
    Before we can find some open source ATG mobile code available on community.atg.com site as part of ATG program. However they can not find it now because community.atg.com was closed.
    Can anyone help on this ?
    J.K Liu

    The iPhone, Android, and mobile web solutions were previously provided via the ATG Catalyst program. As of the acquisition by Oracle a year ago, those offerings were withdrawn and are no longer available. Oracle has not provided any guidance as to whether they might be made available again, and if so, when and under what licensing guidelines.
    I'm afraid that you're on your own. Sorry!

  • Bug: combo_box doesn't support min, max, precision, or validate

    Combo boxes don't support the min, max, precision, or validate properties, contrary to what the documentation states in "Lightroom SDK 3.0\API Reference\modules\LrView edit view properties.html".
    Here's a test program that shows the problems:
    local LrDialogs = import 'LrDialogs'
    local LrView = import 'LrView'
    local f = LrView.osFactory()
    local text = f:static_text {}
    local function validate (view, value)
        text.title = "validate called from " .. view.label
        return true, value, nil
        end
    LrDialogs.presentModalDialog {
        title = "Test", contents = f:column {
            text,
            f:row {
                f:static_text {title = "numeric:"},
                f:edit_field {min = 1, max = 10, precision = 0}},
            f:row {
                f:static_text {title = "numeric:"},
                f:combo_box {min = 1, max = 10, precision = 0,
                    items = {1, 2, 3}}},
            f:row {
                f:static_text {title = "validate:"},
                f:edit_field {validate = validate,
                    label = "edit_field"}},
            f:row {
                f:static_text {title = "validate:"},
                f:combo_box {validate = validate,
                    label = "combo_box", items = {1, 2, 3}}}}}
    I've reported this via the Web form.

    See also
    http://forums.adobe.com/thread/675142.

  • ADF Faces & BC: Best pratices for project layout

    Season greetings my fellow JDevelopers!
    Our software group has been working with ADF for around 5 years and through the years we have accumulated a good amount of knowledge working with JDeveloper and ADF. Much of our current application structure has been resurrected in the early days of JDeveloper 10 where there were more samples codes floating around then there were "best pratice" documentation. I understand this is a subjective topic and varies site to site, but I believe there is a set of common practices our group has started to identify as critical to streamlining a development process(reusable decorated ui components, modular common biz logic, team development with svn, continuous integration/build, etc..). One of our development goals is to minimize dependency between each engineer as everyone is responsible for both client and middle layer implementation without losing coding consistency. After speaking with a couple of the aces at the last openworld, I understand much of our anticipated architectural requirements are met with JDeveloper 11(with the introduction of templates, declarative components, bounded task flows, etc..) but due to time constraints on upcoming deliverables we are still about an year away before moving on with that new release. The following is a little bit about our group/application.
    JDeveloper version: 10.1.3.4
    Number of developers: 7
    Developer responsibilties: Build both faces & bc code
    We have two applications currently in our production environments.
    1.A flavor of Steve Muench's dynamic jdbc credentials login module
    2.Core ADF Faces & BC application
    In our Core ADF Faces application, we have the following structure:
    OurApplication
         -OurApplicationLib (Common framework files)
         -OurApplicationModel (BC project)
              -src/org/ourapp/module1
              -src/org/ourapp/module2
         -OurApplicationView (Faces project)
              public_html/ourapp/module1
              public_html/ourapp/module2
              src/org/ourapp/backing/module1
              src/org/ourapp/backing/module2
              src/org/ourapp/pageDefs/
    Total Number of Application Modules: 15 (Including one RootApplicationModule which references module specific AMs)
    Total Number View Objects: 171
    Total Number of Entities: 58
    Total Number of BC Files: 1734
    Total Number of JSPs: 246
    Total Number of pageDefs: 236
    Total Number of navigation cases in faces-config.xml: 127
    Total Number of application files: 4183
    Total application size: 180megs
    Are there any other ways to divide up this application? Ie: module specific projects with seperate faces-config files/databindings? If so, how can these files be "hooked" together? A couple of the aces has recommended that we should separate all the entity files into its own project which make sense. Also, we are looking into the maven builds which should remove those pesky model.jpr files that constantly gets “touched”. I would to love hear how other groups are organizing their application and anything else they would like to share as an ADF best pratice.
    Cheers,
    Wes

    After discussions over the summer/autumn by members of the ADF Methodology Group I have published an ADF Coding Standards wiki page that people may find useful:
    [http://wiki.oracle.com/page/ADF+Coding+Standards]
    It's aimed at ADF 11g and is intended to be a living document - if you have comments or suggestions please post them to the ADF Methodology google group ( [http://groups.google.com/group/adf-methodology?hl=en] ).

  • EJB 3 Problem: "Collections having FK in secondary table"

    Hi,
    working with EJB 3 first time, i have to develop my entites by a DB scheme. It is very complex and now I have the problem using composite FK / PK in many tables, so that a refenrenced key has as the same time both properties: FK / PK.
    Example: +3 Tables: Mxx:={M_ID as PK},
    Lxx:={M_ID as PK / FK from Mxx},
    Zxx:={M_ID as PK/FK from Lxx}+
    I have built Mxx.java, Lxx.java with @EmbeddedId from LxxPK.java (works) and the problem table Zxx.java with @EmbeddedId from ZxxPK.java which includes a reference key and same time primary key from Lxx.
    How can I solve the problem of "having FK in secondary table"?
    THX for your help!

    I will specify my problem a little more:
    I have an Entity named zuordnung_module_lv_ma this references an Entity lehrveranstaltungen.
    In zuordnung_module_lv_ma :
    @OneToMany
    @JoinColumn(...)
    public Collection<lehrveranstaltungen> lv = new ArrayList...
    For more detailed information look at this:
    my only problem is the table zuordnung_module_lv_ma
    SQL:
    create table BLOECKE
    BLOCKID integer not null,
    WOCHENTAG integer,
    ZEIT_VON datetime,
    ZEIT_BIS datetime,
    LOGISCHGELOESCHT char not null,
    constraint PK_BLOECKE primary key (BLOCKID)
    create table CURRICULA
    CURRICULUMKUERZEL varchar not null,
    CURRICULUMBEZ varchar,
    CURRICULUMID integer not null,
    IDVERANTWORTLICHERSTUDIENDEKAN integer,
    LOGISCHEGELOESCHT char not null,
    constraint PK_CURRICULA primary key (CURRICULUMID)
    create table LEHRVERANSTALTUNGEN
    MODUL_ID integer not null,
    LV_ID integer not null,
    SWS double not null,
    ART_LV char not null,
    LOGISCHGELOESCHT char not null,
    MAXTEILNEHMER integer not null,
    constraint PK_LEHRVERANSTALTUNGEN primary key (MODUL_ID, LV_ID, ART_LV)
    create table MITARBEITER
    MA_ID integer not null,
    TITEL varchar,
    NACHNAME varchar not null,
    VORNAME varchar not null,
    AUFGELAUFENESWS integer,
    LETZTESFORSCHUNGSFREISEMESTER varchar,
    BEGINNANSTELLUNG date,
    ENDEANSTELLUNG date,
    MA_KUERZEL varchar not null,
    GEBURTSDATUM date,
    LOGISCHGELOESCHT char not null,
    MA_KATEGORIE_ID integer,
    constraint PK_MITARBEITER primary key (MA_ID)
    create table MITARBEITERKATEGORIE
    MA_KATEGORIE_ID integer not null,
    MA_KATEGORIE_BEZ varchar not null,
    constraint PK_MITARBEITERKATEGORIE primary key (MA_KATEGORIE_ID)
    create table MODULE
    MODUL_ID integer not null,
    MODULKUERZEL varchar not null,
    IDMODULVERANTWORLTICHER integer not null,
    IDSTVMODULVERANTWORTLICHER integer,
    CURRICULUMID integer,
    ID_MODULGRUPPE varchar,
    MODULNAME varchar,
    PFLICHTFACH binary,
    SEMESTER integer,
    CREDITPOINTS integer,
    LOGISCHGELOESCHT char not null,
    constraint PK_MODULE primary key (MODUL_ID)
    create table MODULGRUPPEN
    CURRICULUMID integer not null,
    ID_MODULGRUPPE varchar not null,
    MODULGRUPPENBEZ varchar,
    LOGISCHGELOESCHT char not null,
    constraint PK_MODULGRUPPEN primary key (CURRICULUMID, ID_MODULGRUPPE)
    create table ZUORDNUNG_MODUL_CURRICULUM
    MODUL_ID integer not null,
    CURRICULUMID integer not null,
    LOGISCHGELOESCHT char not null,
    constraint PK_ZUORDNUNG_MODUL_CURRICULUM primary key (MODUL_ID, CURRICULUMID)
    create table ZUORDNUNG_MODUL_LV_MA_SEMINAR_EXEMPLAR
    MODUL_ID integer not null,
    LV_ID integer not null,
    ART_LV char not null,
    SEMESTER varchar not null,
    MA_ID integer not null,
    WOCHE_G_U char not null,
    BLOCKID integer not null,
    EXEMPLAR varchar not null,
    LOGISCHGELOESCHT char not null,
    constraint PK_ZUORDNUNG_MODUL_LV_MA_SEMIN primary key (MODUL_ID, LV_ID, ART_LV, SEMESTER, MA_ID, WOCHE_G_U, BLOCKID, EXEMPLAR)
    alter table CURRICULA
    add constraint FK_CURRICUL_ZURODNUNG_MITARBEI foreign key (IDVERANTWORTLICHERSTUDIENDEKAN)
    references MITARBEITER (MA_ID)
    on update restrict
    on delete restrict;
    alter table LEHRVERANSTALTUNGEN
    add constraint FK_LEHRVERA_ZURODNUNG_MODULE foreign key (MODUL_ID)
    references MODULE (MODUL_ID)
    on update restrict
    on delete restrict;
    alter table MITARBEITER
    add constraint FK_MITARBEI_ZUORDNUNG_MITARBEI foreign key (MA_KATEGORIE_ID)
    references MITARBEITERKATEGORIE (MA_KATEGORIE_ID)
    on update restrict
    on delete restrict;
    alter table MODULE
    add constraint FK_MODULE_ZUORDNUNG_MITARBEI foreign key (IDMODULVERANTWORLTICHER)
    references MITARBEITER (MA_ID)
    on update restrict
    on delete restrict;
    alter table MODULE
    add constraint FK_MODULE_ZUORDNUNG_MODULGRU foreign key (CURRICULUMID, ID_MODULGRUPPE)
    references MODULGRUPPEN (CURRICULUMID, ID_MODULGRUPPE)
    on update restrict
    on delete restrict;
    alter table MODULGRUPPEN
    add constraint FK_MODULGRU_ZUORDUNG__CURRICUL foreign key (CURRICULUMID)
    references CURRICULA (CURRICULUMID)
    on update restrict
    on delete restrict;
    alter table ZUORDNUNG_MODUL_CURRICULUM
    add constraint FK_ZUORDNUN_ZUORDNUNG_CURRICUL foreign key (CURRICULUMID)
    references CURRICULA (CURRICULUMID)
    on update restrict
    on delete restrict;
    alter table ZUORDNUNG_MODUL_CURRICULUM
    add constraint FK_ZUORDNUN_ZUORDNUNG_MODULE foreign key (MODUL_ID)
    references MODULE (MODUL_ID)
    on update restrict
    on delete restrict;
    alter table ZUORDNUNG_MODUL_LV_MA_SEMINAR_EXEMPLAR
    add constraint FK_ZUORDNUN_ZUORDNUNG_BLOECKE foreign key (BLOCKID)
    references BLOECKE (BLOCKID)
    on update restrict
    on delete restrict;
    alter table ZUORDNUNG_MODUL_LV_MA_SEMINAR_EXEMPLAR
    add constraint FK_ZUORDNUN_ZURODNUNG_LEHRVERA foreign key (MODUL_ID, LV_ID, ART_LV)
    references LEHRVERANSTALTUNGEN (MODUL_ID, LV_ID, ART_LV)
    on update restrict
    on delete restrict;
    alter table ZUORDNUNG_MODUL_LV_MA_SEMINAR_EXEMPLAR
    add constraint FK_ZUORDNUN_ZURODNUNG_MITARBEI foreign key (MA_ID)
    references MITARBEITER (MA_ID)
    on update restrict
    on delete restrict;
    THX for prospective comments!

  • Possible error in SDK docs for xmlDomInstance

    API Reference/modules/LrXml.html#xmlDomInstance:transform discusses normalizing the result you get back, and provides a snippet of string manipulation to do so:
    "... apply a substitution pattern such as this: string.gsub( result, "[\r\n      ]+", " " ) ..."
    I /think/ this substitution is supposed to be "[\r\n\t ]+"
    It looks like there is a literal tab character in the rendered content of the documentation, which somehow ate the '\t' escape sequence.

    The Spry site version is fixed (plus another quote error I
    found while i was at it..).
    The LiveDoc version will take a bit longer to get the fix
    live.
    Thanks,
    Don

  • Trouble with Update Wizard

    I am having trouble updating creator using the Update Center Wizard (Windows XP, sp2).
    I see four items in the Available Modules list:
    Java API Reference
    JSE 1.4.2_06
    Preview Features
    Java Studio Creator Update 6
    However, when I click the 'Add All' button, only Java API Reference gets transferred to the Include to Install list, and the Add' and 'Add All' button are greyed out.
    Does this mean that all the other items are up to date? I would not expect them to show up in the Available list if I already had the latest version of the modules.

    Hi
    The list in the update wizard tells you that there are no modules available to update under these folders
    J2SE 1.4.2_06
    Preview Features
    Java Studio Creator Update 6
    But Java API Reference module is a known issue that even if this module is updated, it shows in the list and downloads again if you continue. For now please ignore this as Creator people are working on that.
    Thanks
    Creator Team

  • Problem with Scheduler API

    Hello Friends
    I am trying this concept of Job Scheduler API of Netweaver for the first time . The problem that I am encountering is , after successfull deployment of my application DC , I cant see the job created by me in the job definations on server
    I am laying down the approach that I took for the development of job : -
    1) I created one EJB Module DC( sample_mdb_session ) and created one Message Driven bean
    ( JobBean ) and laid down the logic to be run on the execution of job
    I have also included the scheduler api in the build path of my DC
    2) nextly I created the required job-definition.xml and did the changes in ejb-j2ee.xml
    ejb-j2ee.xml
    <enterprise-beans>
    <enterprise-bean>
    <ejb-name>com.sap.scheduler.examples.session.JobBean</ejb-name>
    <jndi-name>JobBean</jndi-name>
    <resource-ref>
    <res-ref-name>JobQueueFactory</res-ref-name>
    </resource-ref>
    <message-destination-ref>
    <message-destination-ref-name>JobQueue</message-destination-ref-name>
    <jndi-name>JobQueue</jndi-name>
    </message-destination-ref>
    </enterprise-bean>
    </enterprise-beans>
    job-definitons.xml
    <job-definitions>
    <job-definition name="JobBean"
    description="Logs a string and calculates its length">
    <job-definition-parameter name="UserName"
    data-type="String"
    direction="IN"/>
    <job-definition-parameter name="NameLength"
    data-type="Integer"
    direction="OUT"/>
    </job-definition>
    </job-definitions>
    3) In the application DC( sample_application_dc ) I did the required changes in application-j2ee-engine.xml
    <application-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="application-j2ee-engine.xsd">
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type= "service">
    scheduler~runtime
    </reference-target>
    </reference>
    <modules-additional>
    <module>
    <entry-name>demo.sap.com~sample_mdb_session.jar</entry-name>
    <container-type>scheduler~container</container-type>
    </module>
    </modules-additional>
    </application-j2ee-engine>
    The document that i had reffered to construct everything was actually dealing with an EJB project and a respective .ear project, things were working fine till the time I was dealing with local EJB projects but as soon as I started working with DCs , the problems occured
    And when i deployed the application on the server it is deployed successfully , but I cant see the job in job definitions in SAP Netweaver Administrator > java scheduler section
    What i am doubting is that the changes that i did in the xmls are not apt , so If any one on the forum has done the scheduling job earlier can please send the required xml code as that may help in solving the problem

    hi,
    i hope u follow this [lin k|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90a95132-8785-2b10-bda5-90d82a76431e]
    and the architecture and sample application [this |https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e8ab5056-0e01-0010-5581-d3e51724ee21]
    thanks and regards
    bvr

  • Combining/ merging rows in PowerPivot

    Hi,
    Currently what happens is when I create a Pivot Table based on the first table I get count for ABC10 as 2, but ideally it should be 1. I want to combine Sub Bill Type if BILL NO and BILL TYPE is same. Ideally second row shouldn't be considered into calculation,
    but should include SUB BILL TYPE.
    Is there any formula to achieve this?
    I am not a query expert, so no idea if it's possible using query. Recently I am using this query.
    SELECT AL1.BILL_NO as "Bill No", AL1.REF_NO as "Ref No", AL1.REF_MOD as "Reference Module",
    AL1.STATUS "Bill Status", AL1.PAYER_NAME as "Payer Name", AL1.BILLING_DT as "Billing Date",
    AL1.DUE_DT as "Due Date", AL1.ID_TYPE as "ID Type", AL1.ID_NO as "ID No",
    AL1.REMARKS as "Remarks", AL4.FEELIST_ID as "FeeList ID",
    AL4.FEE_ID as "Fee ID", AL4.QUANTITY as "Quantity", AL4.GST_AMT as "GST Amount",
    AL4.GST_ABSORBED as "GST Absorbed", AL4.SUBTOTAL as "Sub Total", AL3.BILL_TYPE as "Bill Type",
    AL3.SUBBILL_TYPE as "Sub Bill Type", AL3.AMOUNT as "Amount", AL2.PAY_ID as "Pay ID",
    AL2.PAYMENT_MODE as "Payment Mode", AL2.PAY_STATUS "Pay Status",
    AL2.CHQ_ID as "Cheque ID", AL2.RECEIPT_NO as "Receipt No", AL2.COLLECTION_CTR as "Collection Centre",
    AL2.PAYMENT_DT as "Payment Date", AL2.PAID_AMOUNT as "Paid Amount",
    AL2.TRANS_DT as "Transaction Date", AL5.WORKPLACE_NAME  as "Workplace Name"
    FROM BIL_BILL AL1, BIL_PAY AL2, BIL_BILLING_FEE AL3, BIL_FEELIST AL4, LIC_WP_DET AL5
    WHERE (AL1.BILL_NO = AL4.BILL_NO (+) AND  AL1.REF_NO = AL5.WORKPLACE_NO (+) AND
    AL1.BILL_NO=AL2.BILL_NO AND AL4.FEE_ID=AL3.FEE_ID)  AND (AL2.PAY_STATUS='PD' AND
    AL1.DELETE_IND='F' AND AL2.DELETE_IND='F')
    Thanks,
    SS

    Hi ,
      Please check out the below link for the solution in Power Pivot
    Group Multiple Rows to Single Delimited Row in PowerPivot
    For achieving this in SQL , check the below link. This will work for SQL server. But your query looks like Oracle one.
    TSQL – Concatenate Rows using FOR XML PATH()
    Best Regards Sorna

  • The library module reference Error in Weblogic 9.2.2 workshop env

    I got errors when import an existing application into weblogic 9.2.2 workshop:
    The library module reference : beehive-netui-resources-1.0 is not allowed from the classpath of a non-web project, only JAR,EJB, and EAR module types are allowed.
    The library module reference : beehive-netui-1.0 is not allowed from the classpath of a non-web project, only JAR,EJB, and EAR module types are allowed.
    Unable to resolve the library module reference : wlp-framework-common-web-lib.
    Would you give me some advise how to resolve those errors in workshop?
    Thank you
    Edited by: user1277690 on Mar 17, 2011 9:44 AM

    Have you tried including the following in your setDomainEnv script:
    JAVA_OPTIONS="$JAVA_OPTIONS -Dcom.sun.xml.namespace.QName.useCompatibleSerialVersionUID=1.0"
    -Jesus

  • Need a function module to create production order with reference

    Hi
    I need a function module to create a production order with reference to an existing order. There is no BAPI available for SAP 4.7 release. I found that the function module CO_ZF_PRODUCTIONORDER_CREATE does not create with reference to an existing order.
    Any help will be rewarded.
    Pavan

    Dear Pavan,
    Unfortunately there is no FM for this..
    Cheers
    Nitesh

  • How to reference an External Library (Server Side) in a DC-EJB Module ?

    Hi:
    I start working with hibernate in a DC component, so I create my DC project and EJB module inside. I Make an external library following this
    Thanks a lot for your time on this thread.
    Rocío.

    Hi Rocío!
      Umm, I don't usually use DC's... I don't know if this will work... you can make an EAR (New Proyect -> J2EE -> Enterpise Application Module), add your EJB Module to the EAR (right click on EJB Project and choose Add to EAR proyect), and you'll find a j2ee-engine file on it, and you can add the reference there.Then deploy the EAR.
      I normally do something similar to your issue, I make a EJB calling XI via Java Proxys, and the reference to the XI libs are allocated on the EAR, not on the EJB. This is only for runtime, for compilation you must reference the hibernate jar with an external jar file, as always.
      A dirty solution could be this one: open your generated EAR with de-compressor, and copy your hibernate jar on it (at root). This way you'll load hibernate classes at runtime (I know this is an horrible solution, this is only for testing).
      As I said before, I'm not used to DCs, so this could be wrong, and be a waste of time... I don't know further...
      Good luck
      Eneko.

  • Function module to create Inbound delivery with reference to Purchase Order

    Hi experts,
    I want to create Inbound delivery with refernce to Purchase Order. But I want to create item wise. For example If one purchase order is there with 10 line items. 10, 20, 30, 40, 50......100.
    If I am showing report for Purchase Order with select option and if I select first 5 line items 10, 20, 30, 40, 50 then my program should be create one Inbound delivery for selected line items only. I have tried BDC for Tcode VL31N, but its not worked. Is there any Function module to create Inbound delivery with reference to Purchase Order for selected line items????????

    Hi,
    Try FM RV_DELIVERY_CREATE or GN_DELIVERY_CREATE.
    For creating a delivery wrt PO u 1st need to have a sales order i guess.
    Regards,
    Amit

  • Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.
      intially i created view object named EmpByEmail.........for that EmpByEmail1 is created in datacontrols....i deleted EmpByEmail in demo.model by mistake and i created again with same name EmpBYEmail another view object...again another EmpByEmail2 is created in datacontrols.....
    while i am running i am getting following error:::::::
    Error: demo.model.AppModule: Application module demo.model.AppModule has a view instance EmpByEmail1 that references an invalid view object.

    Hi,
        Please seasrch for the EmpByEmail1 file in ur project and remove all the details in the Page Def and UI and then try again.
    Due to the EmpByEmail1 existance in page Def this may occur . It may help , still if it was not working then I am sorry for that.

Maybe you are looking for

  • Is There a Way to Run a Redo log for a Single Tablespace?

    I'm still fairly new to Oracle. I've been reading up on the architecture and I am getting the hang of it. Actually, I have 2 questions. 1) My first question is..."Is there a way to run the redo log file...but to specify something so that it only appl

  • Non Unique Indexes on Dimension Table

    Hello ,   I have Material Dimension that has Product MainGroup, Brand , SPC code broken from Product Hierarchy.   As per Business Requirement , we don't want to use the Product Hierarchy , that should need to split into 3 pieces.   Since The Cube Dim

  • Restriction in event reported date and time

    Dear All,             We have a requirement where we want to keep check on all the reported events such that none of the events are reported with future date and time.           We have some 25 reporting events and we have an option to keep the check

  • Pics converted to multimedia in text messaging, Why???

    I need help and clarification.  When I send texts with a picture attached, I see a small window that says "converting to multimedia".  These are not videos or animated clip-arts.  The pictures are still shots, like a flower in a vase.  The single sho

  • Help with Creative Suite 4 Master Collection

    Hello my name is Adam I just recently started college and recieved the Creativeu Suite 4 Master Collection software for my Web Design classes. So I installed the software rebooted and ran Photoshop accepted the license agreement inputted the serial a