Create custom forms using code or SAP B1 Studio, which one is better?

Hello Professionals,
I'm new to SAP B1 9.0 SDK, i'm currently creating forms using code, but i noticed that it can be mad using SAP Business Studio,
from your experience, which one is better for performance and quality wise?.
Your help would be greatly appreciated
Thanks in advance

Hi Karem,
http://www.mepa.ch/images/documentation/B1_90_WorkWithStudioSuite.pdf
Please Refer The Link and Start Working with Studio..
All the best
Regards,
Mayank Shah   

Similar Messages

  • Creating custom form with content type list - Shaepoint 2013 list

    Hi All,
         I have a list with a content type. So basically i have the default content type and another custom one.
    I would like to customize the forms and taught of using sharepoint designer.
    Is this a good approach or is it better using infopath.
    When i try using infopath i don't know how i can using content type to create forms.
    I basically have 2 forms based on the content types how can i separate this when using custom forms and what would be the best practice?
    Cheers and thanks in advance

    Hi Patrick,
    According to your description, you want to create a form for each content type in a custom list with multiple content types. Is it right?
    If we use Infopath to customize forms for a list with multiple content types, it only customizes the default content type, the forms for other content types don't have changes.
    For your requirement, I suggest you use SharePoint Designer to create forms for content types.
    More information about how to create forms using SharePoint Designer 2013:
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2012/09/20/how-to-create-custom-forms-using-sharepoint-designer-2013.aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • "SYNTAX_ERROR" while creating customer Master T-code-"FD01

    Dear All,
    Getting an error "SYNTAX_ERROR" while creating customer Master T-code-"FD01". The error as follwoes
    Short text :Syntax error in program "CMD_EI_API_CHECK==============CP ".
    What happened? : Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLCMD_BTE_OUTBOUND" had to be terminated because it               
         has                                                                               
    come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program                                                
         "CMD_EI_API_CHECK==============CP " in include                                               
         "CMD_EI_API_CHECK==============CM04T " in                                                    
        line 82:                                                                               
    ""LS_KNVP_NEW_PARTIAL-PERNR" and "<LS_KNVP_NEW>-PERNR" are not mutually"                      
        " convertible in a Unicode program. ."                                                        
    The include has been created and last changed by:                                             
        Created by: "SAP "                                                                               
    Last changed by: "SAP "                                                                       
        Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLCMD_BTE_OUTBOUND" had to be terminated because it               
         has                                                                               
    come across a statement that unfortunately cannot be executed. 
    Error analysis :The following syntax error was found in the program                                           
         CMD_EI_API_CHECK==============CP :                                                           
        ""LS_KNVP_NEW_PARTIAL-PERNR" and "<LS_KNVP_NEW>-PERNR" are not mutually"                      
        " convertible in a Unicode program. ."                                                        
    Information on where terminated :Termination occurred in the ABAP program "SAPLCMD_BTE_OUTBOUND" - in                          
         "CMD_CUSTOMER_BTE_1321_IMPL".                                                                
        The main program was "SAPMF02D ".                                                                               
    In the source code you have the termination point in line 330                                 
        of the (Include) program "LCMD_BTE_OUTBOUNDU01".                        
    Please help us on this,
    Thanks in Advance,
    Kumar.K

    Dear Kumar,
    please kindly apply the SAP note 1511101.
    I hope this helps.
    Mauri

  • Creating adobe form using SFP

    hi experts,
    I am trying to create Adobe form using transaction SFP ,  the form creation goes on smoothly but when I try to save or activate it or press any button it displays Error message  "Error when transforming object data". Please tell me what could be the reason of this error  and how can I rectify it.
    Points will be rewarded.
    Many thanks,
    Sushant

    Hello,
    Check <a href="https://service.sap.com/sap/support/notes/962763">the SAP note 962763</a>.
    Rgds,
    Francois

  • Enabling eRecord for standard WIPMOVE in the custom form using wip interfac

    Hi,
    Anyone know how to trigger the eRecord for the standard WIPMOVE transaction in the custom form using WIP Interface (wip_move_txn_interface & wip_movproc_pub.processinterface).
    I have done all the necessary setting and eRecords is getting generated in the standard out of box form. But when i call the same WIPMOVE transaction through a custom form using WIP Interface it is not generating eRecord.
    As suggested by cookbook I tried EDR_ERES_EVENT_PUB.RAISE_ERES_EVENT, ERES.PERFORM_TRANSACTION, nothing is working out.
    Any suggestion ?
    Thanks,
    Senthil

    Hello,
    It seems best to create a Service Request for this issue.
    Regards, Carlo.

  • Problem with creating customer account using TCA Java API

    Hi,
    I am trying to create customer account using TCA java API. i am getting exception saying PL/SQL numeric error: character to number conversion. but this error raises when calling API method
    HzCustAccountV2Pub.createCustAccount.
    can any body help me in solving this issue, any clue why this exception raises. i have tested even the code given in TCA API user guide. that code also gets same error.

    package client;
    import java.math.BigDecimal;
    import java.sql.Timestamp;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import oracle.jdbc.driver.OracleConnection;
    import oracle.jdbc.driver.OracleCallableStatement;
    import oracle.jdbc.driver.OracleTypes;
    import oracle.apps.ar.hz.v2api.HzCustAccountV2Pub;
    import oracle.apps.ar.hz.v2api.HzPartyV2Pub;
    import oracle.apps.ar.hz.v2api.HzCustomerProfileV2Pub;
    class CreateCustAccount {
         public static void main(String[] args) throws Exception {
         HzCustAccountV2Pub.CustAccountRec p_cust_account_rec = new HzCustAccountV2Pub.CustAccountRec();
         HzPartyV2Pub.PersonRec p_person_rec = new HzPartyV2Pub.PersonRec();
         HzCustomerProfileV2Pub.CustomerProfileRec p_customer_profile_rec = new      HzCustomerProfileV2Pub.CustomerProfileRec();
         BigDecimal[] x_cust_account_id = new BigDecimal[1];
         String[] x_account_number = new String[1];
         BigDecimal[] x_party_id = new BigDecimal[1];
         String[] x_party_number = new String[1];
         BigDecimal[] x_profile_id = new BigDecimal[1];
         String[] x_return_status = new String[1];
         BigDecimal[] x_msg_count = new BigDecimal[1];
         String[] x_msg_data = new String[1];
         try
         Class.forName ("oracle.jdbc.driver.OracleDriver");
         OracleConnection conn = (OracleConnection) DriverManager.getConnection ("jdbc:oracle:thin:@ebiztst.trianz.int:1526:PATCH","apps","apps");
         HzCustAccountV2Pub custaccountV2Pub = new HzCustAccountV2Pub();
         p_cust_account_rec.account_name = "John Ac";
         p_person_rec.person_first_name = "John";
         p_person_rec.person_last_name = "Smith";
         p_cust_account_rec.created_by_module = "TCA_EXAMPLE";
         HzCustAccountV2Pub.createCustAccount(
         conn
         , "T"
         , p_cust_account_rec
         , p_person_rec
         , p_customer_profile_rec
         , "F"
         , x_cust_account_id
         , x_account_number
         , x_party_id
         , x_party_number
         , x_profile_id
         , x_return_status
         , x_msg_count
         , x_msg_data
         System.out.println( "x_return_status = " + x_return_status[0] );
         System.out.println( "x_msg_count = " + x_msg_count[0] );
         System.out.println( "x_msg_data = " + x_msg_data[0]);
         if (x_msg_count[0].intValue() > 1) {
              OracleCallableStatement ocs = null;
              for (int i=0; i<x_msg_count[0].intValue(); i++) {
              ocs = (OracleCallableStatement)conn.prepareCall(
              "begin ? := fnd_msg_pub.get( p_encoded => ’F’ ); end;");
              ocs.registerOutParameter(1, OracleTypes.VARCHAR);
              ocs.execute();
              System.out.println((i + 1) + ". " + ocs.getString(1));
              conn.close();
              } catch (ClassNotFoundException e) {
              System.out.println("Driver Not Found: " + e);
              } catch (SQLException e) {
              System.out.println("SQL Error." + e);
    }

  • To create login form using swing with sqlserver as backend

    hi.
    can anybody send me code to create login form using swings .
    thnaks in advance..
    sj

    You do realise that you can't create Swing on a JSP page?
    You have to use HTML.
    If you want to use Swing, the java must be running at the client end, which means you need an Applet, and a completely different forum.

  • URGENT:Creating customer master using Sd_Customer_Maintain_all

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

  • Service for creating customer master - company code data....

    Hi
    I would like to know if there is a service to create customer master company code data?
    I have identified 2 services one for general data (CustomerERPCreateRequestConfirmation_In) and sales area data (SalesArrangementERPCreateRequestConfirmation_In).
    Regards
    Srinivas Dusi

    Here is the answer: Yes it is possible. Download the file, using option - File Download. File should include all key attributes & also attributes that needs to be updated. (Key here is to have appropriate assignment ID. )
    Use the same file for File Upload (modify attributes like Sort Key as required).

  • Creating a form using Acrobat 9

    I'm trying to create a form using Acrobat 9 and know how to insert check boxes and text fields but when I enter in data into the fields it copies it through the document.  How can I create a field that I can cut and paste throughout the document but allow it to have separate data in it from the rest of the fields?

    You'll need to rename all of the fields you copy & paste so that each one
    of them has a unique name. Fields with the same name will automatically
    have the same value.

  • I created a form using acrobat XI pro.  SOME users of the form cannot save the form.  what can i do from my side to 'correct' the issue?

    i created a form using acrobat XI pro.  SOME users of the form cannot save the form.  what can i do from my side to 'correct' the issue?

    Do you know what PDF viewer those users were using? Do you have any more details about what happens when they attempt to save?

  • Creating & managing forms using ALBPM

    Hi,
    I am new onALBPM & hoping that gurrus can guide me in following task.
    Creating & manging Forms using ALBPM & a XSD file.
    I am looking for some example & tutorial for above task
    Edited by: user586236 on Dec 17, 2008 3:26 PM

    Hello,
    Are you using any web service? Which .NET framework is installed in your PC?
    You might also want to look at this resolution:
    http://www.itjungles.com/task-failed-because-sgen-exe-was-not-found-solution.html
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to create arabic forms using adobe central forms

    How to create arabic forms using adobe central forms

    Any luck here? I have just a subset of your challenge, i.e., I want to get forms designed in Designer 8.2/Acrobat 9 to work in Reader 7.0.5
    Thanks!

  • Creating folio's using code/scripting?

    Hi,
    I would like to know if there's a possibility to create/upload folios using code or scripting, for example using InDesignServer.
    Maybe there's a SDK available for the Digital Publishing Suite?
    Thanks

    Yes that's my understanding for Javascript, with clarification that with "compile them all into animated GIF through script" using some external program (e.g. check out ImageMagick). Whether that is an OK solution depends on what you are trying to do (just for own internal use or distribution).
    For the Javascript docs see http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/photoshop/pdfs/photoshop-cc-javascr ipt-ref.pdf

  • How to create a form using dblink

    dear all
    I am using Ora11g Xe, i have created a dblink of another database user; now i would like to create a form using apex, would anybody can guide me how to go about it? i have tried with normal procedure of creating a form (using client@cmd ie tablename@dblink name) but it didn't work;
    thanks in advance
    uday

    My first preference wouldn't be to use a DB link as opposed to some APIs on the target database that I can call from the form.
    Reason being that there are some things that may best not controlled over a DB link.
    However if you have a really simple case and really have to use this method then in theory you could try creating a synonym pointing to the remote DB object and hopefully Apex should treat it the same as a local object.
    Warning, I've never tried it :-).

Maybe you are looking for

  • Separate Queries, Separate Group By's w/ Wizard

    I used the wizard to create a report w/ two queries. Using the wizard, I set the first query to designate a specific field as a group field. When I added the second query via the wizard, the step to set a field as a group field was skipped over. I ne

  • Moving from o2

    Hi, I'm already with BT for my land line and decided to sign up for BT unlimited broadband as my o2 contract end was approaching. I was just wondering, will my original phone conctract be scrapped so I can start a new contract which includes both my

  • Best option for exporting

    Could anyone tell me what the best format would be to export 3 min video commercials for 3000 lumin projectors. I am currently using winamp as my video player and sending that through s-video to a video mixer then to the projectors. None of my videos

  • Rebuilding Catalogue in PSE 12

    Every time I start up the Catalogue it takes ages re-building its content, and always ends up with "missing files". Why is this, and can it be put right?

  • Setting ORACLE_SID and connecting without @SID

    I am trying to install ArcSDE on the same server I have my 11g RDBMS. The SDE service fails because of a ORA-12560 error. But, that is not my question just the facts which build up to my question. The server is Windows 2003 64bit. The database is 11g