Can throw some inputs on Implementation.

Hi Nagamohan,
Can throw some inputs on
Implementation Flow write from Scratch......Role of Functional Consultant SCM in Implementation Project write from scratch. what are all the documents he will referring through -- start from the day one.
Suppose let us consider an Example:-
I want to Implement Oracle E-Business suite for X - Company. X is into Auto Components.
Head Office is Located in Delhi,
Manufacturing Plants in Hosur(Bangalore) , Chennai , Indore and It contains respective warehouses for Manufacturing Plants.
Can you please guide how to go about this.
I will be handling implementation project ...Please treat this important & Urgent
regds

Hi,
FORMS TRACKING module provides an efficient method of tracking the various concessional forms, which are to be submitted to the Central Sales Tax Authorities to avail reduction in Sales Tax. The module can be extended to track and monitor other forms like Transit forms, Road Permits and Octroi forms. The product provides extensive analytical reports to supplement form-wise, customer-wise and period-wise details.
OptiSuite FORMS TRACKING module integrates with the Sales and Purchase modules of SAP R/3.
Main features of this module are:
1) Details of different concessional forms can be tracked in relation to the Sales Order, Purchase Order and Stock Transfer Order in an ERP system
Form type and eligible customers are identified based on Tax code & Condition types
2) Forms of any nature can be incorporated for tracking and monitoring purposes through Form Type customisation
3) Periodic reminders to the customers to issue the pending concessional forms can be sent as e-mail.
4) Facility to provide Annexure to the vendor along with the form (as the form may not have enough space to enter details).
5) Facility to track the Octroi forms
6) FI posting of financial transactions for payments made and payments received, directly from the OPTISUITE FROMS TRACKING module
7) Tracking of Transit forms and Road Permits
8) Provision to estimate the liability incurred due to non-receipt of concessional forms
9) Aging analysis can be done on forms that are due from customers
Centralized access to all Registers - eases auditing efforts
REWARD POINTS IF HELPFUL
Regads
Sai

Similar Messages

  • Am trying to upgrade iPad 2 to 6.1.2 and it shows error like "Unable to verify Update" you are no longer connected to the internet. But am connect to my wi-fi. Can somebody throw some light on this.

    Am trying to upgrade iPad 2 to 6.1.2 and it shows error like "Unable to verify Update" you are no longer connected to the internet. But am connect to my wi-fi. Can somebody throw some light on this.
    ============================================================
    Throws error saying
    "Unable to Verify Update"
    iOS 6.1.2 failed verification because you are no longer connected to the internet
    ============================================================
    Can anybody please respond

    Try this and see if it resolves the issue.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Then try again.

  • Reg: Can I code in standard implementation of a BADI "WCM_DECOUPLING"

    Hi all,
    I'm trying to use a  BADI (WCM_DECOUPLING) for transaction IW32. But when I tried to create an implementation for this BADI in SE19, it is throwing the following error "BADI definition WCM_DECOUPLING is only provided for SAP internal use".
    Then I've checked the attributes of this BADI in se18, an option "within SAP" is checked.
    I've checked the old threads also, but I couldn't find any help to use this BADI somehow.
    MY QUESTION: later, I've found using transaction SE84 that this BADI is already implemented by standard SAP in the name
    "WCM_DECOUPLING_IMPL" and activated. But, it's runtime behavior is shown as "EA-PLM is deactivated; implementation will not be called". Can I use this standard implementation to code my changes or validations.
    Thanks,
    Rajan U

    Dear Shahin,
    Thanks for your prompt reply.
    I've adapted the same method (SE24) to find this BADI. I see other BADIs doesn't have the required parameters flowing in. That is the reason why I am trying to some how implement this BADI.
    My requirement: After creating work order in Iw31, a list of people has to approve the work order by using permit (ech one will have the unique permit key). For this a pop window containing table control of permit keys listed in the order is provided.
    I've to place a check/validation to ensure that these permits are approved in the same order as it has to be done.
    for example: 1) Functional head 2) General manager 3) Managing director
    I've also searched for user exits, but, on that is suitable for this req is not working.
    Please suggest me a method to do this.
    or
    if I create ZBADI i.e. ZWCM_DECOUPLING, will this be called inside the standard program? will the exit handler call this?
    Please give me your suggestion.
    Thanks,
    Rajan U
    Edited by: Rajan Usman Basha on Jun 2, 2011 5:45 AM

  • Need some inputs

    hi,
    I have created a web service wherein on submitting the employee name, i can get the balance in the account of the employee.
    my service communicates with database which is an excel sheet. and the client is a servlet which invokes the service.
    hi all,
    I have created a web service wherein on submitting the employee name, i can get the balance in the account of the employee.
    my service communicates with database which is an excel sheet. and the client is a servlet which invokes the service.
    i have used Apache soap implementation for this.
    I have tried this out of my interest and want to get some inputs as where does this application stand.
    Also if anyone can tell me wht can be a real world financial application which i can try making as web service.
    How can i make this available on the net.
    any help would be highly appreciated.
    Thanks and regards
    neha

    Generally webservices are more useful in solving business application in which multiple organizations are involved. Suppose if one organizations creates the services they perform as webservices the other organization can use those services. For example customer order servise, health insurance and all. Better you send a mail to mail id then I can help you more. [email protected]

  • Can a user input query in WFA have IF THEN ELSE

    Below is my query and when I save it WFA throws the following error.Illegal user input query 'IF '${vfilerName}' != 'vfiler0' THEN
    SELECT
    vol.name,
    array.ip AS 'array.ip'
    FROM
    storage.vfiler AS vfl,
    storage.volume AS vol,
    storage.array AS array
    WHERE
    vol.vfiler_id = vfl.id... HERE is my actual query. IS an  IF THEN ELSE supported or I am doing something wrong.... IF '${vfilerName}' != 'vfiler0' THEN
    SELECT
    vol.name,
    array.ip AS 'array.ip'
    FROM
    storage.vfiler AS vfl,
    storage.volume AS vol,
    storage.array AS array
    WHERE
    vol.vfiler_id = vfl.id
    AND vfl.name = '${vfilerName}'
    AND vol.array_id = array.id
    AND (
    array.ip = '${arrayName}'
    OR array.name = '${arrayName}'
    AND vol.name = '${volName}'
    ORDER BY
    vol.name DESC
    ELSE
    SELECT
    vol.name AS 'name',
    array.ip AS 'array.ip',
    array.name AS 'array.name'
    FROM
    storage.volume AS vol
    JOIN
    storage.array AS array
    ON vol.array_id = array.id
    WHERE
    array.ip = '${arrayName}'
    OR array.name = '${arrayName}'
    END IF

    Yes you can use IF, but you cannot use Select ..... IF.... Select... ELSE.... SELECT... . It's not a valid SQL statement. If you want many SELECT statements you should use UNION but most of the time you won't need it. I've create a query that uses and it may help you. Take a look at the way I use IF. SELECT
        export_policy.name 'Nome das políticas',
        GROUP_CONCAT(if(rw_rule='sys'
        OR rw_rule='any',
        export_rule.clientmatch,
        null)) 'REGRAS RW',
        GROUP_CONCAT(if((ro_rule='sys'
        OR ro_rule='any')
        AND rw_rule='none',
        export_rule.clientmatch,
        null)) 'Regras RO'
    FROM
        cm_storage.export_policy
    INNER JOIN
        cm_storage.export_rule
            ON export_policy.id=export_rule.policy_id
    JOIN
        cm_storage.vserver
            ON export_policy.vserver_id=vserver.id
    WHERE
        vserver.name='${VserverName}'
        AND export_policy.name!='default'
    GROUP BY
        export_policy.name You can have some reference of IF usage here: https://dev.mysql.com/doc/refman/5.1/en/control-flow-functions.html#function_if

  • Hi everyone I have a macbook pro mid 2010 17'' 2.66 i7 looking to put a new hard drive in it something like a 250 gb  ,  orig drive 500 gb 5400 toshiba but i don;t really need that much space so i would like some input, type,speed,brand,compatibly,noise

    I have a macbook pro mid 2010 17'' 2.66 i7 looking to put a new hard drive in it something like a 250 gb  ,  orig drive 500 gb 5400 toshiba but i don;t really need that much space so i would like some input, type,speed,brand,compatibly,noise Thank You!!

    There's no reason to install a smaller hard drive. In some cases, it may decrease performance.
    Your MacBook Pro comes with a 5400 rpm hard drive, so what you can do is to install a smaller, 7200 rpm hard drive, so you will get a better performance. Any 2'5" SATA hard drive will work, but you can have a look at OWC for hard drives > http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/
    HGST and Seagate hard drives have a good reputation, so you can purchase one of them

  • How can i get input from user in Workflows

    Hello professionals,
    I'm new to SAP B1 Workflow, i have created some workflows and they all worked fine.
    But, I am wondering, How can i get input from user?. For example, i want to display list of options to choose between them and route the workflow based on the selected option. I don't want to use the exclusive gateway and check for some conditions, i want to get input from user.
    How can i do that?
    Thanks in advance,
    Kareem Naguib

    Hi,
    Please refer SAP help file:
    http://help.sap.com/saphelp_sbo900/helpdata/en/b8/1f9a1197214254b79bcf8f93f9fff9/content.htm?frameset=/en/44/c4c1cd7ca22…
    Thanks & Regards,
    Nagarajan

  • Proxy to file scenario ( pls gve me some inputs )

    I am Doing proxy to file scenario. i have some quries i want some suggestions regarding this scenario.
    Source  is proxy and Target  is File . i want to generate 6 files with same structure and different different filenames . I guess have to put condition in interface determination? is it correct? if it is correct what condition i have to put plz give me suggestions .
    filenames also generate different different names how it could be done in dynamic configuration? plz give me some inputs regarding this.
    Thanks
    Regards
    Tahir

    Hi,
    >>i want to generate 6 files with same structure and different different filenames
    How the filename is decided? If it is decided in runtime then you can go for single receiver channel and variable substitution.
    You need to make file name in the message mapping itself and assign it to a field of the target (or in any of the available message headers)
    If the filename is always constant (say then have names A, B, C etc with timestamp) . Then there should be a field in source structure which decide what file to be created right? here you can use receiver/interface determination with condition
    Regards
    Suraj

  • Can a BAdI (RSR_OLAP_BADI) be implemented in BI 7.0?

    Hi,
    I have seen some examples of implementing BAdI in BW 3.5 for creating virtual key figures in InfoCube, ODS etc.
    Can a BAdI (RSR_OLAP_BADI) be implemented for virtual key figures in BI 7.0 also (InfoCube & ODS)?
    Thank you,
    Sekhar

    no, i think  we cannot impliment for that particular RSR_OLAP_BADI badi because of this version change

  • Is there a linear equations VI thatI can use for inputting the coefficients with variables attached to them? Thank you.

    Is there a linear equation VI that I can use for inputting the coefficients with variables attached to them? I am currently studying elec engineering and am in the thick of transient analysis. It is very time consuming figuring the mesh and nodal analysis in the transform domain. With 3 branches in a mesh analysis the resistors, inductors and capacitors are represented with variable s in them. I need to determine in the transform domain then convert to the time domain. One equation goes like this: (3+2s+1/4s)i1s - (2s)i2s - (1/4s)i3s = 6/s -6. The other equations are similar. I must keep the variable s in the equation and solve it with s in the result. I made several VIs for determining simultaneous linear equations some for complex numbers and they work great. This one has me a little stumped. I thinking that maybe Labview doesn't have a VI for this. The other VIs were fine because you just plugged in the numbers and ran the VI and got your result. Any VIs that do LaPlace transform operations?
    Thank you.
    Tom

    Hello Tom,
    You can find a VI for doing Laplace transforms in Functions->Analyze->Signal Processing->Frequency Domain (this VI is only available in the Full and Professional versions).
    You may also find the following tutorial of help in working with linear systems in LabVIEW.
    Linear Systems in LabVIEW
    Keep up to date on the latest PXI news at twitter.com/pxi

  • How to impl. Enter key (when fill some input text field and then submit)

    I have some input field for login user in application and then when user submit on enter I want to login process start.
    Which is my solution for this?
    Now, user can login process start with click on Log in button.
    Thx.

    See complete explanation:
    http://blogs.oracle.com/Didier/ButtonToSubmitForm
    and download sample 2:
    http://blogs.oracle.com/Didier/Samples

  • Shall i put some input text controls into top frame of 3-Frame tree page

    Hi All,
    I got an requirment to put some input text controls as search criteria to tree fliter.
    Shall i do that?
    Thanks
    Michael

    Yes. When i put some text input item to the top frame page,
    i can't see it when i run the 3-frame.
    i found a parameter with the url OAPLRS=PLHO, but i do nothing for that.
    How can put something in the top frame page?
    Thanks
    Michael

  • Can't instantiate default ORB implementation ....

    I'm developing a J2EE application, and I have this ERROR :
    java.lang.ExceptionInInitializerError: org.omg.CORBA.INITIALIZE: can't instantiate default ORB implementation com.visigenic.vbroker.orb.ORB minor code: 0 completed: No
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at java.lang.Throwable.fillInStackTrace(Compiled Code)
         at java.lang.Throwable.(Compiled Code)
         at java.lang.Exception.(Compiled Code)
         at java.lang.RuntimeException.(RuntimeException.java:47)
         at org.omg.CORBA.SystemException.(SystemException.java:49)
         at org.omg.CORBA.INITIALIZE.(INITIALIZE.java:73)
         at org.omg.CORBA.INITIALIZE.(INITIALIZE.java:47)
         at org.omg.CORBA.ORB.create_impl(ORB.java:305)
         at
         at com.bo.wibean.WIServerImpl.init(WIServerImpl.java:214)
         at com.bo.wibean.WIServerImpl.(WIServerImpl.java:142)
         at retry.jspService(_retry.java:51)
    I'm using the OC4J r2. Some boby can help me ?

    Laurent,
    When are you getting this error ? Is this error coming from Oc4J or are you getting this error from JDeveloper 9i ?
    regards
    Debu Panda
    Oracle

  • Navigation for Month End Closings &  Some inputs on Monthly closing issues

    Hi Experts
    Some inputs on Month End Closing and
    what type of issues will be come accross during the closing( Mention any ).
    Navigation for the Month End Closings

    In the case of Inventory: Monthly Accounting Period closure, you need to ensure that there are no unprocessed shipping transactions, uncosted material transactions, pending WIP costing transactionsm etc.. The number of these kinds of transactions should be Zero. For example, if there are any unprocessed shipping transactions which might be stuck/errored out during Interface Trip Stop program run, then you can NOT close the period for that month until you clear these transactions. Check the metalink note, 262979.1 for the same.
    Navigation is Inventory > Accounting Close Cycle > Inventory Accounting Periods. Click on the Pending button to see the pending transactions. If there are NO requried resolutions to be done, you can close the INV period for that month.
    Regards,
    Hemanth

  • Gcin can't switch input

    I've been pondering this problem and hope someone can give me a hint. Ever since I ran pacman update a couple of days ago, it's several months before the last update, I'm unable to toggle to different input. When I login to gnome, gcin icon shows up correctly, and gcin process is owned by gdm, which I don't think is correct. When I su to root and restart gcin, all is working. Then I look at the process again, it's owned by my normal user. I've been looking at startup scripts and still can't figure out how gcin is started at boot. Please let me know if you have any idea.

    You can find some hint here (in Chinese)
    http://hyperrate.com/thread.php?tid=15345

Maybe you are looking for