Changing Standard W2 form

Hi Everybody,
I want to change the Left Margin and upper margin values of standard W2 form in SE71. Standard form is allowing me to make and create a transport request for these changes. While i tried to transport these changes to QAS, the transport log is showing me an error message
" Import  01/26/08 14:01:15 (8) Ended with errors.
  Method Execution 01/26/08 14:01:15 (8) Ended with errors."
I am not sure if this error is showing because i am making changes to the standard W2 form.
Do i need to copy this standard form and create a new custom form. If yes, then why did it allow me to make changes to the standard form.
Could somebody tell me, do i need to create a new custom form for changes or else can make changes to standard form itself. if so, how?
Appreciate your help.
Thank you
Mamatha

Hi,
My issue is resloved.
I am closing this ticket.
Thank You,
Mamatha

Similar Messages

  • Standard smart forms

    hi All,
    Pls give me the details that how to use system defined smart forms and how to copy and change standard smart forms in SAP 4.7EE
    Thanks,
    Nitin

    Standard SmartForms
    Smartforms for Invoice--LB_BIL_INVOICE
    Delivery Note--LE_SHP_DELNOTE
    Check these threads.
    smartforms

  • Changing Standard SAP SmartForms

    Hi Experts,
    I want to make some changes in Standard SAP forms
    So Can we change standard SAP Forms as per Client Requirement
    Warm Regards,
    Sandip Kokate

    Hi Sandip,
    Go to NACE transaction code > click on application (example EF ) > click on Output Types(f5) > then click on output type (example NEU purchase order ) > then on to left click on Processing routines .
    There you will get below four Processign routines:
    1. Print output
    2. Fax
    3 . EDI
    4 . Distribution (ALE).
    Against Print output you will have program  and form .
    or From table TNAPR
    field name FONAM.
    BR
    Dep

  • Changes in standard quotation form---RVORDER01

    HI ALL I HAVE COPIED THE STANDARD QUOTATION FORM-RVORDER01 AND WANT TO MAKE CHANGES IN IT IN (LANGUAGE ENGLISH) BUT I M NOT ABLE TO CREATE NEW WINDOWS AND ALSO I M CHANGE THE SIZE AND POSITION OF PREVIOUSELY DEFINED WINDOWS.
    SHARAD

    Hi Sharad,
    For Making adjustments to already defined windows - In the user menu Goto - Settings - click on form painter - enable the graphical form painter check box.
    For adding new windows - Goto Page windows - Edit- create Element.
    With Regards
    vasu
    kindly reward points for useful answers

  • Change Standard form in SDK

    Hi all,
    I want to change standard form in B1. So how to do it?
    Please send links for samples or study material.
    Thanks in advance

    Hello,
    U can write ur codes in Form load event of that particular form.
    1.U can add additional items
    2.U can make invisible existing items
    Try
                If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD And pVal.Before_Action = False And pVal.FormType = 672 Then
                    sboForm = SBO_Application.Forms.Item(FormUID)
                    Dim sboItem2 As SAPbouiCOM.Item
                    Dim sboItem3 As SAPbouiCOM.Item
                    sboForm.DataSources.DBDataSources.Add("OITT")
                    sboItem = sboForm.Items.Add("slsText", SAPbouiCOM.BoFormItemTypes.it_EDIT)
                    sboItem2 = sboForm.Items.Item("10000037")
                    sboItem.Width = "121"
                    sboItem.Left = sboItem2.RightJustified + 171
                    sboItem.Top = sboItem2.Top
                    sboET = sboItem.Specific
                    sboForm.DataSources.UserDataSources.Add("UDCFL", SAPbouiCOM.BoDataType.dt_SHORT_TEXT)
                    Try
                        Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                        Dim oCons As SAPbouiCOM.Conditions
                        Dim oCon As SAPbouiCOM.Condition
                        oCFLs = sboForm.ChooseFromLists
                        Dim oCFL As SAPbouiCOM.ChooseFromList
                        Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                        oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                        oCFLCreationParams.MultiSelection = False
                        oCFLCreationParams.ObjectType = "2"
                        oCFLCreationParams.UniqueID = "CFL1"
                        oCFL = oCFLs.Add(oCFLCreationParams)
                        oCons = oCFL.GetConditions()
                        oCon = oCons.Add()
                        oCon.Alias = "CardType"
                        oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                        oCon.CondVal = "C"
                        oCFL.SetConditions(oCons)
                    Catch ex As Exception
                        MessageBox.Show(ex.Message)
                    End Try
                    'sboET.DataBind.SetBound(True, "", "UDCFL")
                    sboET.DataBind.SetBound(True, "OITT", "U_CUSTID")
                    sboET.ChooseFromListUID = "CFL1"
                    'sboET.ChooseFromListAlias = "U_Cust"
                    sboItem = sboForm.Items.Add("slsText1", SAPbouiCOM.BoFormItemTypes.it_EDIT)
                    sboItem2 = sboForm.Items.Item("5")
                    sboItem.Width = "120"
                    sboItem.Left = sboItem2.Left + sboItem2.Left + 191
                    sboItem.Top = sboItem2.Top
                    sboET = sboItem.Specific
                    sboForm.DataSources.UserDataSources.Add("UDCFL1", SAPbouiCOM.BoDataType.dt_SHORT_TEXT)
                    Try
                        Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                        Dim oCons As SAPbouiCOM.Conditions
                        Dim oCon As SAPbouiCOM.Condition
                        oCFLs = sboForm.ChooseFromLists
                        Dim oCFL As SAPbouiCOM.ChooseFromList
                        Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                        oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                        oCFLCreationParams.MultiSelection = False
                        oCFLCreationParams.ObjectType = "17"
                        oCFLCreationParams.UniqueID = "CFL2"
                        oCFL = oCFLs.Add(oCFLCreationParams)
                        '' Adding Conditions to CFL1
                        'oCons = oCFL.GetConditions()
                        'oCon = oCons.Add()
                        'oCon.Alias = "CardType"
                        'oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                        'oCon.CondVal = "C"
                        'oCFL.SetConditions(oCons)
                    Catch ex As Exception
                        MessageBox.Show(ex.Message)
                    End Try
                    sboET.DataBind.SetBound(True, "", "UDCFL1")
                    sboET.DataBind.SetBound(True, "OITT", "U_SALOR")
                    sboET.ChooseFromListUID = "CFL2"
                    'sboET.DataBind.SetBound(True, "OITT", "U_Order")
                    'sboET.ChooseFromListAlias = "U_Order"
                    sboItem = sboForm.Items.Item("10000032")
                    sboItem2 = sboForm.Items.Item("1")
                    sboItem.Left = sboItem2.Left
                    sboItem.Top = sboItem2.Top - 30
                    sboItem = sboForm.Items.Add("slsLabel", SAPbouiCOM.BoFormItemTypes.it_STATIC)
                    sboItem2 = sboForm.Items.Item("slsText")
                    sboItem3 = sboForm.Items.Item("10000037")
                    sboItem.Left = sboItem2.Left - 167
                    sboItem.Width = "80"
                    sboItem.Top = sboItem3.Top
                    sboItem.Height = "14"
                    sboItem.LinkTo = "slsText"
                    sboLbl = sboItem.Specific
                    sboLbl.Caption = "Customer"
                    sboItem.Visible = True
                    sboItem = sboForm.Items.Add("slsLabel2", SAPbouiCOM.BoFormItemTypes.it_STATIC)
                    sboItem2 = sboForm.Items.Item("slsText1")
                    sboItem3 = sboForm.Items.Item("5")
                    sboItem.Left = sboItem2.Left - 99
                    sboItem.Width = "80"
                    sboItem.Top = sboItem3.Top
                    sboItem.Height = "14"
                    sboItem.LinkTo = "slsText1"
                    sboLbl = sboItem.Specific
                    sboLbl.Caption = "Sales Order"
                    sboItem.Visible = True
                    Dim oLink As SAPbouiCOM.LinkedButton
                    sboItem = sboForm.Items.Add("DSCardCode", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
                    sboItem2 = sboForm.Items.Item("slsText")
                    sboItem.Top = sboItem2.Top
                    sboItem.Left = sboItem.Left + 140
                    sboItem.Width = 20
                    sboItem.LinkTo = "slsText"
                    oLink = sboItem.Specific
                    sboItem.Visible = True
                    oLink.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_BusinessPartner
                End If
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End TryThis some sample code u can refer this but dont belive full
    If u r satisfied give points..
    By
    Firos.C
    Edited by: firoz101 on Jul 31, 2009 7:03 AM
    Edited by: firoz101 on Jul 31, 2009 7:04 AM

  • How To Remove Standard CheckIn Form in CheckIn menu option list

    Hi to all.
    I need To Remove Standard CheckIn Form in CheckIn menu option list.
    I want to use only my customized profiles.
    Is there any doc or sample related.
    Thanks in advance,
    Soni

    Unfortuantely, you must create your own custom component. I'm not going to explain how to do that since that requires a lot of typing, but if/when you decide to tackle that, you will need to include this in your resource file:
    <@dynamichtml custom_finish_layout_init@>
    <$include super.custom_finish_layout_init$>
    navBuilder.deleteItem('MY_PERSONAL_CHECKINS_'+pneCheckinDocProfiles.length);
    <@end@>
    However, keep in mind this is what I use for my content server (10gR3 with CS10gR3CoreUpdate component, build 186). I have no idea what future patches may or may not have done with profile naming conventions or changes. I'm confident this will still work, but cannot be for certain.
    Good luck.
    PS. Please award points if deemed necessary

  • Changes in ARE3 form.

    hi experts,
    i need to  change the standard ARE3 form but i found that the form has dynamic coding producing the smartform.
    Can you pls suggest how to add some data to printed in the sf?
    Regards,
    Sahai.S

    Hi
    It is better to copy the form and make the changes.
    Configure the custom form in place of standard form
    Shiva

  • How to make changes in HR Form using Form editor

    Hi,
    I am new to hr-abap..And I am working on HR form editor..and I wanted to generate a pay-slip using the hr forms..I had copied the standard form..and I am making the changes into that..
    I want to add my own customization into it..like I wanted to display total in words...also, i wanted to display a message at the end of my report..This message should be allowed to change to end user...like for eg..Some Seasonal greetings...
    I am using Tcode pe51 to make changes in my form...
    Please tell me how to go about and where to implement all these changes so that they will get displayed in my form...Its urgent...

    When you go into HRFORM tcode, double click on your form name.
    It will take you to Customization window where you can drag and drop all additional data yo want on form.
    For designing and coding purpose click on the LAYOUT button on top of that window.
    This will open the form in SMARTFORM.
    Dont try to go directly as your Form name dont exist in Smartforms.
    Check this link for more info -
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAXX/PYINT_FORMS.pdf
    Regards,
    Amit
    Reward all helpful replies.

  • Call standard adobe form from a WD application

    Hi All,
    I have a requirement of displaying a standard adobe form from a click of a button in a WDA portal,
    I am an ECC developer and have no idea of WD. I created a function module which uses submit statement to invoke the driver program and displays the PDF output, but when this function module is invoked from the portal on the click of button it gives and error FP job open error.
    I understand that displaying PDF wont work in this way on portal, so can anyone please guide me the correct procedure on how  to achieve this.
    I came across this thread
    [Regarding adobe form using Webdynpro ABAP|Regarding adobe form using Webdynpro ABAP]
    which mentions of feeding the complete PDF document to the UI element as an XSTRING context node bound to the pdfSource property, but the help link provided in the thread is not opening.
    Thanks in advance.
    Regards,
    Kartik

    Hi karthick , creat a button in the view and assign a action to it .
    inside that action eventhandeler method  call the method for prepare_adobe _form for dislay PDF  .
    method ONACTIONSHOW_ADOBE_FORM .
    data : l_pdfstring type xstring.
    " Select for print
    wd_this->prepare_adobe_forms( importing p_pdf = l_pdfstring ). " coding is given below
    " Call print
    cl_wd_runtime_services=>attach_file_to_response(
    i_filename = 'adobe_form.pdf'
    i_content = l_pdfstring
    i_mime_type = 'application/pdf'
    i_in_new_window = abap_false
    i_inplace = abap_false ).
    endmethod.
    prepare PDF
    method prepare_adobe_forms.
    data: lv_funcname type funcname.
    data: ls_outputparams type sfpoutputparams.
    data: ls_formoutput type fpformoutput.
    call function 'FP_FUNCTION_MODULE_NAME'
    exporting
    i_name = 'FP_TEST_DATE'
    importing
    e_funcname = lv_funcname.
    ls_outputparamsu2010nodialog = 'X'. " suppress printer dialog popup
    ls_outputparamsu2010getpdf = 'X'. " launch print preview
    call function 'FP_JOB_OPEN'
    changing
    ie_outputparams = ls_outputparams
    exceptions
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    others = 5.
    call function lv_funcname
    * exporting
    * /1bcdwb/docparams = fp_docparams
    importing
    /1bcdwb/formoutput = ls_formoutput
    exceptions
    usage_error = 1
    system_error = 2
    internal_error = 3
    others = 4.
    call function 'FP_JOB_CLOSE'
    exceptions
    usage_error = 1
    system_error = 2
    internal_error = 3
    others = 4.
    p_pdf = ls_formoutputu2010pdf.
    endmethod .
    Regards
    Chinnaiya P

  • Names of standard Adobe forms for SD

    Hi there
    I would like to use the standard Adobe Forms for Change Order(va02) and delivery document (vl03n).
    I found out the print-prg. names
    for ChangeOrder = SD_SDOC_PRINT01
    Interface = SDOC_INTERFACE
    formname = ?
    for delivery document  = RVADDN01
    interface = ?
    formname  = ?
    thanks for ur help !

    Hi
    For adobe forms with delivery notes I'm using
    Program: RVADDN01
    Routine: ENTRY
    FORM:  RVDELNOTE
    But it is not working, is the things I'm choosing right or wrong?
    Regards,
    MaX

  • Standard Adobe Forms in webdyn pro??

    Hello,
    I'm having a problem, I was asked that utilized the following standard webdyn pro's to change the LOGO of the company. Any idea which forms adobe used in these cases?
    Webdyn pro's standard requested:
    WDC_WSAM_SHMAE_SEARCH_MAT
    WDC_WSGM_MAT_DOC_PRINT
    WDC_WSPO_PO_DOC_PRINT
    Another question is where are these configured webdyn pro in spro, any ideas?
    Please Help me.
    Thank you

    Hi,
    If i remember correctly then I think you should be able to see the adobe form only when you click on the overview/print preview button check under that action but ai  not sure that you would be able to change then entire form itself. May be you should ask your fictional consultant that where does he configure this adobe form.
    Since in e-rec we have different adobe forms for different purposes and i think some where these forms are configured against each process...
    Are you looking to change at the WebDynpro  component level or from adobe form level itself. You can access the form from SFP transaction.
    Regards
    Pavan

  • Am using a standard smart form and a corresponding program.

    hi
    i  am using a standard smart form and a corresponding program. i did evry possible thing but it is not executing..where could be the error.?
    can any1 suggest

    Hi,
    Dude..!
    you told that you created form and corresponding print program also....!
    but you didn't mentioned what it is..! in the sense to which module..!
    are you changing any standard form or what..! be clear while raising issue..! so that you can get your issue cleared..
    and you have to assign your form and corresponding print program in NACE transaction for the given output type.
    Thanks & regards,
    Sasi Kanth.

  • Copying Standard SAP form

    hi all,
    curently I'm copying standard SAP form into Z* form then try to modify.
    Hopefully I face the problem can not add new window in new form.
    can any body have me how to solve it?
    regard,
    Hengky

    Hi
    U can change them only in the master version.
    If you have copied the sapscript from a standard one, probably you've copied all versions (for the main languages), but only one version is the master one.
    The master version is the language used to create the sapscript, so I suppose the German (DE) as your sapscript is copy of standard one.
    So if you need to change objects like window, paragraph,.... u can do it in the master version only.
    U can update the text elements only in the other versions.
    Anyway if you need you can assign another version as master one: trx SE71, insert your sapscript press change and go to Utilities->Convert the original language
    Max

  • Change in ARE3 form..

    hi experts,
    i need to change the standard ARE3 form but i found that the form has dynamic coding producing the smartform.
    Can you pls suggest how to add some data to printed in the smart form?
    We have to enter the license number also in the form which is not captured in the form
    Regards,
    Sahai.S

    Hi,
    Take ABAPer help and give the inputs from where he has to pick the license number and all,its purely technical people job.
    Thanks
    Ram

  • Add new field into Standard Adobe Form

    Hi Expert,
    I'm trying to do a very simple thing (at least that is what i think), we want to have new scenario for PCR (personnel change request). So i copy the standard interface and form (ISR_FORM_SPEG)  and add some new field in that form (trough Tcode SFP). The problem is the new field that i added is not showing up any value, i tried to add address or personnel area to the form. What do i miss here? I'm relatively new to this adobe form. Thanks
    Regards
    Hendri

    Hi,
    Because I'm new at this i will assume that this problem is just as a matter of binding problem. I've copy the form and interface  ISR_form_SPEG to Z.
    In interface(TCode SFP)  Z_ISR_IF_SPEG there is enty in import like this
    position | Type | QISR_TAB_type|   |    |
    In the Z_ISR_FORM_SPEG i drag the interface Position (from import folder) into the context on the right side of screen, in Layout tab i create ISR Text Display, and drag the position into the text display (which i believe is the binding processes). Activate it and save. But no value is displayed when running the iview on the portal (personnel change request), the form show and all label are show too but the value is not showing. Thanks

Maybe you are looking for

  • Block size in middleware adapter object

    Hi Am trying to download customers from ECC to CRM. If the block size is set to 1 in CUSTOMER_MAIN adapter object, and if i download a request (R3AR4) with a range of 20,000 (say 1,00,000 to 1,20,000) this request gets downloaded fine. The same happe

  • Can I retrieve photos that disappeared during sync?

    My recent photos were lost during a sync. When I attempted to sync a message popped up telling me I needed to either 1) add my iphone as a new device or 2) revert to most recent sync from a couple months back. The reason given had something to do wit

  • Need some Driver Help / Satellite L775D-S7206

    Getting to be such a common request these days.  I have a Satellite L775D-S7206 in which the hard drive died. I replaced it with a 128G SSD and a new copy of Windows 7. I have everything up and running great but I do show one Error and that is on the

  • Sky go on mac book pro

    I am trying to use sky go desktop application but it keeps asking me to enable drm everytime which i have and will not let me passed the log in screen .Can anyone suggest a solution please.

  • Security Update 2006-003 & Quicktime 7.1.1

    Hey folks. I'm running an intel Core Duo...and was wondering about these two software updates. Last time I downloaded a software update, my computer wasn't booting properly. Anyone download these? If so - are the results positive? Janet