Is any request number generates when i create a sap script??

hi Gurus
I want to know Is any request number generates when i create a sap script??
if it is generates then how to find that request number???

Hello,
A simple solution to find out the request number if thisis not released is, logon to SAP system with diffrent user ID other then the request owner's ID, a pop up message appears informing whether to create a new task under the xisting TR number.
If the TR i already released, then go to table E071 table and pass the object name. you can find all the related Tr's for the object.

Similar Messages

  • Is there any number generated when we save a condition record in VK11

    HI,
    Is there any number generated when we save a condition record in VK11

    Dear Raj,
             No Number will be generated when you save the Condition record in the VK11 transaction , but wiil get saved in the data base.
    If you want to see you can go to VK12 or VK13 transaction enter condition type the select key combination then execute.
    i hope ti will help you'
    regards,
    murali.

  • Save option enabling  in spool created from sap script.

    Hi,
    I got a requirement where in the output letter created using sap script, needs to be saved on local desktop. when the form is displayed from sp02 the save button is greyed out and also the path system->list->save option is also disabled.
    in foreground when we preview the form, there too the save options are not working.
    is there any option to enable the saving of form / letter on local machine.
    awaiting your response....
    thanxs

    Spool generated from SAPScript output can be converted to PDF on local/desktop using program RSTXPDFT4.
    -Alpesh

  • How to create a sap script for sales order header items?

    Hi friends i am totally new to scripts i have got a task where i have to create a sap script for sales order header items details, the clue that i have got is to create using MEDRUCK but i have got no idea please can any body help me with this task with any sample sap script?
    Points will be rwwared with out fail Thks in advance.

    Hi,
    The Standard Form NAme is RVORDER01
    Regards
    Sandipan

  • How to create the Sap script & Layout Set (wants sample code)

    Hi All ,
    Can you please provide me the step by step procedure
    to create the Sap script & Layout Set .(please provide sample
    code/links /docs for layout & print program).
    Regards
    Rahul

    hi,
    go through the following links  what i found to create sap script.
    http://www.thespot4sap.com/Articles/SAPscript_Introduction.asp
    http://abapliveinfo.blogspot.com/2008/01/free-sapscript-made-easy-46-book.html
    http://www.thespot4sap.com/articles/SAPscript_example_code.asp
    http://idocs.de/www3/cookbooks/sapscript/sapscript_1/docu.htm
    http://idocguru.com/www5/cookbooks/sapscript/sapscript_1/example.htm
    www.geocities.com/wardaguilar25/sapscript-tutorial.html
    http://logosworld.de/www3/cookbooks/sapscript/sapscript_8/docu.htm
    how to create a  scripts?give steps?
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=2969311
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=2902391
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=3205653
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=3111402
    http://www.sap-img.com/sapscripts.htm
    http://sappoint.com/abap/
    http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
    http://help.sap.com/saphelp_crm40/helpdata/en/16/c832857cc111d686e0000086568e5f/content.htm
    http://www.sap-basis-abap.com/sapabap01.htm
    http://www.sap-img.com/sapscripts.htm
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci943419,00.html
    http://sap.ittoolbox.com/topics/t.asp?t=303&p=452&h2=452&h1=303
    http://www.sapgenie.com/phpBB2/viewtopic.php?t=14007&sid=09eec5147a0dbeee1b5edd21af8ebc6a
    Other Links

  • Steps to  create a sap script

    Please  i want one sample  with  steps to  create a sap script .
    girish

    Hi Girish,
    go to se71->first u create the form.
    there from PAGES AND WINDOWS OPTION , PLACE THE CONTROL ON MAIN WINDOW->EDIT->TEXT ELMENTS.
    GOTO->CHANGE EDITOR
    THERE GIVE FOLLOWING.
    /E ELE1
    &ITAB-VBELN&
    &ITAB-ERDAT&
    &ITAB-NETWR&.
    F3->SAVE AND ACTIVATE
    AND IN THE PRINT PROGRAM
    EXECUTE THE FOLLOWING CODE
    REPORT ZUSC.
    tables:vbak.
    parametrs:ordno for vbak-vbeln.
    data:begin of itab occurs 0,
    vbeln like vbak-vbeln,
    erdat like vbak-erdat,
    netwr like vbak-netwr,
    end of itab.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    FORM = 'form name '
    LANGUAGE = SY-LANGU.
    select vbeln erdat netwr from vbak into table itab where vben = ordno.
    loop at itab.
    CALL FUNCTION 'START_FORM'
    EXPORTING
    FORM = ' ' "GIVE U R FORM NAME ,LANGUAGE,START PAGE
    LANGUAGE = ' '
    STARTPAGE = ' '.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'ele1 ' (this one u have to give in mainwindow->edit->text elements)
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'ELE1 '
    FUNCTION = 'SET'
    TYPE = 'BODY'
    WINDOW = 'MAIN'.
    CALL FUNCTION 'END_FORM'.
    ENDLOOP.
    CALL FUNCTION 'CLOSE_FORM'.
    save,activate and execute
    I think it will useful for u.
    Reward points if useful.
    Thanks,
    Usha.

  • WRITE_FORM_LINES. Need to change the style when printing in the SAP Script

    Hi Experts,
    I am using the WRITE_FORM_LINES function module to write a list of numbers.
    But I need to change the font of the numbers when printing it.
    I have changed it_header-tdstyle = 'S_DOCUS1'...SAP standard one but I need to create my own style.
    I have created using SE72 and has given my own defined Character and Paragraph formats.
    when I pass through the function module there is no change in it.
    I think I need to create a text object is .. Can any one explain me hw to create a text object
    http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db827494511d182b70000e829fbfe/frameset.htm
       CALL FUNCTION 'WRITE_FORM_LINES'
              EXPORTING
                function                 = 'APPEND'
                header                   = it_header
                window                   = 'MAIN'
              TABLES
                lines                    = it_serial
              EXCEPTIONS
                function                 = 1
                type                     = 2
                unopened                 = 3
                unstarted                = 4
                window                   = 5
                bad_pageformat_for_print = 6
                spool_error              = 7
                codepage                 = 8
                OTHERS                   = 9.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
    Waiting for u r replies...
    Thanks,
    Chaithanya K

    In se75. go in change mode and click create button in application tool bar.
    Now text object is something to which a text is attached, like, a material or a Purchase order etc.
    Text format is like rich text format or plain text depending upon which an editor is invoked
    Specify Editor application. SAP provides standard Editor application choose from one of them(TA or TN)
    Line width
    This attribute determines the line width to be used for this text in the text editor. A SAPscript text line may consist of up to 132 characters.
    Save mode specifies how a text is saved in
    dialogue task
    When calling the corresponding save function, the system immediately writes the text module to the text database.
    in update task
    All changes to the text modules of a transaction are stored intermediately in a buffer. Only when the application object is updated does the system write the texts to the log file and, in the update task, stores them in the text file.
    For not in text file
    You can use SAPscript to edit texts that are not stored in the text database. In this case, SAPscript only returns the changed text table to the application program, which is itself responsible for storing the text

  • Issue in alignment of PE51 data when printing it in SAP Script

    Hi Experts
    I have a SAP Script which is used to print Check at the top and Re-numeration Statement at the second half via RFFOUS_C program. The re-numeration statement is designed in PE51. The Check is designed in SAP Script and the PE51 form is printing inside the script using Main window/ Text Element : 525-HR.
    The FM RP_IMPORT_PAY_STATEMENT is used inside the RFFOUS_C program which returns the table PFORM and the contents of  the PFORM is exactly the re-numeration statement data and are getting  printed one by one in the script using the variable REGUD-TXTHR. My object is fine with all the above said things. Only issue is with the alignment which is weird in SAP Script for the re-numeration part. But when I look into PC00_M10_CEDT (TCODE to view re-numeration statement) the output of designed PE51 form is good with proper alignment.When it is printed via script the alignment is not good at all.
    There is some differences in the formats of printing between PE51 and SE71. Do not know what exactly it is. How I can resolve this issue?
    Thanks
    Siva
    Message:Siva

    Hi Madhu,
    Sorry for the delayed response.See the below screen shot.This is how it prints now.The amounts are not aligned.Increasing the line spacing will increase only the space between the lines and i am using same character format for the variable REGUD-TXTHR.I would like to align them.
    Thanks
    Siva

  • Line item number issue when manually created PO is attached to Auto PO

    Initially, we have an automatically-created PO with 4 line items. We created another PO in R3 system and added the line items to the auto-PO. When this was added as 5th line, the item number listed was 14 (instead of 5). Could you help me investigate on this?
    Thank you!

    hi..
    please check the number assignment for your PO document type...
    whether there is serial number profile assigned to that Doc type or not....
    Thanks..

  • Issue of account document generated when billing created

    Hi All,
    We have a background daily job to created the IC billing. Now we hit an issue that some billings can't get the account document generated automatically when the billing is created, but when we release them manually, they can generate account document successfully without issue. Anybody know what should be the reason and how to reslove it? 
    Thanks!

    Dear
           Check it could be either accounting determination error or coulde be due FI/CO interface or derivation rule error extra so need to check while create billing document.
    Regards
    Ajit K Singh

  • HT2534 According your instruction number 1, when I creat account on computer, I have to click iTune Stores first. But, where can I get the iTune Store to click. I cannot find it. Please help me.

    I cannot find iTune Store to start for free download application.

    You are on your computer and not your iPad ?
    On windows with iTunes 11 on it then control-S gets the left-hand sidebar to show, and on a Mac option-command-S does similar. Then select the iTunes Store on that sidebar, click App Store at the top of the store home page, and find a free app, click on its free price, and then click 'create Apple id' on the popup

  • I get this error when I create a new Script : Failed to create script

    Hi everyone,
    I get this error, and I'm not able to work with this programme. So, I can't have acces to adobe support directly.
    Someone know what I could do for this? It seen, I have a problème with adobe server I think.

    have you seen this KB article: http://support.apple.com/kb/HT1398 ?
    JGG

  • To put a new page when month changes in sap script

    hello experts,
    how to put a page break whenever the month changes from the date range given ...
    e,g : 12.03.2007 to 12.09.2007 ... here i want to put the page break betwwen the records of month 03 .. 04..05..06... 09...

    Hi
    It depends on how you manage your sapscript, anyway in your program load all data the range in a internal table:
    DATA: BEGIN OF ITAB OCCURS,
                  DATE LIKE SY-DATUM,
              END    OF ITAB.
    ITAB-DATE = DATE_TO.
    APPEND ITAB.
    MONTH = DATE_TO+4(2) + 1.
    DO.
      IF ITAB-DATE = DATE_TO. EXIT. ENDIF.
      ITAB-DATE+4(2) = MONTH.
      IF ITAB-DATE(6) = DATE_TO(4).
        ITAB-DATE = DATE_TO.
      ENDIF. 
      APPEND ITAB-DATE.
    ENDDO.
    LOOP AT ITAB.
      CALL FUNCTUON 'CONTROL_FORM'
            COMMAND = 'NEW-PAGE'.
    ENDLOOP.
    Max

  • Request number in DSO

    hi experts, I just have a doubt on request number in dso, for example,I have 2 dso, data flow like below:
    PSA>DSO A->DSO B
    In DSO A , Manage->Requests
    Column 'PSA Request Number Generated when Request is Activated'  when activated the request,it generated.
    Column 'Request Number'  come from PSA request number
    In DSO B , Manage->Requests
    Column  same as DSO A
    Column 'Request Number'  like DTPR_XXXX
    I don't know what's the use of column 'Request Number' in DSO B ,is there any relationship with DSO A 's request?
    Thank you for any idea.

    hi kumar,
    I think I found the answer in the following link:
    How to Identify which reuest from PSA has been taken by DTP
    thanks any way for your prompt answer.

  • Request number not generating in SO10

    Hi all,
      I am having an Text in SO10 and now I had added some extra text
    When i am saving its not prompting for any request number
    How can i transport this without any request number.
    Regards
    Ajay

    Hi
    You have to create a customizing request to transport standard texts.
    And the Run the program RSTXTRAN, give the text name and execute.
    Then it will prompt for request number.

Maybe you are looking for