Getting problem while copying standard form

Hi All
   In Tcode PDF8 I tried to copy the standard form for country grouping 40 i.e. India. But not getting any forms when I press F4 there. Tried for USA and Germany standard ones are there. Only for India no standard form is appearing.
Can anybody help me out plzz.
Regards
Swathi

Hi ags,
Thanks.. I've already changed the TCODE from code and second thing about Include, I've also changed the name of BOTH (two Includes) and it is working fine.. but error still coming...
Generation errors in program
Source code   ????????????????????????????????????????     Line     0
  Error when generating the selection screen "0100" of report "ZRVBBWULS
and also, I've done only one change in Include, I've added one select-options over there and getting the same error, but if I add PARAMETERS, then its executed successfully. But I want add a "Posting Date" as SELECT-OPTIONS.
Pls try to resolve this..
Thanks a lot  in advance
Devinder
Edited by: Devinder Pawha on May 13, 2010 2:02 PM

Similar Messages

  • Problem while copying standard program to Z Program

    Hi SAP Forum,
    I have copied one standard program to Zprg. and there are TWO Screens in standard program (100, 200). But in my Zprg only 200 copied, when I'm trying to copy Screen 100, it shows an error, "Screen already exists"..
    And also, I've created one "Z" Transaction Code for my same  program. In that, I've mention, Screen Number: 100.. When I execute "Z" Transaction, the Screen 100, will come as selection cretria is on that,  and when I click on Execute Button, it comes back in SAP EASY ACCESS Screen (Initial Screen). But I want that, Screen 200 will come when I click on execute Button in Screen 100.
    How can I resolve this?
    Thanks
    Devinder

    Hi ags,
    Thanks.. I've already changed the TCODE from code and second thing about Include, I've also changed the name of BOTH (two Includes) and it is working fine.. but error still coming...
    Generation errors in program
    Source code   ????????????????????????????????????????     Line     0
      Error when generating the selection screen "0100" of report "ZRVBBWULS
    and also, I've done only one change in Include, I've added one select-options over there and getting the same error, but if I add PARAMETERS, then its executed successfully. But I want add a "Posting Date" as SELECT-OPTIONS.
    Pls try to resolve this..
    Thanks a lot  in advance
    Devinder
    Edited by: Devinder Pawha on May 13, 2010 2:02 PM

  • Getting problem while posting Invoice

    Hi all,
            Ofcourse this problem is related functional thing, i am posting in ABAP group. we are getting problem while posting invoice through f-43 transaction. The error is "Fiscal year 0000 not allowed for year-dependent commitment items". Please let me know if u have any solution.
    Thanks in advance.
    chandrasekhar.

    Hi chandrasekhar,
    pls post some infos:
    1) application aerea of the message and message no.
    2) document date / posting date
       and ohter date-fileds of the document
    3) SAP-Release
    Have you search in SAP-OSS with the message no. or
    message text ?
    regards Andreas

  • How to add new fields in sap copied standard form using itcsy structure

    hi guys,
      i want add some fields in sap script copied standard form using itcsy structure.
    let me know the procedure with any example.
    thanks,
    anitha.

    Hii anitha
    plz c code below
    Syntax goes like this
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    Example:
    In script form
    /: PERFORM READ_TEXTS IN PROGRAM 'Z08M1_FORM_EKFORM1'
    /: USING &EKKO-EKORG&
    /: USING &EKPO-WERKS&
    /: USING &EKKO-EKGRP&
    /: USING &EKKO-BSTYP&
    /: CHANGING &COMPNAME&
    /: CHANGING &SENDADR&
    /: CHANGING &INVCADR&
    /: CHANGING &COMPADR&
    /: CHANGING &COVERLTR&
    /: CHANGING &SHIPADR&
    /: CHANGING &REMINDER&
    /: CHANGING &REJECTION&
    /: CHANGING &POSTADR&
    /: CHANGING &LOGO&
    /: ENDPERFORM
    In program
    FORM Read_texts - To extract the standard texts from the table *
    FORM READ_TEXTS TABLES IN_PAR STRUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA : L_EKORG TYPE EKORG,
    L_WERKS TYPE WERKS_D,
    L_BSTYP TYPE BSTYP,
    L_EKGRP TYPE BKGRP.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKORG' .
    CHECK SY-SUBRC = 0.
    L_EKORG = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKPO-WERKS' .
    CHECK SY-SUBRC = 0.
    L_WERKS = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKGRP' .
    CHECK SY-SUBRC = 0.
    L_EKGRP = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-BSTYP' .
    CHECK SY-SUBRC = 0.
    L_BSTYP = IN_PAR-VALUE.
    CLEAR Z08M1_ORG_TEXTS.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = L_BSTYP.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = SPACE.
    ENDIF.
    READ TABLE OUT_PAR WITH KEY 'COMPNAME'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COMP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SENDADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_ADRS.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'INVCADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_INVC.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COMPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_CPAD.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COVERLTR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COVR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SHIPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_SHIP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REMINDER'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RMDR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REJECTION'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RJCT.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'POSTADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_POST.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'LOGO'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_LOGO.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    reward points if useful
    regards
    Jaipal

  • Urgent, Please help me in this problem.I am getting problem while installation

    I am using Windows 8 in my system. I am trying to install Sql Server in system . Everything is fine, but finally  when i click on install button i am getting the following error .
    please help me quickly. I well be thankful to you.

    Triple post meanwhile:
    http://social.msdn.microsoft.com/Forums/en-US/7fafa499-ca1e-42f7-a117-73df924d9847/urgent-please-help-me-in-this-problemi-am-getting-problem-while-installation?forum=sqlsetupandupgrade
    http://social.msdn.microsoft.com/Forums/en-US/a1c7978c-2f84-495f-a8b6-9e9fe46654d7/getting-problem-while-installing-sql-server-2012?forum=sqlsetupandupgrade
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Getting Problem while publishing Problem while publishing java.lang.IllegalArgumentExcep

    getting Problem while publishing Problem while publishing java.lang.IllegalArgumentExcep while deploying persistance with ejb sample application into cloud. can any one please tell me why i am getting this?

    Hi Goutham,
    I am facing the same issue. Please let me know how you have resolved it.

  • Getting problem while installing Snow Leopard (10.6.3) on my Mac Mini. The following issue is showing :  "mac os x snow leopard cannot be installed on this computer"  And My Mac Configuration details:  Model Name: Mac Mini Model Identifier: Macmini2,1

    Getting problem while installing Snow Leopard (10.6.3) on my Mac Mini. The following issue is showing : 
    "mac os x snow leopard cannot be installed on this computer" 
    And My Mac Configuration details:  Model Name: Mac Mini Model Identifier: Macmini2,1
    Intel Core 2 Duo
    1.83Ghz
    l2Cache: 2mb
    Memory : 2GB
    Bus Speed: 667MHz
    Please help me......
    Thanks

    Actually i have Mac OS X 10.5.4 DVD, I need to upgrade it to Snow Loepard(OS X 10.6)...
    Please suggest me what to do???
    Thanks

  • My iPad2 getting problem while charging through charging adaptor it's getting on off consist sly please hep me in this regard

    My iPad2 getting problem while charging through charging adaptor it's getting on off consist sly please hep me in this regard

    My iPad2 getting problem while charging through charging adaptor it's getting on off consist sly please hep me in this regard

  • Problem while creating script form - lang EN is not available in client 800

    Hi friends,
    I getting a problem while creating a script form in SE71.
    if I give the name of the script (zform1) and clicked on create then its giving an information message like " Form ZFORM1 language EN is not available in client 800".
    But if I use this form in the abap program its giving stop message "Form ZFORM1 language EN is not active and has no errors" and the control is coming out of the program.
    What could be the problem and how to solve it friends . Please help me.
    Thanks
    -Hima

    Hi There,,
    By default all the forms will be there in client 100, if you are using the exisiting form and making a Z copy of the same,, then first you will have to copy from the client 100 to 800.
    If you are creating the form right from the scratch,, you will that message,,but need now worry about that..
    go head and create the Zform, don't forget to activate the form, before calling in the driver program.
    In the driver program,, call the function modules to invoke the form and activate the driver program as well. then you are all set/
    Thanks-
    Rahul

  • Problem while opening PDF form in ABAP

    Hello All,
    We are getting error while opening results in trip transaction.The form we are using is standard PDF form.
    I did all ADS configuartion.
    But while opening the URL Http://Host name:port/AdobeDocumnetservices/config
    it is asking me user name & password.I am giving user as ADSUSER.But it is not accepting.
    ADSUSER is the user used in the RFC & services in JAVA.
    (Java & Abap are in the same server).
    Can anyone help me?
    Thanks in advance

    login to the server & go to
    /usr/sap/<SID>/DVEBMGS01/j2ee/admin
    run a file
    ./go
    it will open the visual administrator
    user id j2ee_admin
    password is the master pasword which you gave while installation SAP.
    and follow the path and check whether you have the entry or not.
    Please make sure for your HTTP destination service configuration.
    Visual Admin -> Server -> services -> Destination-> HTTP -> FP_ICF_DATA_<SID>
    Do you have this entry?
    URL: http://server:port
    Authentication type: BASIC
    User: ADS_AGENT / corresponds password
    also refer to sap installation guide where they have give something for adobe document serveres - post installation steps.
    Please award points if helpful.
    --Sreejesh

  • How can i copy standard forms? et.al.

    good day experts.
    i would like to ask the following:
    A. About FORMS...
    1. How can I copy the whole standard program of a form written/designed in SapScript to make a "z_xxxxxxxxx program"?
    2. How can i check the print program of a certain form?
    3. How can I convert sapscripts form into smartforms?
    B.About REPORTS...
    4. How can i set the page length and width of a report?
    5. How can i set the margins(left, right, top, bottom) of a report?
    Please give me details/steps to do on each questions.
    Thanks a lot. Rewards will be given.

    A. About FORMS...
    1. How can I copy the whole standard program of a form written/designed in SapScript to make a "z_xxxxxxxxx program"?
    use tcode SE37 to create a NEW form with the name z_xxxxxxx, and in any of edit screen, you can follow the menu path "Form -> Copy From ...", choose the standard form.
    2. How can i check the print program of a certain form?
    There are some database table for store the information, such as, TNAPR ... and so on.
    3. How can I convert sapscripts form into smartforms?
    It's something difficult to covert sapscripts into smartforms, for more details, you can read the SAP COURSE BC470.
    B.About REPORTS...
    4. How can i set the page length and width of a report?
    In the ABAP editor, put the cursor on the keyword REPORT, and press F1, you will get what you want.
    5. How can i set the margins(left, right, top, bottom) of a report?
    Use WRITE and SKIP.

  • How to Copy Standard form in Smartforms?

    Hi Experts,
    can anyone tell how to copy a standard form in Smartforms.
    Thanks in advance

    Hi Abdul,
    We have to copy them to '800'. (this is your own company define client no)
    All Standard Scripts and their respective print programs are listed in table 'TNAPR'.
    Ex: FORM MEDRUCK has the Driver Program SAPFM06P.
    NOTE: Never make any changes to the Standard Driver Programs
    STEP 1.
    Goto Transaction Code <SE71> and 
    select from Menu UTILITIES ->Copy from Client.
    Enter the Standard Form Name, It source Client 000 and the target Form Name that you want it to be saved as on your client.
    Say you are naming it as zmedruck1.
    Click on EXECUTE.
    STEP 2.
    Converting form to English.
    Open zmedruck1 in <SE71> With language DE.
    Then goto  UTILITIES -> Convert Original Language from DE to EN.
    Then you can modify the layout for example, chaging the logo, or changing the headers, or adding any new code to do some calculation etc.,
    SAVE THE CHANGES AND ACTIVATE.
    Then select from the menu  FORM -> CHECK -> TEXT.
    SELECT your driver program name from the list adn click on COPY.
    If you don't see the program name in the list then click on 
    'APPEND PRINT PROGRAM' and add your program name and then select it from the list and click on COPY.
    STEP 3: Assigning our form to the standard print program.
    Start Tr.Code <NACE>.
    In our present case since we are working on 'Purchase order' we have to select EF and click on the button Output Types.
    Then on Right hand side, scroll down and select  NEU - New P O Printout. 
    (This may change for different programs).
    Then Double click on  Processing Routines on Left hand side.
    Change from Display -> Change Mode. 
    Give your form name (zmedruck1) for printoutput and SAVE.
    STEP 4:
    Start Tr.Code <ME22N> since you are working on Purchase order and click on print Preview to make sure your layout etc., changes are OK. If not again you have to make the changes accordingly.
    If every thing looks ok then you can print your form.
    Regards,
    Sathish:)

  • Urgent : problem while migrating from forms 6i to 9i

    We are trying to upgrade forms 6i to forms 9i.
    One of our forms is using the host command to call a shell script . This command worked successfully in the form when it was
    in character mode in forms 6i. But we are facing problems while deploying it on web using forms9i.
    Would appreciate an early response.
    Regards ,
    Pooja

    Hi Pooja,
    1. Please check out the script by running it manually in the App Server Machine.
    2. If you are using any environment variables in the shell script, that are not defined in the shell script itself, then try defining in the shell script itself. Because, the environment variable that you are using might not be availble for the script while running using host.
    HTH,
    Regards,
    Arun

  • Problem while upating user form

    Hello experts !
    I have problem while updating my user form.
    I have a matrix , where i have already entered details in first row.
    now when i again navigate to that particular document where i entered the details the in the row,
    and add details in the next row and try to update,then it throws me an error
    " This entry already exists in the following tables  ' (@DE_D2) ( ODBC-2035 )  Message [ 131 - 183 ]'  "
    Even when i chk the table , i doesn't show any entries which i tried to enter .
    It would be appreciable if any body suggests me that how to overcome this problem.
    Regards
    Krishna vamsi

    Hello Parminder
    Why to delete the data from child table
    If i do so , then i will loose my data .
    Regards
    Krishna Vamsi

  • Getting eroor while copying and deleting user

    Hi All,
      I am unable to copy and delete users from one client, we are in ecc6.0. i am getting the following error while copying and deleting. the error is
    NUMBER_GET_NEXT AENDBELEG INTERVAL_MISSING.
    Please help me in this regard,
    thanks,
    praveen

    Hi Praveen,
    Implement the program correction to ensure that the system issues the correct error message.
    Manually create the missing interval.
    You can use error message CD 121 to enable you to identify the error more accurately. Depending on the additional information, the status is as follows:
    OBJECT_MISSING : The entire AENDBELEG number range object is missing and must be created.
    INTERVAL_MISSING: Number range interval 01 is missing and must be created.
    INTERVAL_NOT_INTERNAL: The definition of number range interval 01 is incorrectly set to 'external number assignment'. Delete the 'external' selection in the interval definition.
    Check the definition of the AENDBELEG number range object in transaction SNRO:
    Object name:   AENDBELEG
    Short text:    Change documents
    Long text:     Number Ranges for Change Documents
    To-year flag:                        Do not select
    Number length domain:                 CHAR10
    No interval rolling:                  Do not select
    Number range transaction:             SCDN
    Warning %:                            10.0
    Main memory buffering:
    No. of numbers in buffer:             10
    You must define the following interval:
    Interval No. 01
    from 0000000001
    to 9999999999
    internal number assignment
    Please look st SAP Note: <b>659573</b>
    Hope it helps.
    Please award points if it is useful.
    Thanks & Regards,
    Santosh

Maybe you are looking for