CO-PA form creation regarding

Dear All,
In CO-PA, requirement from the client is to display all the value figures in Rs.L.
In Forms, would like to know is there any setting for calculation value in R.L apart from creation of another calculated key figure / field.
Thanks
SMK Ganesh

Able to perform the same thru' ratio factor

Similar Messages

  • Form Creation for Service Order

    Hi
    I am new to CRM Mobile, although I have worked in CRM for couple of years now.
    In our project there is requirement to print forms (attached to Service Order) from Laptop whenever company representative meets customer. For this CRM Mobile is being used.
    Now related to this I have few questions:
    1) Form Creation: In CRM online system we can create form in SMARTFORMS. Do we use the same tool for form creation? Where is it created and how is it downloaded to Laptops ? (I believe  to a transaction type we assign action profile which calls this form. This is brought into system using normal synchronization)
    2) Which Database tables does it refer to, normal CRM application tables or SMO tables.
    Please help me in this.
    Thanx & Regards
    Hits

    Hi,
    the kind of Mobile applications we are talking about here is only running on laptops or tablet PCs, not on handhelds. So normally the users have an additional portable printer with them when being in the field.
    Another thing: For the document generation there are two possibilities, MS word or crystal reports. Both have advantages and disadvantages which need to be analysed for the project.
    Regards,
    Wolfhard

  • Forms Creation

    hai,
    Regarding form creation how do differenciate the cash payment and bank payment also like cash receipt and bank receipt. Because we need the following forms for printing
    1. Cash reeipt voucher
    2. Cash payment voucher
    3. Bank Payment voucher
    4. Bank receipt voucher
    5. Journal
    govind.

    Document type could be configured to track these separate transactions and be used to identify them.

  • Hi gurus when i am working on smartforms form creation

    hi gurus when i am working on smartforms form creation over. after that how can i test the form the puchase order is coming properly or not . plz explain me.

    here is the step by step procedure for the smart form creation for the purchase order...
    http://www.****************/Tutorials/Smartforms/PO/page1.htm
    regards,
    venkat

  • How can I copy a number of like fields and paste to reduce form creation time?

    How can I copy a number of like fields and paste to reduce form creation time?

    Creating Form Fields by Ted Padova

  • Automating Form Creation

    I have to create a set of application forms using Acrobat. My problem is that there are 12 x 6 x 5 variants, so would rather not create 360 individual forms.
    At the moment the workflow is as follows:
    Choose 1 of 12 Products
    Open 1 of 6 applicable app form templates (inDesign)
    Replace product name into [Product Name] placeholder (inDesign)
    Save a PDF down of each of the 5 serial codes for each template for each product.
    A simplified example:
    Product1_Template1_001.pdf
    Product1_Template1_002.pdf
    Product1_Template1_003.pdf
    Product1_Template2_001.pdf
    Product1_Template2_002.pdf
    Product1_Template2_003.pdf
    Product1_Template3_001.pdf
    Product1_Template3_002.pdf
    Product1_Template3_003.pdf
    Product2_Template1_001.pdf
    Product2_Template1_002.pdf
    Product2_Template1_003.pdf
    Product2_Template2_001.pdf
    Product2_Template2_002.pdf
    Product2_Template2_003.pdf
    Product2_Template3_001.pdf
    Product2_Template3_002.pdf
    Product2_Template3_003.pdf
    Ad nauseum....
    For each of these 360 pdfs, run app form wizard and save down (Acrobat Professional)
    As you can imagine the job is complex, and I would love a way of performing some sort of automation of the actual app form creation.
    A few notes (the serial codes are just a way for our client to track where the pdf originated from: i.e. tracking) If there is a different/easier way of doing this i'm all ears.
    Really if anyone knows of any ways of speeding up this process in any way, i'm all ears. Thanks.

    Yes, after you create the fields, you can replace the pages with pages from a different PDF and any fields will be retained. This process can be automated with the doc.replacePages JavaScript method: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.522.html

  • Material on adobe forms creation

    Hi,
    i wanted to have a material for step by step creation of adobe forms(PDF and interactive forms)....
    Please mail me if any
    Shiva

    Hi Shiva Kumar,
    Check the link below.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#47
    You may try creating the following forms using this tutorial.
    Dynamic Non-Interactive PDF Forms
    Offline Interactive PDF Form Using Download
    Offline Interactive PDF Form Using E-Mail
    Online Interactive PDF Form
    Regards,
    Rekha Malavathu

  • Custom List Form creation using Powershell - SharePoint 2013

    Hi,
    I have a custom List called 'IssuesList' with 4 fields - "IssueTitle","IssueID","IssueDesc","Status"
    While displaying display form I should show 3 fields expect Issue ID i.e. IssueID should be hidden.
    and on edit form only Status field should be editable. So using SharePoint designer I created respective Edit form and display forms and changed XSLT to control the display mode on the fields.
    I have everything scripted in powershell till now - creation of custom list, publishing pages, webparts etc. however I am looking for how to provision or associate these 2 list forms with IssuesList after I create the list in new site.
    I have restrictions on using wsp and site/list template due to business needs. So I need to know if there is any way I can upload these 2 files after I create custom list in powershell and associate them as defaultdisplay and defauteditforms?
    Please advise.

    Hi,
    Per my understanding, you might need to apply these custom forms to a list after list creation using PowerShell.
    With PowerShell with SharePoint Object Model, we can hide fields on list forms.
    The similar thread below with code snippet will provide more information about this:
    https://social.technet.microsoft.com/Forums/en-US/ee6fc2eb-197f-4144-94fa-8a4e438675d9/hide-a-field-from-edit-form-list?forum=sharepointgeneralprevious
    If there may be other requirements except for hiding fields, as you have limitation on using custom solution package(which should be preferable in such scenario),
    a workaround I can provide is that, after list creation, you can add Content Editor Web Part contains the CSS style or JavaScript to the form pages of a specific list, it will help you hide/disable the specific elements, this can be achieved programmatically.
    The code below can add a Content Editor Web Part to the DisplayForm of a list(though in C#):
    public static void AddCEWP()
    SPLimitedWebPartManager manager = null;
    SPFile file = null;
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    try
    web.AllowUnsafeUpdates = true;
    file = web.GetFile(web.Url + "/Lists/List018/DispForm.aspx");
    manager = file.GetLimitedWebPartManager(PersonalizationScope.Shared);
    ContentEditorWebPart webPart = new ContentEditorWebPart();
    XmlDocument xmlDoc = new XmlDocument();
    XmlElement xmlElement = xmlDoc.CreateElement("HtmlContent");
    //xmlElement.InnerText = "<strong>Hello World!</strong>";
    //write the custom CSS style or JavaScript here
    string content = "<style>your custom style here...</style>";
    xmlElement.InnerText = content;
    webPart.Content = xmlElement;
    manager.AddWebPart(webPart, "Top", 0);
    manager.SaveChanges(webPart);
    web.Update();
    catch (Exception ex)
    //Utility.SPTraceLogError(ex);
    finally
    if (manager != null)
    manager.Dispose();
    web.AllowUnsafeUpdates = false;
    About how to hide fields on Standard List Forms using jQuery:
    http://social.technet.microsoft.com/wiki/contents/articles/21730.sharepoint-2010-conditionally-hide-fields-on-standard-list-forms-using-jquery.aspx
    http://stackoverflow.com/questions/10010405/how-to-hide-a-field-in-sharepoint-display-form-based-on-the-field-name-jquery
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Adobe form creation with fillable=X fails

    Hello experts,
    I am working with a form designed in SFP - in the PDF preview everything is fine, the fields are fillable.
    When I create the form with the generated function module, it only works when docparams-fillable is empty (but then it is a static form)
    If I call the function module with fillabe=X I get a FPRUNX error. I need a fillable form (unfortunately).
    I have seen in the forum that others had the same problem - but have not found a solution yet.
    What do I need to tell the basis people for checking ADS configuration or installation?
    best regards,
    Johannes

    Hello!
    If you want yo make form fillable that means it becomes not just print form, but interactive form. Even if you are not planning to send data back to SAP and just want to change smth in the form before output - it is still sort of interaction, isn't it?
    Unlike print-forms part of this solution (which is included in you SAP license), interactive part requires additional licensing and installation of special credential on ADS server.
    Only if you have credential installed at the server you can make form fillable.
    See this note <a href="https://service.sap.com/sap/support/notes/736902">736902</a>
    Regards,
    Petr Perstnev

  • Urg : adobe interactive form creation using Web dynpro with ABAP

    <i>Hi Floks,
    Thank you For Your support and view my Quires.
    I need helpful answer Regarding this Question . I need to Create custom ADobe interactive Form with WEB dynpro ABAP .Could please help out and give me what are the step can i followed here (Ex) .
    Good rewards for best Answers.
    Thank You,
    Suresh Duvvuri</i>

    please check this link:-
    step by step it is explained
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3
    All the best,
    Mahesh.gattu

  • CT-3 form creation for procurement cycle

    dear experts !!!
    CT-3 certificate is required to be obtained from the Range Superintendent of Central Excise on the basis of which a 100% EOU can procure duty free indigenous goods.
    CT_3 is always quantity based and value based.
    After receipt of material the qnty and value gets debited from the CT-3 licence and the same value gets debited from B-17 bond (EOU). After receipt of form ARE-3A the corresponding value in B-17 bond gets credited to bond value.
    Ours is EOU unit and we have issued CT-3 licence to procure goods from one of our mfg-vendor. how to capture this ct-3 licence in SAP.
    SAP is having t-code J1ILIC01 to capture CT-3, which we receives from customer. I want t-code to capture ct-3 for vendor.
    plz suggest.
    regards
    kailash

    Hi Kailash,
    I am having the same requirement as yours, did u find any solution for ct3 for vendor.
    Thanks,
    Sai.

  • Adobe Form Creation Error - Invalid Response Code: (401) Unauthorized

    I'm trying to generate an impersonalized form in Guided Procedures. I got an error.
    I checked the SAP logs and the error is
    Invalid Response Code: (401) Unauthorized. The requested URL was:"http://hostXX:portXX/AdobeDocumentServices/Config?style=document"
    Before this error occurs I see an alert
    LOGIN.FAILED
    User: N/A
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          exception             true       Authentication did not succeed.
    I've checked the ADSUser and its not locked. Configuration and everything looks fine. I've tested the ADS connections too on SM59.
    We have similar configuration for DEV and its working fine there.
    Any help on this is highly appreciated.
    Version - SAP 2004s SP16
    Thank you,
    Srinivas

    I had a similar problem with authorization failed for the ADSuser. My problem however only occurs at night when the system is the least used.
    We have changed two things which I believed have now solved the problem.
    1. Make sure all j2ee servers in the cluster uses localhost for the web service destination. Our system was configured to use the central instace forcing all request to a single server.
    http://help.sap.com/saphelp_nw04/helpdata/en/4f/a00d41921bf023e10000000a155106/frameset.htm
    2. Check maximum number of users in VA. Ours was set to only 300 due to some earlier performance problems. Default is unlimited I believe, so it shouldn't be a problem normally. (Global configuration -> Server -> Security provider-> "MaxUsersCount")
    My conclusion is that we ran out of login sessions during night time for some unknown reason, causing a authorization failed exception on the app servers.
    Plausible?
    best regards,
    Richard Linnander

  • Dynamic form creation

    Hi all,
    Does anyone know if it is possible using dreamweaver, php and mysql to create a web form dynamically dependant on which database fields are active?
    Basically, I have a survey table to collect the data and an active fields table. What I wish to do is have the survey form entry page change automatically dependant on which fields are marked active in the 'active fields' table.
    e.g.:
    Survey Table:
    - Survey Item 1
    - Survey Item 2
    - Survey Item 3
    Active Fields Table:
    - Survey Item 1 - True
    - Survey Item 2 - False
    - Survey Item 3 - True
    In the above example a form would be created showing only Survey Items 1 & 3. If 2 was set to true, then the form would show survey items 1, 2 & 3. The created form should allow the user to be able to enter the relevant data which is then saved back to the database.
    To make things slighty more complex, it would be great if these fields could be placed in particular areas of the page depending on category type:
    e.g.:
    Survey Item 4 is added and belongs to Survey Item 1's category (defined in the Active fields table), so would therefore show as;
    Survey Item 1
    Survey Item 4
    Survey Item 2
    Survey Item 3
    Any ideas, pointers, links or vids would be gratefully received. Thanks in advance.
    Regards
    Paladindc

    Sure, it's possible, but you would need to code this by hand. It's not a good data model.
    Take a look at this thread for a better data model:
    http://forums.adobe.com/thread/824129?tstart=0
    That model would allow you much more flexibility and would be much easier to achieve what you are attempting.

  • Composite web form creation

    Hello gurus,
    I have created two webforms and would like to merge these 2 into 1...that is I want to make them composite.
    Can you list out the steps to create a composite webform please.
    Thanks, UB

    Hi,
    For creating Composite Web-form you just have to click create composite button, if you are using 11.1.1.3
    If you are using 11.1.2 then you have to click create button inside it click composite radio button and then add simple Data forms
    Regards,
    Avneet Singh Bhatia
    Edited by: Avneet on Dec 28, 2010 3:05 AM

  • Need Help Re: Forms Creation Make Text Appear or Disappear?

    Hello,
    I am assisting in the creation of a form that will be used by support personnel to send to clients.
    I would like to know if it is possible to make a form where if the user clicks, let's say the check box, 3 or 4 sentences pre-defined are displayed.  If the box is not checked, I do not want those sentences displayed.  Thank you!

    I would like to know if it is possible to make a form where if the user
    clicks, let's say the check box, 3 or 4 sentences pre-defined are
    displayed.  If the box is not checked, I do not want those sentences
    displayed.  Thank you!
    Yes, this is possible.

Maybe you are looking for

  • How do I install OS X on a PowerMac G3?

    Here's the issue - my nephew installed a game some time ago on our PowerMac G3 and killed the OS. It will start up and freeze while loading plug-ins. I bought OS X hoping to install it and fix the issues, but I can't get it to boot from the DVD and I

  • IC screen colors from portal

    When the IC is launched from the EP 6.0 portal the IC screens are a white on blue background with CRM 4.0 SP09. (easier on the eye) ISSUE: Our CRM dev & Test system is upgraded to SP12 but the IC screens now show as white on white background which is

  • Where is "extimated file size" ?

    Hello I'm using an IMac with Premiere Pro. When I want to export a video, I don't have the "extimated file size" in the export options box. where is it? can I find it somewhere?

  • Can't get rid of drive on desktop

    Ever since I installed Windows 7 using Boot Camp I have had a drive icon on my Snow Leopard desktop, which contains 2 files - AutoUnattend.xml and BootCamp3.1.64-bit.exe - and a 'drivers' folder. Should it be there? I have tried ejecting and moving t

  • 10.4.10 MAJOR ISSUES

    I have a Late 2005 PowerMac G5 2.0 GHz dual core i have been having real problems lately with lots of my software especially games. I recently had a repair where they guys went throguh my computer and foiund some unfamiliar objects that were shorting