How to view po number in sap into t -code f.13

how to view po number in sap into t -code f.13

Hi,
You will able to see under Purchasing Doc Field when you execute F.13 (Actually this program will match the parameters with PO no only with GR/IR doc to get clear.
Regd,
Khan.

Similar Messages

  • How to view Index fragmentation in sap ecc6 ?

    how to view Index fragmentation in sap ecc6 ?

    Hi Haimiao,
    You can use brtools to get required information. For relevant steps use the link below
    https://help.sap.com/saphelp_nw04/helpdata/en/08/5742154ae611d1894f0000e829fbbd/content.htm
    Regards,
    Deepak Kori

  • How to increase TD width in SAP using HTML code in mail body

    Dear guru.
    how to increase TD width in SAP using HTML code in mail body
    Sample Code :
    CONCATENATE '<tr height= "3%"> <td style="background-color:#CCC8AA;" style="font = 12.0" colspan = 3 >' WA_EIS_TOT-DESC '</td>'
           INTO WA_OBJTXT-LINE separated by space.
      APPEND WA_OBJTXT TO T_OBJTXT.
      CLEAR: WA_OBJTXT.
    Regards,
    Dharmin Shah

    Hi Dharmin,
    Did you try something like
    CONCATENATE '<tr height= "3%"> <td  height="23" width="84" style="background-color:#CCC8AA;" style="font = 12.0" colspan = 3 >' WA_EIS_TOT-DESC '</td>'
    Regards,
    Soundarya.

  • How can I add keywords for SEO into the code?

    How can I add keywords (for SEO) into the code of a Muse designed site?

    You might also be interested in the upcoming MuseJam on Thursday Muse Jam: Search Engine Optimization | Facebook
    Muse Jam: Search Engine Optimization
    Online May 22, 2013
    Join Principal Product Manager Dani Beaumont of the Adobe Muse team as she explores ways within the Muse application to build search engine optimized sites by way of metadata, keywords, H1 definitions, and sitemap generation. After the presentation we'll open the floor to any questions you might with the application.

  • How to restrict the number of Records into the Table?

    Is there any way that I can restrict the number of records can be entered into the table?
    For example I have created a table TAB1 with size category 0( zero).
    User dont want to enter more than 100 values, How to restrict the number entries? Whether Basis can do it?
    Regards,
    Prathap

    Hi Prathap,
    You can write a code in table maintenance events to restrict the number of Records added into the Table to constant.
    Solution:
    Se11 -> enter table name (TAB1) -> F6 -> Utlities -> Table maint. generator -> Envirnment -> modification -> events -> write here the form routine name.
    Double click on routine name. You will get into include section of the code. Write here code like:
    IF current_rec_num > 100.
       messgae error 'Entry restriceted to 100'
    ENDIF.
    Somewhat this way you can achieve your target.
    Regards,
    Sachin

  • How to get BP number having SAP User ID .?

    HI all,
    How to get BP number of a user having his SAP User ID .?
    Help reg this.

    hi check this...
    In SUS Link between registered User ID and Business Partner (Vendor) Number
    Assign User to Business Partner
    regards,
    venkat .

  • How to view DB schema in SAP B1 company

    Hi,
    Would you please tell me how to view Company database schema.
    When I use Database browser It gives Exception as
    "B1DBBrowser ERROR: The Type initializer for 'B1wizard.Globals'" threw an Exception.
    Thank you
    Buddhika

    Hi ArshDeep,
    I want to update PaymentReference field in a Document object.
    I was able to get the required Document to update but it returns Error code.I can see the existing PaymentReference value, but can not be set. But it is Property with read-write.
    Currently I'm doing is,
    Create Document object.
    Initiate it with oInvoice object type
    if(oDocument.getByKey(docID))
         oDucument.PaymentReference = MyCustomID;
         int iErr = oDucument.Update();
    oDocument properties matches with the required document implying the correct document is in the oDocument object.
    But this returns errors.
    Would please give me a Solution.
    Buddhika.

  • How to view which users have logged into Hyperion Planning

    Hi all,
    I'm trying to determine the best way to view users that have logged into Hyperion Planning (who and when). Is there an option in Shared Services or can this be viewed through Planning by the administrator? Any insight would be greatly appreciated.
    Thanks!

    Planning has never been the best at providing that information, you can look at the statistics page in planning which is pretty poor in my opinion.
    The other option is audting but once again it doesn't really audit users logging in and out.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to read Filter selection variable values into ABAP code

    HI IP Gurus,
    Requierement: In my filter characterstics, i have assigned variables, which use will enter when running th e planning sequence.
    so  variable values entered by user , i would like to get those values into ABAP code and pass them to some function module.
    SO please give me step by step detail how to achive this.
    MY understanding use the below method . but not sure how to proceed.Please let me know abap code to get values.
    GET_TAB_PARAM_DATA_SEL and GET_PARAM_DATA_SEL.
    Please help me.
    Thanks in advance.Will Assign points
    Sania

    Hi Srinivas,
    So In RSPLF1 , in paramters tab, Do i have create structure(str1) and then create component Data selection (Dtsel1) under str1(what setting i have to do here, where should i enter variable value and do i need to give info object name and how do it in code.i tried to following example, not able to get any values in tab_sel .
    It will be great, if you could explain in detail.
    other thing i found out is in Initialization method i can read i_t_data_charsel table values , where it contains filter slected values.but could not pass  these values to execute method
    Is there is any way that i can pass values from init method to execute method.
    A tabular structured parameter with name "MY_TABSTRUC" is defined for the function type. "MY_TABSTRUC" consists of the two parameter components "MY_ELEM" and "MY_DATASEL". You access the parameter values as follows:
    DATA: TAB_PARAM_STRUC TYPE RSPLFA_T_PARAM_STRUC,
           REF_PARAM_STRUC    TYPE REF TO IF_RSPLFA_PARAM_STRUC,
          REF_PARAM_ELEM     TYPE REF TO IF_RSPLFA_PARAM_ELEM,
          REF_PARAM_DATASEL  TYPE REF TO IF_RSPLFA_PARAM_DATESEL,
           L_VAL(20)          TYPE C,
           TAB_SEL            TYPE RSPLF_T_CHARSEL.
    get table of parameter MY_TABSTRUC:
      TAB_PARAM_STRUC = I_R_PARAM_SET->GET_TAB_PARAM_STRUC( 'MY_TABSTRUC' ).
    process all lines:
      LOOP AT TAB_PARAM_STRUC into REF_PARAM_STRUC.
      get component MY_ELEM:
        REF_PARAM_ELEM = REF_PARAM_STRUC->GET_COMP_ELEM( 'MY_ELEM' ).
      get internal value of MY_ELEM:
        REF_PARAM_ELEM->GET_VALUE( IMPORTING E_VALUE = L_VAL ).
      get component MY_DATASEL:
        REF_PARAM_DATASEL = REF_PARAM_STRUC->GET_COMP_DATA_SEL( 'MY_DATASEL' ).
      get data selection table of MY_DATASEL:
        TAB_SEL = REF_PARAM_DATASEL->GET_T_SEL( ).
      ENDLOOP.
    Thanks in Advance..please help me

  • How to skip digital signature for sap qa11 t-code in bdc

    Dear all,
            I am doing usage decision for sap QA11 t-code through BDC...when I am doing bdc recording, it asks for digital signature(user password) through a
    pop up..how to skip that digital signature in BDC or any other solution..
    Please provide your valuable suggestions..
    Thanks..
    Warm Regards,
    Nellai Muthu..

    Dear all,
            I am doing usage decision for sap QA11 t-code through BDC...when I am doing bdc recording, it asks for digital signature(user password) through a
    pop up..how to skip that digital signature in BDC or any other solution..
    Please provide your valuable suggestions..
    Thanks..
    Warm Regards,
    Nellai Muthu..

  • How we find object list  for SAP MM T codes.

    Dear Experts,
    How can i find object list  for SAP MM T codes.
    Actualy that is required for SAP User autorization review.
    Regards
    Kumar

    Get t.codes list from table TSTCT using SE16,Enter t.code as MM* or M*. Execute it.
    You will get a list of MM t.codes.
    Also you can refer SU22 for authorization objects from above t.codes list.

  • How to view the design part of th source code

    hi
    i have a source code in NetBeans IDE.i have to view the design part of that source code.because i shared that design part through local address which is designed in another system .Ater sharing i got tha coding part of that design part.But i need designing part of that coding part.i searched that, but i couldnt get it.
    please helpme

    Sorry for this not being helpful, but if there ever was a stronger argument for not using NetBeans generated code, for learning to code Swing from the ground up, I'd like to see it.
    To the OP, this is not so much a Swing question as a NetBeans question. I recommend that you find a NetBeans forum or mail list, rephrase your question for clarity, and repost it there. Good luck.

  • How to set external number for SAP shipment ?

    How to manually assign external number in alphanumeric like AB07089999 for SAP shipment (via VT01N) ?
    Edited by: MicMic on Sep 19, 2011 6:13 AM

    Hi,
    As i know there is no possibility if alphanumeric number range in sap.You check with any exit before updating the no in database.check this and post .
    Regards,
    Madhu.

  • RE: How to Create Personal number in SAP HR

    Hi Guys,
    I am new to SAP HR and i want to Create Personnel number in HR, can any one guide me the procedure.
    I went to PA30 and entered some 8 digit number and typed in infotype 0105 and subtype 0001 and clicked on create button, but it returns a error saying personnel number is not yet assigned.
    can any one tell me how to create a personnel number and assign it to the user.
    Thanks,
    SSSS

    Hi..
    Priyanka..
    As I have checked that Number range for generating a new Employee ID is already created in my system. Gone to TCODE PA04 and check that the number range is already created as below:
    Number         From Num      To Num           Current Num              Ex
    01               00000001          00069999                                        Tick as right
    02               00070000          00079999       70295
    03               00080000          09000000                                        Tick as right
    04               99990001          99999999                                        Tick as right
    05               09000001          99990001                                        Tick as right
    But when i am trying to give the personnel no. for maintaining master data in pa30 for actions for new hiring its giving error saying "could not find interval for number range 07". Here i am getting confused that what no. range i have to take?  or which no. range i have to choose?  or create new no. range? Please help me out..
    regards,
    Surendra

  • How to insert various number of values into a table

    Hi
    Im devoloping application using swing components..How can i insert values from JTextField to table if the form contains number of textfield(more than 30) and JRadioButtons(Radio Buttons are in button group).
    thanks in advance.

    Hi
    i designed a form with 58 Textfields. i want to get data from those fields and i have to store those into a database table. how can i do that .is there any simple way to do that?. do you have any example code? pls give me...

Maybe you are looking for

  • Creating pop up window for data display in ALV

    Friends, I need to display my data in alv popup window from there I have to select a row and display the data in new popup window. For this purpose I had written this fuction. It's working fine But I don't know how to select row from this and display

  • Unable to see rows in tableview

    I tried to add rows to my table dynamically using ObservableList but it is not visible in table.I tried to print the data in ObservableList which is printing as expected. I even tried to initialize but not visible. I used Scene Builder (1.1) and NetB

  • The battery of my two months old iPad is not charging anymore. Somebody knows what is going on?

    The battery of my two months old iPad2 is not charging anymore. Somebody knows what is going on?

  • How to set focus on component guaranteed?

    Hi All, I want to run my swing based application on win NT OS with JDK1.5. Now i need to set focus on my JFrame window (this is my requirement) but smetime it focussed and sometime it fails. So i need some guaranteed solution or approach so that it f

  • Disabling an table in a screen

    hi, i am working in webdynpros where i have a scenario like this. i have only one view and in that view i have taken three transparent contaienrs and each transparetn container has a table and other transparetn contaienr has some input fiields and te