How to place the PO no in VL10B

Hi All,
when i click on the PO number from  ALV display, thecall transation will direct to VL10B.
my requiremnt is to place the PO number in VL10B which is there in the second tab automatically.
please help me out to achieve this.
thanks in advance
sriram rapolu

Hello Sriram
You may try either of the the following approaches:
*& Report  ZUS_SUBMIT_VL10B_REPORT
REPORT  ZUS_SUBMIT_VL10B_REPORT.
start-of-selection.
" Submit the report instead of calling the transaction directly
  SUBMIT rvv50r10c
*          with gt_parnr ...
*          with st_ean11 ...
          with st_ebeln in gt_rng_ebeln  " <<< Fill your PO number in RANGE itab
          and return.
" Use this fm in combination with
" - SET/GET parameter ('BES') for purchase order  OR
" - batch input data which fills the PO number on the 2nd tabstrip
  CALL FUNCTION 'ABAP4_CALL_TRANSACTION'
    EXPORTING
      tcode                         = 'VL10B'
*     SKIP_SCREEN                   = ' '
*     MODE_VAL                      = 'A'
*     UPDATE_VAL                    = 'A'
*   IMPORTING
*     SUBRC                         =
    TABLES
      USING_TAB                     = gt_bdcdata
      SPAGPA_TAB                    = gt_set_get  " SET/GET parameter
*     MESS_TAB                      =
    EXCEPTIONS
      CALL_TRANSACTION_DENIED       = 1
      TCODE_INVALID                 = 2
      OTHERS                        = 3.
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
end-of-selection.
Regards
   Uwe

Similar Messages

  • How to place the images in Indesign xml file by Javascript?

    How to place the images in Indesign xml file by Javascript?
    We got the Indesign xml file, how to give the image placement link by Indesign javascript? Please help me its urgent.

    Hi,
    You can pass the image url as a href attribute=> file:///Users/me/Documents/my_pic.jpg directly within your xml. It just needs that you pass a local, static and valid url.
    If you want to add image later once the xml is flowed and so target specific nodes and inject images, it's a bit more complex. If the node is not part of the layout, you may try to reach the XMLElement objet and such an attribute, then layout the element.
    var x = some XMLElement
    x.xmlAttributes.add("href","file:///Users/m/Documents/my_pic.jpg" );
    If already placed, then you have to get the associated pageItem, then place your file into it.
    pagItm.place ( File ( "/Users/m/Documents/my_pic.jpg" ) );
    Hope that helps,
    Loic
    http://www.loicaigon.com

  • How to place the "go" button at left size in dashboard prompt

    how to place the "go" button at left size in dashboard prompt

    Change your code to this and it should work:
    PARAMETERS : p_date LIKE sy-datum ,
                  p_uname LIKE sy-uname.
    DATA: field1(8) TYPE c .
    AT SELECTION-SCREEN .
       IF p_uname IS INITIAL.
         field1 = 'P_UNAME'.
         SET CURSOR FIELD field1 .
         MESSAGE e001.
       ENDIF .
    I think you need to have the MESSAGE statement (or something similar).  If you don't have a message class assigned to your program, instead of
    MESSAGE e001.
    you can use
    MESSAGE 'Please fill in all required fields' TYPE 'E'.
    - April
    Message was edited by:
            April King

  • How to place the JFrame in center of the screen

    Hi.. please any one tell me how to place the jframe in the center of the screen.. i am working on windows.
    setLocationByPlotform is not working...

    //GETS SCREEN SIZE
            Dimension screen_Dimension =Toolkit.getDefaultToolkit ().getScreenSize ();
            //GETS WINDOWS SIZE
            Dimension frame_Dimension = window.getSize ();
            //PUTS FRAME IN THE "MIDDLE" OF THE SCREEN
            window.setLocation ( new Point (
                    (screen_Dimension.width / 2-frame_Dimension.width / 2),
                    (screen_Dimension.height / 2-frame_Dimension.height/ 2)));Not sure if you want the raw version of it.......

  • How to place the animation in the middle of the .html

    Hi there,
    i have got a question. How to place the whole animation in the middle of the ".html".
    Hope you know what i mean.
    Benno.

    Center the stage follow the four step process below
    Code to paste into Stage > compositionReady
    //Center the Stage
    sym.$("Stage").css({"margin-left":"auto","margin-right":"auto"});
    Darrell

  • How to Deliever the PO using T_Code VL10B ?

    Sap Specialist,
                         How to Deliever the PO using T_Code VL10B ?                  
                         I have Created PO with type UD - Stock Transport Order.
                         I want to Shipping one Plant to another Plant.

    Hello Vasanth,
    In the t-code VL10B ( Purchase orders fast delivery),
    - Give your shiping point or delivering plant
    - Select the second tab Purchase orders and put the PO number (Stock Transport Order) and execute
    - It will list out the open PO (STO)
    - Select the line item with your purchase order and click on "Background" (if you want to check the STO before creating you can double click on lineitem)
    Hope this helps.
    Regards
    Arif Mansuri
    Reward if answer is helpful.

  • How to  Place the Cursor at Specific Position with-in a Char Field ?

    Forms 4.5 ver.
    Sun Solaris / Citrix env.
    Char Field - Length 65434
    How Can I Place the Cursor at "Specific Location"
    with in a Field ?
    with GO_ITEM('field Name') I can place the Cursor at Specific Field.
    But, How Can I achieve to Place the Cursor at Specific
    Position within that Field ?
    I know, the starting position, length of string I want to hightlight with the Cursor.
    tried using :
    go_item('substr(field_name,position,length)') ;
    but didn't work !
    Is it possible ?
    Thanks, Peri

    The only cursor postion behavior that can be controled is the item property "Keep Position".
    The following is the text from the on-line help for item property "Keep Position"
    KEEP_POSITION Specifies whether the Keep Position property should be True or False. When Keep Position is True, the cursor returns to the same position it was in when it left the text item. When Keep Position is False, the cursor returns to the default position in the text item. Valid values are PROPERTY_TRUE and PROPERTY_FALSE.

  • How to place the xml contents into textframe?(cs2_js)

    after flow the xml into indesign document,i able to get the particular xml element and its contents in a variable.
    i want to know how to get certain range of xml element's contents and how to place that in textframe?
    //for get content
    app.activeDocument.xmlElements.item("header1").contents
    if i place the particular element's contents in xml structure extra tags added at edge
    i want to avoid that duplication also
    thanks in advance
    by
    subha

    Hi,
    Use FM WS_FILE_COPY To FIrst Copy the File to some Location
    and Next Use FM TMP_GUI_DELETE_FILE To Delete the File from Old LOcation.
    Regards
    Bala.M

  • How to place the date in photos

    How can you place the date in photos as they are taken?

    Hi,
    You can pass the image url as a href attribute=> file:///Users/me/Documents/my_pic.jpg directly within your xml. It just needs that you pass a local, static and valid url.
    If you want to add image later once the xml is flowed and so target specific nodes and inject images, it's a bit more complex. If the node is not part of the layout, you may try to reach the XMLElement objet and such an attribute, then layout the element.
    var x = some XMLElement
    x.xmlAttributes.add("href","file:///Users/m/Documents/my_pic.jpg" );
    If already placed, then you have to get the associated pageItem, then place your file into it.
    pagItm.place ( File ( "/Users/m/Documents/my_pic.jpg" ) );
    Hope that helps,
    Loic
    http://www.loicaigon.com

  • How to place the regions in required positions

    Hi
    I have a requirement like below to place the regions
    Region_Seq_10 Region_Seq_20
    Region_Seq_30
    Region_Seq_40 Region_Seq_50
    Region_Seq_60
    How Can I design exactly above mentione way of positioning the regions.
    Regards
    Kiran Akkiraju

    Region_Seq_10, 20 and 30 will need to be in "Display Point: Page Template Body (1)" with Region_Seq_10, 30 in Column 1 and Region_Seq_20 in Column 2
    Region_Seq_40, 50 and 60 will need to be in "Display Point: Page Template Body (2)" with Region_Seq_40, 60 in Column 1 and Region_Seq_50 in Column 2

  • How to place the camma in currency

    Hi All,
    I have a currency field.
    For country Kora, they don't  have  decimal places in currency.
    52,000.00 KOR   is one exaple.  Here i have to   place camma in currency as below.
    5,200,000.  
    how to solve the aove problem.
    I don't know where and how many camma will be in my currency field.
    Thanks,
    Kishan

    Hi All,
    as per dilip it is working.  But i want to   move the converted format currency into other field.
    Because i want display it in smartform.
    In program line  ... if i write  write gd_disval CURRENCY 'KOR' .
    it is not working.
    i followed other way as below it is working
    CALL FUNCTION 'CURRENCY_AMOUNT_SAP_TO_DISPLAY'
           EXPORTING
              CURRENCY        =  p_discur
              AMOUNT_INTERNAL =   p_intval 
            IMPORTING
              AMOUNT_DISPLAY  = gd_disval  
            EXCEPTIONS
              INTERNAL_ERROR  = 1
              OTHERS          = 2.
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    It is giving the   exact format.    But i am getting it as below:  5,200,000.000.
    But i want only  5,200,000.   The filed gd_disval    is of type   " WMTO_S-AMOUNT".
    i am unale to split it at  ".". so that i can remove after dot.  but iam getting error .  it is of not type D,C,T..
    Any boady can help me.
    Thanks,,
    Kishan

  • How to place the modified masthead in place of default masthead in framewor

    Hi ,
    i am changing the default masthead .I have downlaoded com.sap.portal.navigation.masthead.par.bak from PCD and have done some changes. I created a new iview based on this new par file com.xy.portal.navigation.masthead.par
    I could see the changes through preview. and i have added this to framework page .
    the new iview always gets added to at the bottom of the page.i have sorted it by sorting controls(using Visible) on the page editor.even then in the page layout it always shows the new masthead at the bottom of the page. How to get the new masthead at the top of the page??
    Can somebody help me.
    Thanks in advance.
    Lakshmi

    Hi Lakshmi,
    The way to move the masthead is to drag & drop it in the page layout.
    Hope that helps,
    Yoav.

  • How to place the amx:panelGroupLayout at the bottom of the screeen

    I want to place the amx:panelGroupLayout at the bottom of the screeen without using the spacer in between of the screen layout.

    Change your code to this and it should work:
    PARAMETERS : p_date LIKE sy-datum ,
                  p_uname LIKE sy-uname.
    DATA: field1(8) TYPE c .
    AT SELECTION-SCREEN .
       IF p_uname IS INITIAL.
         field1 = 'P_UNAME'.
         SET CURSOR FIELD field1 .
         MESSAGE e001.
       ENDIF .
    I think you need to have the MESSAGE statement (or something similar).  If you don't have a message class assigned to your program, instead of
    MESSAGE e001.
    you can use
    MESSAGE 'Please fill in all required fields' TYPE 'E'.
    - April
    Message was edited by:
            April King

  • How to place the components dynamically in page facets.

    I have created a page template
    Logo | Header | User Area |
    | | |
    Menu| Content Area 1 | Content Area 2 |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | Content Area 3 | Content Area 4 |
    | | |
    | | |
    | | |
    Footer
    I am a new bee. i need to create a system that can allow users to configure the componets in the desired place holder place.
    And save their location so that it can load into the same place on login where it was saved earlier.
    Is there any one who can tell me how to do it.
    Tariq mehmood

    Are you talking about end users placing items in specific places or are you talking about developers placing items on your template in specific places?
    For end user runtime customization you might want to look into using MDS.
    See:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/111demos/mds/mds.html
    http://www.oracle.com/technology/products/jdev/11/cuecards111/adf_set_18/ccset18_ALL.html

  • How to place the print and zoom link  on top of the page in discoverer10g

    I created a table format report and I want to place a Print and zoom link on the top of the page also I want to display the sum of a column in the top of the page,
    How to go for it.
    Message was edited by:
    user575682

    Wrong forum.

Maybe you are looking for

  • New to the wonderful world of mac and need help

    I am using a powermac G4 quicksilver with a 933 MHz processor 768 mb of ram and I'm running OSX 10.5.7 the problem I am having is that when I go online to play simple flash games they run incredibly slow. I got this mac from a friends father and don'

  • Backup with Time Machine for 6 iMacs

    I want to to use an external drive to backup with Time Machine my 6 iMac's. I know that Time Capsule is good for this kind of stuff but I would prefer to be able to plug my Storage Device with an Ethernet cable. And Time Capsule is offering 2 or 3 TB

  • Zip does not contain files

    Hi I have a query regarding reading zip files created by the following class: class CreateZip extends Thread {     CreateZip(Vector FileList) {         try {             File zipFile = new File("C:/test.zip");             if (zipFile.exists()) {     

  • Contact page

    If you check out http://www.lacrosse-lounge.com/Contact%20us.html youll notice when ever you send an email it goes straight to a blank page with the  address http://www.lacrosse-lounge.com/MAILER.php but i thought i had set up my php and page to redi

  • Forms in numbers...how/ when

    Hi, we would like to enter data via a form in Numbers, but there isn't that funtion available...should I revert to Excel? LIkewise, printing our rows of data in form style, is this possible? Many thanks. E