Assigning self generated code during receipt

Hi
My client is assembles ambulances.In his scenario he receives a simple four wheeler and changes it into finished ready ambulance.
Now the problem and requirement is:
During receipt of simple four wheeler at shopfloor they assign it a code and the code is unique and remains same upto dispatch and after sales service also.The code is as follows: VehicalCompanyState/No./Date
Now requirement is during receipt of four wheeler they want that code should be self generated, for that vehicle on basis of VehicalCompanyState/No./Date.
How this can be done in SAP b1?
Thanks

hi,
Auto generate of Serial number on receipt of ambulance will suit requirement.
Refer to help file.
http://help.sap.com/saphelp_sbo2005b/helpdata/en/1d/48a291fc4a0448bbc8dacd344e956c/frameset.htm
Jeyakanthan

Similar Messages

  • Deploytool - Exception in generated code during compilation

    Hi,
    I am trying to deploy a rather simple container managed application. When running it through the verifier of J2EE1.3.1 I receive no errors.
    During deployment I get the following message:
    "Error deploying ejb.jar: Compilation failed"
    The j2ee server output shows, that the error is located in the generated code of the Bean class:
    "d:\Java\j2sdkee1.3.1\repository\lap18\gnrtrTMP\AufnahmeAgent\de\faw\charite\aufnahmeagent\generated\AufnahmeAgentBean_PM.java:3: de.faw.charite.aufnahmeagent.generated.AufnahmeAgentBean_PM should be declared abstract; it does not define remove() in de.faw.charite.aufnahmeagent.generated.AufnahmeAgentBean"
    How can this be my error?
    The log only shows the following:
    Compilation failed.
         at com.sun.ejb.codegen.GeneratorDriver.compileClasses(GeneratorDriver.java:232)
         at com.sun.ejb.codegen.GeneratorDriver.preDeploy(GeneratorDriver.java:603)
         at com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployEjbs(JarInstallerImpl.java:707)
         at com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployApplication(JarInstallerImpl.java:221)
         at org.omg.stub.com.sun.enterprise.tools.deployment.backend._JarInstallerImpl_Tie._invoke(Unknown Source)
         at com.sun.corba.ee.internal.corba.ServerDelegate.dispatch(ServerDelegate.java:355)
         at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:255)
         at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:84)
         at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:99)
    Anybody ever met anything similar?
    My Setup:
    NT4.0
    JDK1.3.1 && JDK1.4 (tried both, made no difference)
    Code:
    BEAN CLASS:
    public abstract class AufnahmeAgentBean
            implements AufnahmeAgentModel, ClientAgent, EntityBean {
        private AufnahmeAgentControl control;
        public void registerRMIRemote(String remoteClassName) {
            try {
                Class cls = Class.forName(remoteClassName);
                Object[] params = { getClientRMIServerAdress(),
                                    getClientRMIServerName() };
                Object instance = cls.getConstructors()[0].newInstance(params);
                control.registerClient((AufnahmeAgentClientInterface)instance);
            catch(Exception ex) {
                System.err.println("Fatal RMI Error: " + ex);
        public AufnahmeAgentBean(){}
         * Called by the AgentEngine if a new AgentMessage has been sent to this.
         * @param msg the AgentMessage
        public void processMessage(AgentMessage msg) throws RemoteException {}
         * Called if a new request AgentMessage has been sent to this.
         * @param msg the AgentMessage
         * @return the result of the request
        public java.io.Serializable processRequest(AgentMessage msg) throws RemoteException{}
         *  data access methods
        public abstract String getAgentName();
        public abstract void setAgentName(String agentName);
        public void ejbRemove() {}
        public void setEntityContext(EntityContext context) { }
        public void unsetEntityContext() { }
        public void ejbActivate() { }
        public void ejbPassivate() { }
        public void ejbLoad() { }
        public void ejbStore() { }
         * Creates a new AgentServerBean instance.
         * @param serverID the id of this
        public String ejbCreate(String agentName)
                throws CreateException, RemoteException {
            setAgentName(agentName);
            AgentEngine agentEngine = new  EJBAgentEngine(EJBAgentEngine.STATIC_SERVER_ID);
            control = new AufnahmeAgentControl(getAgentName(),agentEngine, this);
            return agentName;
        public void ejbPostCreate(String agentName) {
    }THE REMOTE INTERFACE
    public interface AufnahmeAgent extends EJBObject {
        // The CMP methods for client connection
        String getClientRMIServerAdress() throws RemoteException;
        String getClientRMIServerName() throws RemoteException;
        void setClientRMIServerAdress(String value) throws RemoteException;
        void setClientRMIServerName(String value) throws RemoteException;
        public PatientMitPrioritaet[] getNawPatienten() throws java.rmi.RemoteException;
         public String getRTSArzt() throws java.rmi.RemoteException;
         public void setNawPatienten(PatientMitPrioritaet[] values) throws java.rmi.RemoteException;
         public void setRTSArzt(String value) throws java.rmi.RemoteException;
    }

    Hi again,
    I found the error. To explain it it is necessary to state that the interfaces implemented by the Bean class are generated. Since the code already worked at a time I didn't check it, which profed a mistake.
    One of the interfaces extended the EJBObject interface. Because of this the AufnahmeAgentBean thought it had to implement those methods too :-(
    Well lots of time wasted, but at least I now know a bit more about the architecture of our product.
    Where did you read this?? By "data access methods" do
    you mean your bean's "business methods"? Again, the
    container/vendor tool has no way of knowing how to
    implement your beans abstract methods - only the
    interface methods which it (usually) does by wrapping
    your bean. The container knows which of your beans
    attributes it is to manage from your bean's Deployment
    Descriptor: specifically, those elements identified as
    <cmp-field>, not from reflecting on your code!By data access methods I mean the following:
    you got a String that shall be managed by the database. Normally, of course, one would just declare it:
    protected String _foo;
    when using container managed persistence you just declare the accessmethods as abstracts:
    public abstract String getFoo();
    public abstract void setFoo(String foo);
    Thus the bean must be declared abstract.
    You asked where I read that the bean is always declared abstract when it uses CMP. Right here:
    http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/CMP3.html
    In section Differences between Container-Managed and Bean-Managed Code
    No they don't, and they are not supposed to. The
    remove method is part of the EJBObject definition,
    and>
    As I stated previously, such a declaration would not
    have been the same as those in your bean's interfaces.
    :)>
    afaik it doesn't have to be implemented when using
    container managed persistence.>
    The 'ejbRemove' method in your bean doesn't ever have
    to be implemented, but is does have to appear in your
    bean since it's declared in the Session/EntityBean
    interace. All methods in these interfaces are
    container callback methods. They exist to enable the
    container to manage the life of the bean. The
    'remove' methods in the Home and Remote interfaces are
    implemented by the vendor tool and proxy to the bean's
    ejbRemove method. Calling CMPInterface.remove still
    propagates a call to CMPBean.ejbRemove. In this case
    ejbRemove provides your bean the opportunity to null
    its members and allow garbage collection to occur more
    quickly.well of course you are right... but I didn' t receive the error message because of the ejbRemove but because of the remove method, which isn't supposed to be implemented in the Bean class. Now of course we know why ;-)
    Well thanks for your time, I decided to reward your invested time with five of the ten Duke Dollars ( especially since it reall was a design flaw that you couldn't find...lacking the sourcecode)
    Greetings, and thanks for the help,
    Markus "marksman" Hammori

  • During receipt validation; the first step ie, adding the files generated by asn1c tool causes errors.. especially with the

    During receipt validation; the first step ie, adding the files generated by asn1c tool causes errors.. especially with the #include statements
    --No such directory or file..
    Why this is happening??

    I am adding one more thing..
    Do we need to mention any linkage or frameworks or such while we are adding a .c file to
    Cocoa Mac OS Project

  • Error to generate the cash receipt form cash desk

    Hi sap Guru
    I have stuck my self to print the receipt from cash desk. Posting is properly save into the account, but as i give the command of print receipt the folowing error display......
    Contract account 1004400 for business partner 5500000071 does not exist
    Message no. >3002
    Diagnosis
    The contract account is not assigned to the business partner.
    Notes for the Industry Component Public Services
    Postings to a contract account are only permmited for the business partner assigned to the contract account as account owner.
    Example
    Two business partners - A and B - are assigned to contract account VK1. A is assigned to the account with a relationship that is not "account owner". B is the account owner. In this case, only postings with the combination business partner = B, contract account = VK1 are permitted. Postings with the combination business partner = A, contract account = VK1 are rejected.
    But in the above mention business partner is really wrong .... all the time system pick the same business partner 5500000071 and display the error massage as shown above.
    i am using the aplication form as :- FMCA_CASHPAYMENT_RECEIPT  for final output.
    I have`t did any default setting in business partner....... 
    So pls tell me how to avoid this wrong business partner Number that is comming all the time and stop the output of receipt.
    Prakash

    Hi,
    Select the line item to be reversed in t.code:fbcj and then goto menu bar ..
    Entry >> Delete entery ... Then system will ask u "Do u want to reverse the entry"
    then press  yes ... ur document will be reverse.
    regards
    prasad

  • Update Fund & Fund center data in auto generated PR during MRP RUN

    Problem in the MRP auto generated PRs.
    The normal PRs created manually have all relevant fields of fund center viz CO area ,commitment item,Funds center, fund.
    But the problem is with respect to the Purchase Requisitions generated automatically during the MRP RUN.
    How to include the fund centers in MRP generated PRs automatically in the creation stage itself instead of going into change mode using ME52n Transaction code and change it to include fund centers one by one for each line item.
    We require this as we have hundreds of PRs generated every day.

    Hi,
    In order to fulfill this requirement, transaction FM_MRP_PR should be used.
    Please also take a look to FM_MRP_PR on-line documentation :
    The PRs generated from the MRP run are considered as planning documents
    and do not have any impact on the budget. To encumber these PRs in the
    corresponding settlement receivers, you have to execute this program for
    the relevant PRs.
    Best Regards,
    Arminda Jack

  • Self Generated certificate validity issue in ACS 4.0 for Windows

    Hi,
    Is there any solution to extend the validity time of self generated certificate on ACS, by default the validity is set for one year.
    As the server certificate on one of the ACS which is CA has expired and need to renew it.
    Is it possible only one certificate from third party can be used both as a server certificate and certificate from CA for other ACS servers.
    Thanks in Advance
    Regards,
    Ahmed

    Other solution would be to create an in house(Microsoft probably) CA, and get a certificate for your ACS server. Go through the installation steps of Microsoft CA before, as the validity date for Server Certificate(i guess) is configured during initial install of CA.
    Regards,
    Prem

  • Error in generated code :Component Interface

    Hi All,
    I have my webdynpro component active works fine in Dev Server.
    When we move it to qualtiy we got a strange error " Error in Generated Code, Type Z*IWCI is unknown.
    Its related to the Component interface which gets generated automatically while any WDA is created but in our system it isnt getting generated?
    Looking for your valuable comments on ths
    Regards
    Bhanu

    Hi Bhanu,
    Goto se09 check for that request ICF service is generated or not? I think you first created in $TMP and assigned package.
    If ICF service is not available, just copy it to new comp, it will create new ICF service. I dont know this is the solution,
    just a guess.
    Cheers,
    Kris.

  • Freight - Marketing Documents Assign a Project Code

    Hi All,
    I have a customer that uses project codes and profit center functionality in SAP Business One. They flag transactions to record the relevant project codes and profit centers for extended reporting requirements. So far we have had no issues but we have encountered one lack in functionality which I can't seem to configure in SAP Business One. The issue is that we cannot assign a project code when recording additional charges / freight during a marekting document in SAP Business One. However you are able to assign a profit center? Is this a limitation of the product and if so will this be addressed in future versions? Does anybody know?
    Any feedback / ideas will be greatly appreciated!
    Thanks
    Andre Pienaar

    Hi
    Whole Marketing Document can be assigned to project, even freight is having separate  profit center.
    If u want to include more features in B1 pls post ur queries here:
    Forum: SAP Business One Product Development Collaboration:/community [original link is broken]
    Giri

  • Personnel area without assigning to Company code.

    Hi All,
    Can you let me know the scenario where it is not mandatory to assign a company code to the personnel area ?
    Also, is it possible to configure SAP HR for a personnel area in such a situation?
    Thanks & Regards, Swapnil Mishra

    Hi Swapnil,
    I think assignment of Personnel Area to Company Code is required when SAP HR-Payroll results are posted into Accounts, means it is required for integration of SAP HR and SAP FI. Also you will find a feature 'PPMOD' used during accounting posting also use BUKRS in decision tree.
    Regds.
    Suman

  • NullPointerException from generated code? (WLS81SP2)

    We are receiving an NPE, and looks like it is coming from
    the generated code. Most oddly, it is intermittent; repeating the operation that causes the error often succeeds. Any thoughts? Here is the stack trace:
    2005-09-12 17:21:31.273 | payprocess.ProcessBatch:process | EJB Exception: ; nested exception is:
         javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: java.lang.NullPointerException
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
         javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: java.lang.NullPointerException
         at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
         at org.ecmc.nib.batch.session.PaymentProcessFacade_blomzu_EOImpl_812_WLStub.processPayments(Unknown Source)
         at org.ecmc.nib.batch.payprocess.ProcessPaymentsHelper.queryFredTransPosted(ProcessPaymentsHelper.java:72)
         at org.ecmc.nib.batch.payprocess.ProcessBatch.checkForPayments(ProcessBatch.java:206)
         at org.ecmc.nib.batch.payprocess.ProcessBatch.process(ProcessBatch.java:133)
         at org.ecmc.common.batch.AbstractBatchJob.startBatch(AbstractBatchJob.java:40)
         at org.ecmc.nib.batch.payprocess.ProcessPayments.main(ProcessPayments.java:71)
    Caused by: javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: java.lang.NullPointerException
         at weblogic.ejb20.internal.EJBRuntimeUtils.throwTransactionRolledbackLocal(EJBRuntimeUtils.java:248)
         at weblogic.ejb20.internal.BaseEJBLocalHome.handleSystemException(BaseEJBLocalHome.java:247)
         at weblogic.ejb20.internal.BaseEJBLocalObject.postInvoke(BaseEJBLocalObject.java:327)
         at org.ecmc.nib.batch.session.RouterFacade_s27p4a_ELOImpl.route(RouterFacade_s27p4a_ELOImpl.java:57)
         at org.ecmc.nib.batch.session.PaymentProcessFacadeBean.processPayments(PaymentProcessFacadeBean.java:38)
         at org.ecmc.nib.batch.session.PaymentProcessFacade_blomzu_EOImpl.processPayments(PaymentProcessFacade_blomzu_EOImpl.java:46)
         at org.ecmc.nib.batch.session.PaymentProcessFacade_blomzu_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    Oops, sorry about that, grabbed the stack trace from the wrong spot; the correct trace is below:
    ####<Sep 12, 2005 5:21:31 PM CDT> <Info> <EJB> <wlsprd2.ecmc.lan> <ms1> <ExecuteThread: '20' for queue: 'weblogic.kernel.Default'> <PMT_PROCESS> <BEA1-593B17F9A1A85E2AA270> <BEA-010051> <EJB Exception occurred during invocation from home: org.ecmc.nib.model.LoanCancelFacade_fy2xso_HomeImpl@184a0b7 threw exception: java.lang.NullPointerException
    java.lang.NullPointerException
    >
    ####<Sep 12, 2005 5:21:31 PM CDT> <Info> <EJB> <wlsprd2.ecmc.lan> <ms1> <ExecuteThread: '20' for queue: 'weblogic.kernel.Default'> <PMT_PROCESS> <BEA1-593B17F9A1A85E2AA270> <BEA-010051> <EJB Exception occurred during invocation from home: [email protected]89 threw exception: javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: java.lang.NullPointerException
    javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: java.lang.NullPointerException
    java.lang.NullPointerException
    javax.ejb.TransactionRolledbackLocalException: EJB Exception: ; nested exception is: java.lang.NullPointerException
         at weblogic.ejb20.internal.EJBRuntimeUtils.throwTransactionRolledbackLocal(EJBRuntimeUtils.java:248)
         at weblogic.ejb20.internal.BaseEJBLocalHome.handleSystemException(BaseEJBLocalHome.java:247)
         at weblogic.ejb20.internal.BaseEJBLocalObject.postInvoke(BaseEJBLocalObject.java:327)
         at org.ecmc.nib.model.LoanCancelFacade_fy2xso_ELOImpl.localGetLoanPlacementStatusTypCd(LoanCancelFacade_fy2xso_ELOImpl.java:228)
         at org.ecmc.nib.batch.session.payprocess.CheckLoanBalance.update(CheckLoanBalance.java:40)
         at org.ecmc.nib.batch.session.payprocess.RouteToMethods$RouteMeQueryHandler.processStep(RouteToMethods.java:240)
         at org.ecmc.nib.batch.session.payprocess.RouteToMethods$RouteMeQueryHandler.processRow(RouteToMethods.java:111)
         at org.springframework.jdbc.core.JdbcTemplate$RowCallbackHandlerResultSetExtractor.extractData(JdbcTemplate.java:939)
         at org.springframework.jdbc.core.JdbcTemplate$1QueryStatementCallback.doInStatement(JdbcTemplate.java:256)
         at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:204)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:266)
         at org.springframework.jdbc.core.JdbcTemplate.query(JdbcTemplate.java:270)
         at org.ecmc.nib.batch.session.payprocess.RouteToMethods.routeMe(RouteToMethods.java:62)
         at org.ecmc.nib.batch.session.RouterFacadeBean.route(RouterFacadeBean.java:35)
         at org.ecmc.nib.batch.session.RouterFacade_s27p4a_ELOImpl.route(RouterFacade_s27p4a_ELOImpl.java:46)
         at org.ecmc.nib.batch.session.PaymentProcessFacadeBean.processPayments(PaymentProcessFacadeBean.java:38)
         at org.ecmc.nib.batch.session.PaymentProcessFacade_blomzu_EOImpl.processPayments(PaymentProcessFacade_blomzu_EOImpl.java:46)
         at org.ecmc.nib.batch.session.PaymentProcessFacade_blomzu_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

  • XCode wont find source code during debug

    My XCode project (an exernal target initially generated using GNU autotools, and imported into XCode) won't find the source code during debug.
    I'm sure this is a project setup issue, but i can't seem to figure out which setting i need to change.
    Any help is appreciated.
    Thanks

    Hi,
    make sure Debug symbols are generated! If you for example choose to debug while the project is set to "Release" mode (Project->Set Active Build Configuration), you will not get your code displayed and instead have to use the asm output of the debugger.
    If set to "Debug", XCode switches all necessary gcc... parameters for debugging.
    Volker

  • VI02 - Error message while assigning G/L code to shipment in Vi02 tcode.

    Hi All,
    When I assign G/L code in VI02(Shipment cost) to a shipment then when I press enter or copy button an error message is generated saying "Chk S Loc-VL02N/Maintain YRVX001/002". What is this error, how can I check this, I mean how to rectify. But same is working in my quality server. Kindly note that the above error is in production server. Kindly help.
    Regards
    Rajesh Vasudeva

    Hi,
    It seems to be some missing customization in Production.
    Your Functional Consultant might have done some customization for this in SPRO and transported it to Quality only.
    Please check for the released request regarding this or discuss with SD Functional.
    Regds,
    Anil

  • HowTo: Use package structure in generated code?

    Hi,
    I'm trying to find out if JCS is meeting my requirements for JSF development. So far it is pretty good, although the lack of support for new components is defeating the purpose of JSF for a great deal.
    One of the most terrible things I encountered so far is the fact that I've been unable to get JCS to create a package structure to contain the generated code. In other words, I want JSC to generate the code in "src/com.foo.bar.my.application" instead of just the root of "src/" (where src/ means the source-folder of my project).
    This is a real drawback.
    Maybe I'm wrong, but in that case it's a plain bug because I can't get it to work.
    Iwan

    Admitedly, Creator does not yet offer much flexibility in terms of user-defined package structure. I know you won't like this, but here's a workaround/hack that almost gets to where you want to be.
    First of all, the binding between jsp file and backing bean is defined by the relative positioning between the two files. A JSP file at the top level folder maps to a backing bean just under the assigned java package name (something like webapplicationxx). If you create a directory structure for your JSPs and create pages in them, Creator will create a corresponding package hierarchy for the backing beans.
    So, one way to contrive a java package structure such as com.foo.bar is as follows (best to start with a new project):
    1. Under the Web Pages folder, create a subfolder hierarchy "foo/bar".
    3. Under the Java Sources folder, rename the top level package to 'com'.
    4. You may now create Web pages in the foo/bar subfolder. You'll probably want to cut & paste the Resources directory into the foo/bar folder if you want to use stylesheets, etc. As the pages are created, notice that a com/foo/bar package structure is created under the Java Sources node where the backing beans are maintained.
    One final note, due to a bug in Creator, renaming the package in step 3 does not properly update references to the old pacakge in SessionBean1.java. These will have to be manually changed in the editor. Also note that the ApplicationBean1 and SessionBean1 files must remain at under to top-level package.
    We acknowledge this deficiency in Creator and are working to fix it in the next release.

  • Assignment of company code to the Equipment.

    Hi All,
    I am new-able in sap pm please guide me.
    During creation of Equipment why we are assigning the Company Code, if plant is already assign.
    What is the need of company code.
    Thanks & Regards,
    B.K.Pathak.

    You will not assign the company code manually. Once you assign Maintenance plant, system will copy from the Enterprise structure configuration.
    To validate the usage of company code in equipment master:-
    Asset numbers will be assigned to company code. These assets are created against company code only.
    Cost centers will be assigned to equipment. Cost centers are created against company code / controlling area.
    To validate the Asset & Cost Center entries in Equipment master, company code should be available in Equipment master.

  • Assigning a t-code to a query

    Hello,
    is there a way to assign a t-code to a SAP query? the user would like to run the query using a t-ocde.
    the queries are located in the standard area (client -specific). if am not sure if this is helpful or not.
    thanks in advance for the help

    Hi,
    Execute query and next open another session se38
    You can see a program name something like this AQ03ZVPC_USR====INFO_PARTS==== in program name field
    assign a Tcode to that program.
    Other wise there will option to generate program in query. using that create a program and assign t code to that
    aRs
    Message was edited by:
            aRs

Maybe you are looking for

  • 2 ipods on 1 computer, but only 1 works.

    My boyfriend and I both got ipod nanos, he got his first so we installed everything onto my computer and his is working just fine, it updates when we download new music and has no problems. Then I bought mine and assumed it would work just as well, b

  • Ipod Classic TV viewing?

    I have an IPOD Classic and have downloaded music videos from Itunes (legally) Would like to view on my large TV but don't know the proper cables. My TV has USB port as well as an unused HDMI inputs. Any thoughts as to the proper cable and settings on

  • How to print pallet labels in abap

    Can anyody tell me the code for printing a pallet label details from abap editor based on a handling unit and sequence count number?? Thank you

  • ...And I Thought it Would Never Happe

    I've had my black zen micro for six months now and I've been reading about the well known headphone jack problem, although I just brushed you all off as being careless :P!!!!!!!! But nope, boy was wrong ! Just walking to work one day I started to get

  • Donald Q. asks............

    I downloaded the Adobe Help Center zip file for my Photoshop Elements 4.0, but I can't find the Adobe Help Center folder that the download instructions mentions for this zip file. The download instructions said to copy the "unzipped" zip file to: Pro