Help for Submit in conjucture with paaremeterised Transaction

Hio All.
Please help me with the following scenario!
1.We have a parameterised Transaction (ZPPP03)of sm31 to open a view ZPPP.
  so when i run the Transaction i see all the entries pertaining to different sales organisation.
2. Now we need to filter data absed on sales organisation. So that is user enters ITA only those need to be displayed via the Paremeterised Transdaction(ZPPP03)
3. I have made a report(ZREPORT) that calls my Transaction ZPPP03.
4. I have mde another report wherein im calling ZREPORT using sumit stamanet and passing the paarmeter that is sales organisation.
PARAMETERS:P_ORG TYPE ZPPP003-VKORG.
report = 'ZREPORT'.
clear seltab.
seltab-selname = 'D0100_FIELD_TAB-LOWER_LIMIT'.
seltab-kind    =  'P'.
seltab-sign    = 'I'.
seltab-option  = 'EQ'.
seltab-low     = P_ORG.
append seltab.
SUBMIT (report) WITH SELECTION-TABLE seltab.
But when i run this this does not seem to be using the valu i asked?
What should i do?
Please let me know lucidly!

Hi,
Make use of FM 'VIEW_MAINTENANCE_CALL' to see if it suffices your requirment.
See my sample code.
PARAMETERS: y_p_lgnm TYPE lgnum.
DATA : y_v_string   TYPE string.
CONSTANTS: y_k_u        TYPE char1   VALUE 'U',
           y_k_x        TYPE char1   VALUE 'X',
           y_k_lgnum    TYPE char7   VALUE 'LGNUM',
           y_k_lgtyp    TYPE char5   VALUE 'LGTYP',
           y_k_eq       TYPE char2   VALUE 'EQ',
           y_k_viewname TYPE tabname VALUE 'YLOMANAGTROL'.
*                   INTERNAL TABLE DECLARATION.
DATA: y_i_seltab TYPE STANDARD TABLE OF vimsellist.
*                   WORKAREA DECLARATION.
DATA: y_wa_seltab TYPE vimsellist.
START-OF-SELECTION.
*authority check for warehouse number
  AUTHORITY-CHECK OBJECT 'L_LGNUM'
              ID y_k_lgnum FIELD y_p_lgnm
              ID y_k_lgtyp FIELD '*'.
  IF sy-subrc NE 0.
* user not authorised
    CONCATENATE y_p_lgnm text-003 INTO y_v_string SEPARATED BY space.
    MESSAGE s015(ylo1) WITH text-001
                            sy-uname
                            text-002
                            y_v_string.
  ELSE.
*Clear Internal Table
    CLEAR y_i_seltab.
    CLEAR y_wa_seltab.
*passing the selection parameters to the function module
*view_maintenance_call.
    y_wa_seltab-viewfield = y_k_lgnum.
    y_wa_seltab-value     = y_p_lgnm.
    y_wa_seltab-operator  = y_k_eq.
    APPEND y_wa_seltab TO y_i_seltab.
    CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
      EXPORTING
        action               = y_k_u
        view_name            = y_k_viewname
        show_selection_popup = y_k_x
      TABLES
        dba_sellist          = y_i_seltab.
  ENDIF.
Regards,
Ankur Parab

Similar Messages

  • Help for downloading/installing PSE13 with window 8.1?

    I get this message after intall attempts ..."Installer has detected that a machine restart may be pending. Its recommended that you quit the installer, restart your machine and try installing again,"  Lightroom, however, installed fine.

    Thank you for responding.  I got some advice from a Microsoft forum....it worked.  Thanks again.
          From: Pat Willener <[email protected]>
    To: kathryn kramar <[email protected]>
    Sent: Saturday, January 3, 2015 10:56 PM
    Subject:  help for downloading/installing PSE13 with window 8.1?
    help for downloading/installing PSE13 with window 8.1?
    created by Pat Willener in Downloading, Installing, Setting Up - View the full discussion
    pwillener wrote: What is your operating system?
    Sorry, you specified Windows 8.1 in the subject line. If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7063274#7063274 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7063274#7063274 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following" 
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • F4 help for PO number field with SELECT OPTIONS

    Hi all,
    I have a field (PO no) using SELECT OPTIONS on my selection screen.I need F4 help for this field.How shud i declare it?
    I have declared it as follows:
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    select-options sel_po for ZPO_LOI-zobject_id obligatory .
    SELECTION-SCREEN END OF BLOCK b1.
    ZPO_LOI is a table view with a z data element ZOBJECT_ID to which i have attached a search help which displays the required values for the PO field in the selection screen.But now the problem is i cant see the F4 icon for the field on the sel screen.
    Please help.

    Hi I have a sapmle code for this.
    *&                AT SELECTION SCREEN ON VALUE REQUEST
    *-- F4 help for IDOC numbers
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_docnum-low.
      PERFORM value_request_status USING 'S_DOCNUM-LOW'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_docnum-high.
      PERFORM value_request_status USING 'S_DOCNUM-HIGH'.
    *&      Form  value_request_status
          text
         -->fp_field  dynpro field that gets the return value
    FORM value_request_status  USING fp_field TYPE dynfnam.
      STATICS tl_values TYPE STANDARD TABLE OF tp_value.
      IF tl_values IS INITIAL.
         SELECT docnum FROM edidc UP TO 500 ROWS INTO TABLE tl_values
              WHERE credat   IN  s_credat
              AND   cretim   IN  s_cretim.
         IF sy-subrc eq 0.
            CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
             EXPORTING
              retfield        = 'DOCNUM'
              dynpprog        = syst-repid
              dynpnr          = syst-dynnr
              dynprofield     = fp_field
              value_org       = 'S'
             TABLES
              value_tab       = tl_values
             EXCEPTIONS
              parameter_error = 1
              no_values_found = 2
             OTHERS          = 3.
             IF sy-subrc IS NOT INITIAL.
               MESSAGE i999(zz) WITH 'No values found'(004).
             ENDIF.
          ENDIF.
        ENDIF.
    ENDFORM.                    " value_request_status
    Regards,
    Amit.

  • IW31- How to add Search help for User specific fields in IW31 transaction.

    Hi Experts,
    I have to add Search help for standard fields USR00 to USR10 fields in IW31 transaction.
    Is there any user exit for this requirement.
    Please reply, it will be very helpful for me.
    Regards,
    B. V. Rao

    Bala,
    See the following user-exits:
    IWO10015: F4 Help for user fields on operation
    IWO10016: Customer enhancement to check operation user fields
    PeteA
    [www.pjas.com]

  • F4 help for PO date field in VA01 transaction during upgrade

    Hi All,
    We are working on upgrade project 4.6c to ECC 6.
    We came across one scenario.
    F4 help for PO date field is not coming in newer version in VA01 transaction but i checked in older version it is coming F4 help for PO date(calender).
    May i know the reason regarding this.
    Any clues
    Regards
    Jai
    Edited by: Jayanth16 on Nov 12, 2009 6:14 PM
    Edited by: Jayanth16 on Nov 12, 2009 6:22 PM

    Hi,
    User did some changes in include LSDSDF05 due to that F4 help is not coming.
    So i correct that one.
    Regards
    Jai

  • F4 help for the batch field in VL02N transaction

    We have upgraded our system from 4.6 to ecc 6.0 .In 4.6 the f4 help for the batch had " Batch selection via plant/Material/Storage location/Batch " which is not there in ECC 6.0.
    Please tell us the procedure to add in the existing  search help H_MCHA in ECC 6.0
    Thanks
    Aruna

    Hi Aruna.
      Create ur own search help using se11 tcode for required fields.
      Thanks & Regards,
    Kiran.
    Plz give rewards if and only if it is helpfull.

  • Need help for connecting Ms Acces with java Swing in Mac OS

    Hi all,
    i need to connect to Ms Access in MAc os through my java swing program.
    Is it possible for accessing Ms access through dsn in Mac OS.
    If Possible which driver shall i use for Establishing Connection with MS Access in Mac OS.
    Suggestion is needed urgently.
    Can anybody help me out regarding this..
    Thanks in advance.
    Regards,
    sreand

    if I don't find a better solution I'll try your 2nd option but what do you mean by "combo" update?
    My understanding is to simply insert the OS 10.5 installation CD, reinstall the OS and the just keep updating it via the OS SSoftware update panel and stop untill I see the scary Java 8 update. Is that what you meant?
    While you can do it that way, the combo update picks up operating system updates through a collection of releases. When dealing with operating system upgrades, I've found using the combo updates to be more reliable than Software Update, as sometimes Software Update doesn't apply updates correctly, and weird things can happen. Doesn't happen often though, thankfully.
    So the OS X 10.5.5 Combo update contains all updates between 10.5.0 and 10.5. The 10.5.8 combo update contains the updates from 10.5 thru 10.8. Here are the updates:
    10.5 combo update: http://support.apple.com/kb/DL692
    10.8 combo update: http://support.apple.com/kb/DL866
    If you go down the combo path, repair permissions before and after doing each update. Then do Software Update for any other non-OS X updates, and don't apply the Java Update 8.

  • BP searh help for Bank control Key (with restricted values)

    Hi all Wise men
      Please suggest me a way to add search help to screen field (GT_BUT0BK-BKONT) table field( BUT0BK-BKONT ) with values 01,02,03,04,05 in Txn BP.
    Sorry Iam new to BDT events and BUPT Txn.
    Also Please suggest to which BDT event can I attach a search help through FM 'F4IF_TABLE_VALUE_REQUEST' .
    Thanks a lot
    Arjun

    u can refer to this standard program :BCALV_EDIT_08
    also u wont get the list of values automatically..
    declare a class :
    CLASS LCL_EVENT_HANDLER DEFINITION.
      PUBLIC SECTION.
        METHODS :
        handle_on_f4 for event onf4 of cl_gui_alv_grid
        importing e_fieldname es_row_no er_event_data,
    ENDCLASS.               "LCL_EVENT_HANDLER
    implementation of class
    here u pass ur internal table what u want to display as pop up for f4 help.
    *&       Class (Implementation)  LCL_EVENT_HANDLER
           Text
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
    *Method to handle F4 click.
      Method handle_on_f4.
    Function to create a popup and passing the values of internal table in it.
          CALL FUNCTION 'POPUP_WITH_TABLE'
            EXPORTING
              ENDPOS_COL   = 60
              ENDPOS_ROW   = 60
              STARTPOS_COL = 5
              STARTPOS_ROW = 5
              TITLETEXT    = 'pop up'
            IMPORTING
              CHOICE       = wa_grid-zfield
            TABLES
              VALUETAB     = ITAB
            EXCEPTIONS
              BREAK_OFF    = 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.
            RETURN.
          ENDIF.
      endmethod.                    "handle_on_f4
    ENDCLASS.               "LCL_EVENT_HANDLER
    hope this gives u some idea.

  • Help for a total newb with e65

    Hi All,
    Please help, I got the E65 and good posts about getting the wlan working.
    But I got the navigator app with it, and I really dont get all this GPS stuff , with it working off satellite, but charging my mobile with data chrages, software that works with recievers and phones, some symbian.
    Somebody explain it all in lamens terms please.
    Cheers

    Hi kiltedscot
    Can I use this analogy, if you buy a TomTom car navigation unit the package includes the hardware (processor + GPS receiver) and navigation software for a fixed but known cost (there is no charge for receiving data from GPS satellite system owned by the US Government)
    You have purchased the processor (E65), you need to purchase a Bluetooth GPS receiver to get positional data, the Symbian navigation software is provided free and if you download maps via your PC there is no need to incur GPRS data charges. If however you want a full talking navigation option, you do need to purchase a licence which in UK is just over £40 for 3 years.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • I need Help for Connect To DB2 with JDBC

    I'd like to know why I Have this problem.
    The DB2 v 5.10 is in a IBM OS/390
    I know the IP, PORt, DBNAME and I'd like to connect to DB2 with my windows XP using JDCB from IBM.
    I use JDBC Universal for DB2 type 4.
    Class.forName("com.ibm.db2.jcc.DB2Driver");
    Url = "jdbc:db2://IP:PORT/BDNAME";
    DriverManager.getConnection.... (url, user, pass)..
    If I execute this, I have next problem
    SQL state = null
    Error code = -4499
    There is no available conversion for the source code page, 1208, to the target code page, "". DB2ConnectionCorrelator: null
    Why is this?
    Finally, the web application will running in a AIX IBM with machine, It could be that this machine (aix) can connect with the IBM OS/390 with JDBC for iBM?
    Thankss!!!

    Check how you configured the IP on the laptop and computers, assigned by router with DHCP feature enabled? Or configure manually? If it's assigned by wireless router, then make sure you assign big enough IP range in DHCP setting. Take a look on using ping to troubleshoot network and wireless router configuration articles to help you more..

  • Cannot change the email address where Apple sends "help for resetting info dealing with security questions".  Won't allow change.

    I have forgotten the answer to one of two My Apple ID security questions.  Apple has supplied the solution to that problem online in Edit Your Apple ID.   I would be happy to follow those instructions, except......the only email address the Edit Your Apple ID page will allow me is one that has not been functional for over a year.  There are no options for changing that recovery email address since I only have two security questions, not three, as Apple specifies. Neither can I find an option for switching to the two-stage verification process---although I would rather not do this.  I recently edited my email addresses in My Apple ID on my Sony Vaio laptop in an effort to alleviate the problem, but it didn’t help. I use the Apple ID on an iPad (4th gen Wi-Fi + Cellular MM) and two iPhone 5 (IOS 8).  Does anyone have suggestions? Feel that I've read through all the fine print and cannot locate an answer.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (113199)

  • Looking for help for sharing pdf files with ipad from mac.  Pages only recognizes text.  What app should I use for file sharing pdf documents?

    Looking for advice on how to share pdf files with iPad from Mac.   Pages seems to only recognize text.   What app is recommended for pdf documents?

    Welcome to Apple Support Communities!
    If I understand your question, you want to read pdfs on your iPad, not create or edit.
    Drag pdf files to the iPad icon in Finder while connected to your computer via the USB cable.
    They will show up in the iBooks application
    (If you don't already have iBooks, it's a free download from the App Store.)
    Once installed, there are two buttons at the top left of the Bookshelf.
    One is Books, the other is Collections.
    Tap Collections, and you'll see Books and PDFs.
    Tap PDFs and you're there.

  • Need help for storing time along with the date

    Hi,
    I have one procedure as follows, In last_update_column of the table job_data having date and time.But after execution of this procedure only date is inserting into the job_master.
    If I queires the table job_master with to_char(Last_Update_Date, 'DD-MM-YYYY HH24:MI:SS') , then it is showing time as 12:00:00.
    I tried to insert date with to_char,to_date format but it is not working.
    Please provide me the solution.
    Thanks in advance.
    create or replace
    PROCEDURE         SP_LOAD_JOB
    IS
    CURSOR CUR_DATA  IS
            SELECT   PARENT_ITEM,
         `               CHILD_ITEM_ID,
                   LAST_UPDATE_DATE
      FROM job_data,
    BEGIN
      For Cursor_job In CUR_DATA
                 Loop
                 Exit When CUR_DATA%Notfound;           
        Insert Into job_master(parent_Code,
                                       child_code,
                                       last_update_date)
    values(
                             Cursor_job.PARENT_ITEM,
                             Cursor_job.CHILD_ITEM_ID, ,
                             Cursor_job.Assembly_Item_Id,
                              Cursor_Bom.LAST_UPDATE_DATE)
    commit;
    end loop;
    END;

    Hi,
    I don't believe you
    First to input time to job_master from job_data table first you have to store time in job_data.
    execute 
    select LAST_UPDATE_DATE from job_data
    and show result.
    Second remark : your procedure will not compile success Because
        Insert Into job_master(parent_Code,
                                       child_code,
                                       last_update_date)  ---3columns
       values(
                             Cursor_job.PARENT_ITEM,
                             Cursor_job.CHILD_ITEM_ID, ,
                             Cursor_job.Assembly_Item_Id,
                              Cursor_Bom.LAST_UPDATE_DATE) ----4columns
    Third remark : why to insert into table from other you wrote procedure???! you need only type insert stmt like this
        Insert Into job_master(parent_Code,
                                       child_code,
                                       last_update_date)
        select .... from  job_data
    Ramin Hashimzade

  • Help for ADF data binding with MySQL BLOB type.

    Hi,
    I have a blob column called photo for table person in my MySQL database, with ADF, I want to bind this column with a JUImage control, but when I drag the column attribute from the data control palete as a JUImage, an error dialog appears, it says:
    Control cannot be bound to that Attribute.
    This control should be bound to an Attribute whose Java type is one of the following
    oracle.ord.im.OrdImageDomain
    oracle.jbo.domain.BlobDomain
    oracle.jbo.domain.Raw
    What should I do ?
    Thanks.

    Hi,
    Are you using BC4J as the persistence layer? If you use your own persistence (e.g. a bean) then you need to make sure the datatype of the atribute is defined as one of the three mentioned in your question.
    Frank

  • Help for writing a Map with out JDeveloper

    Hi all,
    Where can I find help documents or sample files so that I can write a custom mapping between an Oracle Object and Java Object. Yeh, this might be a simple task when we use JDeveloper , but just for writing this small piece of code I am not in a position to download JDeveloper of size 230MB and learn how to use it...
    Plese give suggestions...
    Thanks in advance...
    Sateesh
    null

    Take a look at the JPublisher user's guide. You can also download JDeveloper in 20MB chunks if you can't download all 230MB at once.
    Blaise

Maybe you are looking for

  • Search Remote Files... or ...How Do I Delete All of My LCK Files?

    hey everyone. i need to delete a bunch of .LCK files from my server so Dreamweaver will stop telling me someone else has stuff checked-out and that i need to enable blah blah blah. i can't just check everything in because A. that would take forever a

  • After renaming the field name in content server,I am get the Exception

    Hai All After renaming the field name in Content Server I got one Error Like *<ERROR> <oracle.ucm.idocs> <UCM-CS-000001> <General Exception>* intradoc.data.dataexception !csRequiredFieldMissing2 dRevLabel in UCM. Thanks, Hari Edited by: Hari on Jun 1

  • Using Photoshop CC and LR5 (offer for £8.78)

    I am thinking of taking up this offer. I have PS Elements 11 and LR5 already but think that PS CC will be better for me with more options. Sorry it is in the LR5 forum but couldn't find any suitable so here goes: Should I completely uninstall LR5 and

  • ACS version vs Win 2003

    What version of ACS can be installed on a Win 2003 machine?

  • ITunes 9.0.2 Column Browser Problem

    Since upgrading to iTunes 9.0.2, I'm having a problem in Column Browser mode. I have the Column Browser pane on top, showing Genre, Artists & Albums. As soon as I move the cursor into one of the fields, the list immediately jumps to the beginning of