Calling program with custom screen in VA01

Hi gurus,
I have the client's urgent need to call some custom screens in VA01.
So I've created a custom button in screen 4900, added a function code to it (ZB_P), called transaction VFBS to create the navigation in both T185F and T185 (added the form and program for the custom code).
In the custom code I call a custom screed created and designed there.
After pressing the button I get a short dump:
Category               ABAP Programming Error
Runtime Errors         DYNPRO_NOT_FOUND
ABAP Program           SAPLV00F
Application Component  CA-GTF-BS-SQ
Date and Time          18.09.2014 16:10:52
He is thinking that the "1001' screen developed in the custom program is in SAPLV00F, but it definitely isn't there.
Is there something I'm doing wrong?
Thank you in advance,
Marius.

Hi Juan,
Here I have written the form and program name.
And here is the 185F definition.

Similar Messages

  • How to take backup of an entire module pool program with code,screen,etc.

    Hi experts,
    I have some important data in the ides server for which i want to take backup of them.
    I have some question regarding the same.
    1.How to take backup/download of an entire module pool program with code,screen,etc.
    2.How can we take backup/download for a DB table with its structure?
    3.How can we take backup of a search help?
    Please give some suggestions abt the same.
    Regards,
    Ashesh.

    Hi,
    May be just for viewing, try downloading from SE80 transaction from the others option.
    Here just try issuing the print, it will generate the spool.
    Now using the spool, download to your desktop as required. It will have all the information regarding the attributes, fields, elements everything.
    The only issue is, may be you need to take all the screens separately.
    Regards,
    Santhosh.

  • Submit program with selection screen parameters - getting blank values

    Hi, I'm submitting a program with selection screen parameters. when I pass '000' (I_TPLSCN  )value for Planning Scenario and when this goes to selection screen then I don't see value for Planning scenario as '000'(I_TPLSCN  ) but the value is blank in selection screen. I'm using the below code for this.
    SUBMIT RMCPAMRP WITH MATNR_GL EQ I_MATNR   SIGN 'I'
                      WITH WERKS_GL EQ I_WERKS   SIGN 'I'
                      WITH PLSCN    EQ I_TPLSCN  SIGN 'I'
        via selection-screen        AND RETURN.
    Could anyone please help me how to display value '000' rather than blanks.
    thanks in advance.

    If I_MATNR, I_TPLSCN and I_WERKS are variable then try with
    SUBMIT rmcpamrp
      WITH matnr_gl = i_matnr
      WITH plscn    = i_tplscn
      WITH werks_gl = i_werks
      via selection-screen       
       AND RETURN .
    If I_MATNR, I_TPLSCN and I_WERKS are of type range then try  with
    SUBMIT rmcpamrp
      WITH matnr_gl IN i_matnr
      WITH plscn    IN i_tplscn
      WITH werks_gl IN i_werks
    via selection-screen       
       AND RETURN
    Edited by: Pawan Kesari on Dec 24, 2009 3:33 PM

  • How to create tcode for modulepool program with selection screen?

    hi,
       How to create tcode for modulepool program with selection screen?
    thanks,
    sagar

    Hi,
    We need to goto SE80.
    In our program we right click on object name and goto create
    -> transaction. Enter the module pool program and screen number and save and activate.
    Or by SE93 also we can create a transaction code for our program.
    Hope ths helps.
    plz reward if useful.
    thanks,
    dhanashri..
    Edited by: Dhanashri Pawar on Jul 22, 2008 8:29 AM

  • Connecting smartform calling program with iw32 standart screen

    Hello All,
    i have created a smartform and a program which calls this smartform.
    I want to use this program in iw32 standart screen.
    i have one input for this print, which is aufnr as p_aufnr.
    how can i get aufnr from standart program into my program?
    how can i make this connection?
    Thanks in advance.

    Hi,
    You can use the following code to get the AUFNR value.
    DATA : wrk_aufnr  TYPE  aufnr.
    GET PARAMETER ID 'ANR' FIELD wrk_aufnr.
    Thanks & Regards,
    Harish

  • Transfer control back to calling program from infotype screen

    i've developed a module pool program that uses 'call transaction pa30'BDC  to an custom infotype screen... after the 'save' button is pressed the control goes to the infotypes initial screen.
    but i want the control to come back to the calling module pool program.. how do i do that??

    Hi Joseph,
    have you considered using function module HR_INFOTYPE_OPERATION with parameter DIALOG_MODE = '2' instead of CALL TRANSACTION?
    Regards,
    Christian.

  • BAPI_GOODSMVT_CREATE with Custom Screens MPP

    Hi All,
    I am trying to create goods issue with respective goods reservation for production.Instead of using the standard code i am going for custom one.In standard after reservation it will copy all the line items by default so we are planning to got for custom.
    I created a custom mpp program and attached the bapi header and item structures to it.Here the selection for the initial screen is Production order number.
    In the same screen i am planning to create a table control in the it contains material,reservation no,movement type,quantity,uom.Here i am facing an issue.In this first column of each row i want to enter the material then it should pick data from resb which contain all these fields line item wise.I did but there is duplication's and data is not populating after press enter.
    Then after this i will move the header data and this table control data to bapi and need to collection the return messages from there.Please share some ideas on this.
    Regards,
    Madhu.

    Hi Madhu,
    I explain with one example. Please follow the steps.
    I have emp number as first column in my Tab control and remaining field values will come once give emp no and press ENTER.
    <li>Declare like this TOP include.
    types:
         BEGIN OF ty_p0001,
            pernr TYPE pa0001-pernr,
            endda TYPE pa0001-endda,
            begda TYPE pa0001-begda,
            bukrs TYPE pa0001-bukrs,
            werks TYPE pa0001-werks,
            persg TYPE pa0001-persg,
            persk TYPE pa0001-persk,
            vdsk1 TYPE pa0001-vdsk1,
          END OF ty_p0001.
    data:
          wa_p0001 type ty_p0001,
          it_p0001 type standard table of ty_p0001,
    <li>Code in the Flow logic for screen.
    *PROCESS BEFORE OUTPUT
    PROCESS BEFORE OUTPUT.
      MODULE get_data.
      LOOP AT   it_p0001
           INTO wa_p0001
           WITH CONTROL tabc
           CURSOR tabc-current_line.
        MODULE tabc_get_lines.
      ENDLOOP.
    *PROCESS AFTER INPUT.
    PROCESS AFTER INPUT.
      LOOP AT it_p0001.
        CHAIN.
          FIELD wa_p0001-pernr.
          FIELD wa_p0001-endda.
          FIELD wa_p0001-begda.
          FIELD wa_p0001-bukrs.
          FIELD wa_p0001-werks.
          FIELD wa_p0001-persg.
          FIELD wa_p0001-persk.
          FIELD wa_p0001-vdsk1.
          MODULE tabc_modify ON CHAIN-REQUEST.
        ENDCHAIN.
      ENDLOOP.
      MODULE tabc_user_command.
    <li> We have to have the below MODULE tabc_modify inside LOOP to capture Table control changes .
    MODULE tabc_modify INPUT.
      MODIFY it_p0001
        FROM wa_p0001
        INDEX tabc-current_line.
      IF wa_p0001-pernr IS NOT INITIAL.
        wr_new_pernr-low   =  wa_p0001-pernr.
        wr_new_pernr-sign  =  'I'.
        wr_new_pernr-option =  'EQ'.
        APPEND wr_new_pernr TO tr_new_pernr.
        CLEAR wr_new_pernr.
      ENDIF.
    ENDMODULE.                    "TABC_MODIFY INPUT
    <li> Get the entered employee no into tr_pernr. You can see in the above code.
    DATA: tr_new_pernr TYPE RANGE OF pa0001-pernr,
          wr_new_pernr LIKE LINE OF tr_new_pernr.
    DATA: tr_old_pernr TYPE RANGE OF pa0001-pernr,
          wr_old_pernr LIKE LINE OF tr_old_pernr.
    <li> Once you get the entered employee number, Need to write code to get the remaining field values in the table control. Need to write in the PBO of the screen flow logic.
    MODULE get_data OUTPUT.
      IF tr_old_pernr IS INITIAL AND
         tr_new_pernr IS NOT INITIAL.
        tr_old_pernr = tr_new_pernr.
        SELECT *
          FROM pa0001
          INTO CORRESPONDING FIELDS OF TABLE it_p0001
          WHERE pernr IN tr_old_pernr.
      ENDIF.
      IF tr_old_pernr IS NOT INITIAL AND
         tr_new_pernr IS NOT INITIAL AND
         tr_old_pernr NE tr_new_pernr.
        tr_old_pernr = tr_new_pernr.
        SELECT *
          FROM pa0001
          INTO CORRESPONDING FIELDS OF TABLE it_p0001
          WHERE pernr IN tr_old_pernr.
      ENDIF.
      "clrear new values
      CLEAR: tr_new_pernr.
    ENDMODULE.                    "get_data
    I hope that it gives some clue to you. Let me know if you need further help.
    Regards,
    Venkat.O
    http://an-sap-consultant.blogspot.com/

  • Calling AdvancedDataGridSortItemRenderer with custom header

    HI,
    I have searched for a few hours now no luck...
    I have an advanced datagrid, with a lot of columns showing
    small check mark icon for boolean value.
    To make the columns smaller, I made a simple headerRenderer
    that rotates the labels 90 degrees, so they run vertical.
    but I lose the sort arrow these columns.. Looking the docs
    http://livedocs.adobe.com/flex/3/langref/mx/controls/advancedDataGridClasses/AdvancedDataG ridHeaderRenderer.html
    under
    sortItemRenderer
    Note that the sort item renderer controls the display of the
    sort icon and sort sequence number. A custom header renderer must
    include code to display the sort item renderer, regardless of
    whether it is the default or custom sort item renderer.
    How do I call that from my code

    Hi Juan,
    Here I have written the form and program name.
    And here is the 185F definition.

  • Calling report with parameter screen from form using frmrwinteg

    Hi,
         I am calling a report with a parameter screen from a form and am using the frmrwinteg bean. This works fine on our test application server but, when moved onto our production application server, the database logon screen is presented after pressing the submit button on the parameter screen. The cause of the problem seems to be the html generated to simulate the parameter screen. The html on the test application server contains a BASE tag in the HEAD section with an href starting "http:/servername.companyname.com". However, the same tag in the html generated on the production application server is missing the ".companyname.com", causing the cookie produced by the frmrwinteg bean to not be found. Does anyone know how the BASE href tag is generated and what I need to change to get the correct BASE href value? I am using Forms/Reports 10g R2 and Application Server 10.1.2.
    Cheers.....

    Appendix "A" of this document describes how cookie_domain works:
    http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.pdf

  • How can I calbrate your program with my screen colors when printing

    I need to calbrate adobe acrobat 9 pro to print the colors that show on my screen, How can I do that?

    This is a huge subject, and there are whole books on the subject. So this is just a very oversimplified idea.
    The idea of calibration is to match everything against what I will call "master colours". Once your monitor is calibrated, software knows how to convert master colours into your monitor colours, and similarly colours for printing can be converted from master colours to printer colours.
    But this doesn't make all colours the same. Printers can't print the same colours as you see on a monitor; all of the really bright colours are lost. It may be that if you've calibrated your monitor, that things are already as close as they are going to get.
    If the monitor is calibrated, and Windows or Mac OS knows about that, then Acrobat will already be using that information. So the screen should look accurate. Non-PostScript printers will generally try their best to match these colours too without your needing to do anything. That's why I asked if you have a PostScript printer.

  • Running Programs with Screen Closed

    I cant figure out how to run programs with my screen closed. For instance, I'm signed on AIM and I close the screen and when I open it back up, I'm no longer signed on AIM. It's very frustrating. Any type of assistance would be greatly appreciated. Also, is there any phone number available that will connect me directly with customer service?

    Unfortunately, unlike PC counterparts, your laptop has 1 function with the laptop on, and screen closed - Sleep.
    Sleep can be reversed with closing the lid as described above, having an EXTERNAL mouse and or keyboard and activating the computer that way.
    It is really designed to run closed when use with a large display - that is what that feature is.
    Unfortunately you either have to keep your lid open, or accept the fact that you won't be on AIM when you close the lid.
    Now please don't get offended with the last part I have to say about AIM:
    I used to hate the fact that when I closed the lid, I was kicked off AIM. I now love it. The reality is that none of us are really all THAT important that signing out of AIM is the end of the world. There's email, and there's the telephone if someone has something emergent, urgent, important, or barely important to tell someone.
    I feel like AIM has dumbed down communication as we know it, creating a world of "acquaintances" and "buddies" instead of "friends".
    Like I said, please take no offense, i just think we all deserve time away from AIM...
    Sorry there aren't any other solutions for you.

  • Anyone know how to contact anyone in Verizon headquarters?  Since I'm not getting anywhere with Customer Service

    I'd like to express how unsatisfied we have been with Verizon on an issue that has been ongoing now since March 14, 2014.  It involves an upgrade on one of our lines.  After all these months, phone call with customer service, Tech support, and visits to a Verizon stores, I would hope that there are ample notation on our acct but since I've had to explain the situation on a bi-weekly time frame, I would assume that no one has documented any contacts.
    We've been with Verizon for few yrs now and I have always been very satisfied with Verizon who, up until now , always provided excellent customer service in their knowledge, concern, and customer satisfaction.  But I have to say, every positive outlook I've had with your company has been wiped clean with the worst service we have received in the last few months.
    We upgraded my daughter's phone on 03-14-14 with a Samsung Galaxy Mini from an Iphone 4s.  Within 24 hrs, the phone failed.  After 2 visits to a Verizon store the next day which took 6 hrs, we still had to return the next day to speak to a manager.  The 2 stores advised us to make a CLAIM on the defective phone thru our insurance plan with Verizon.  A CLAIM on a 24 hr old phone!!  A 3rd visit with a manager finally convinced him to replace the phone with another new phone at the store.  Within 2 weeks - issues began to occur with the replacement phone.  Several visits more, several calls more with Customer Service, several calls more with tech support which adds up to soooo many of our time taken up to simple have temporary "fixes" is outrageous.  If I billed Verizon for my time, perhaps the situation would have been resolved more quickly.  Each visit lasts approx 2 hrs, each phone call approx 1-1 1/2 hrs.  We are talking at least 2x a month for the course of 5 1/2 months.  Plus the time it takes to get the phone back to where she needs it - contacts, apps, internet. 
    Not once were we offered a new phone or replace the phone.  Not until today.  Replace the phone with the same phone that my daughter has grown to hate.  So basically a 3rd phone - same phone.  She is not interested in this phone any longer.  She dealt with this phone model for far too long.
    Today we were offered to replace the phone with same phone, or pay for a refurbished Iphone 4.  So basically she would be going back to her original Iphone 4s before the upgraded WITH a cost.  So her upgrade was wasted, we'd paid over $200 for a defective phone, and would need to pay for an even older model Iphone 4 and have to pay for it.  Why wasn't she offered a different phone within those 30 days after the upgrade and 6 visits? 
    Every rep at the stores, every rep in tech support would provide a different reason for the issue.  Finally, tech support advised not to download apps.  WHAT GOOD IS A SMARTPHONE IF YOU CAN'T HAVE APPS???  We are talking about a 20 yrs college student who attends school in another state.  Do you know the trouble she has to go thru to visit a store? To find 2 hrs between being a full time student with 2 jobs to sit on the phone with a tech support or go to a Verizon store?  Once-ok  Twice-maybe  BUT for 5 months?
    She's not eligible for an upgrade.  She will be stuck with a phone that she had grown to hate.  And I with customer service which I've grown to hate. 
    Finally, The Edge.  Trying to find a way to make my daughter happy, I spoke with 4 representative today about the Edge.  Each rep gave me 4 different information.  1st rep advised Edge phone could not be used on another line so I could not use a line eligible for the Edge and give that phone to my daughter since she isn't eligible for the Edge.   2nd rep advised that although new phone thru edge must be used by same number that it was eligible for, we could use the current phone o that line for my daughter.  My son currently has an Iphone 5 and is eligible for the Edge early upgrade.  He would not have to return his Iphone 5 so my daughter could use it.  However, all the lines would have to go to the More Everything Plan and share the Data between all our phone lines.  3rd rep advised the cost would almost double from our current $358 to go to the More Everything Plan so suggested to have 2 accounts vs just 1.  4th rep advised not every line needs to go the More Everything Plan, we could not keep the current phone, and my daughter could get a replacement phone but same phone or made exception to offer the Edge early upgrade to my daughter but only after we go thru the replacement program because the phone we send to Verizon has to be in good working order/no defects. 
    After 5 1/2 months, it is now Verizon that is indicating that we have a defective phone and can't accept it thru the Edge program or we would get billed approx $299 for a defective phone.  After 5 1/2 months of me calling in about a defective phone that not one rep replaced because they "fixed" the problem ( by the way, a temporary fix is not fixing, if it was fixed I would have made those calls today or writing this email), I am now being told her phone is defective.  She advised to get a replacement phone first, return the old phone, activate the new phone, then call in to get the Edge early upgrade.  So my daughter would have to do all this, plus add contacts back, apps and whatever else she needs to use her phone just to turn around a couple weeks later and do it all over again with the new phone thru the Edge program.  Once again, we are the ones having to be inconvenienced and go thru all these steps.  Did I mention she is going to be studying abroad in Italy beginning Nov?  So the idea of having to wait 2-3 weeks for a new phone and having only a week or 2 to test the phone to make sure it's working properly before she's out of the country doesn't sound appealing to me.  Verizon has made us have a defective phone for 5 months advising it's in good working order after each and every "fix" but Verizon will not accept that phone if returned in the same condition as a phone in good working condition.  Do you see the irony in that? 
    I have reached my limit and after 5 yrs of my brother in law trying to convince us to switch to AT&T where he works in their Corporate Office, I can honestly say I will not be sad to leave Verizon.  Especially when one of your reps simply provided me with the contract end dates to provide to AT&T because they offered to buy out our contract.  No effort in customer retention what so ever.  That was a phone call on Thursday. 
    And yes, one of your tech reps tried to convince me of all the hassle it would be to switch and time AT&T would take to buy out our contracts but honestly it was the pot calling the kettle.  I am not in the position to discuss hassle and time after 5 months of getting that with Verizon.  Did I mention it's my brother in law so we would be getting special treatment and no out of pocket expenses to switch.  It was my loyalty and satisfaction with Verizon that has kept me from switching all these years.  Something Verizon clearly does not appreciate. 
    So can you guess where I am with confidence that your customer service department is knowledgable about the plans/offers?  Where I am that I can trust what I'm being told?
    I know this email is confusing and really hard to understand...perhaps now you will know how i've been feeling--lost and confused with all the mis-information, with a hit and miss phone, and out of time with all the 1 1/2 hr to 2 hrs EACH wasted on this issue. 
    On top of all this, I can't even find out how to file a complaint with anyone higher up than Customer Service. 

    Jneklason wrote:
    ~snip~
    I know this email is confusing and really hard to understand...perhaps now you will know how i've been feeling--lost and confused with all the mis-information, with a hit and miss phone, and out of time with all the 1 1/2 hr to 2 hrs EACH wasted on this issue.
    On top of all this, I can't even find out how to file a complaint with anyone higher up than Customer Service.
    I hate to tell you this, but you didn't write an email. You wrote a discussion post on the Verizon Wireless Community forum which is a public peer to peer forum. Unfortunately since you didn't mark your post as a question, the VZW reps that roam this community won't ever see your post. Before you re-post it, don't. Duplicate posts get removed from the community.
    I see there were several missteps both by the reps and yourself in your post. First you should have insisted on returning the phone within the 14 day return policy period. Second which Samsung Galaxy mini model did you purchase? The S3 mini or the S4 mini? Did you do any research prior to deciding on this device. The reps at that time deflected the easiest course of action, by trying to get you to replace the phone under insurance instead of returning the phone. The Early Edge payment option requires the current phone on the line using the early Edge must be returned to Verizon Wireless. Did you once considered going to a third party site like Swappa to purchase a gently used device for your daughter?

  • Call a subscreen (dialog screen) passing a table.

    I need to call a subscreen and pass that subscreen a table.  What I have is a user exit with a button.  When you click this button it calls a FM, passing a table.  I then call a screen (a pop-up) but I need the screen to use the table as though I have declared it in the screen's top include.
    This will essentially pass the table, by reference from the user exit to the screen and back.
    How can I accomplish this?
    Regards,
    Davis

    Hi,
    try call program with submit instead a call transaction
    SUBMIT report1 USING SELECTION-SCREEN '1100'  "Your Subscreen
                    WITH selcrit2 BETWEEN 'H' AND 'K'  "the calling reports Parameter
                   WITH selcrit2 IN range_tab
                   AND RETURN.

  • BBP_CUF_BADI adding customer screen

    this, i hope is a very quick answer.
    the documentation says that i should add my template to the existing internet service for my new screen to be displayed.
    firstly, do i have to modify the SAP service and template within, to include the call to my custom screen
    secondly, do i have to publish my service as usual
    thanks
    glen

    Hi
    <u><b>
    1) No. Not applicable.
    Since SAP has already provided BBPCUF Service, which will take care of the subscreen you created in the SAP provided sub-screen area.
    2) Yes need to publish the Service once. Execute W3_PUBLISH_SERVICES Report for this service, once everthing is ready.</b></u>
    Hope this will help.
    Let me know incase you face any problems.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • How to call screen of custom program as popup screen in standard transaction

    Hi friends,
    I have created a custom button in standard vl02n transaction in application toolbar. now when i click on this button it should display my custom screen as a pop up from my custom Ztest program. how to achive this requirement. the functionality of my custom screen is it should it has input fields, so we enter some data and on click on submit button in custom screen it should save the data in ztable and close.
    Regards,
    Siva

    Hi Jim,
    Thank you i missed this point.
    So now i am planning to add custom fields to likp table and map this fields to  my custom module pool screen so on making changes the standard likp header detail should be modified. so when user clicks on save of vl02n it would update the record. How to achieve this?
    and as per my above post. I have created a Zprogram with Screen 9000, now i want to call this screen, on click of button from vlo2n as pop up how to achieve this?

Maybe you are looking for

  • Time Machine Fails When Trying to Backup Certain Files

    Time Machine is having problems with some files I have copied from a Windows computer. I am a web developer and I moved my client files from a Windows PC to my iMac. Most of the files backup properly but some don't. When Time Machine tries to backup

  • Report for internal order - year/period comparison

    I want to create a report for internal orders with year/period (from/to) comparison. For the present year/period i'm using CCA variables  1YRPERF (Fiscal Year/Period From) and 1YRPERT (Fiscal Year/Period To), created from field FISCPER, table RWCOOM.

  • Query on Transaction Management in MP model

    For a transaction in MP model, if one node where the transaction is happening goes down/crashes for some reason, will the transacation continue onto the alternate node ? or it needs to be initiated again ? If it continues on second node, how this is

  • Corporate Corporate Exchange server sync contact issue

    Corporate Corporate Exchange server sync procedure works as it should except : When I go to Contact Groups menu all of my contacts from the exchange server are now at the top, in the 'Not Assigned' area. For normal contact use this does not seem to b

  • CATS Workflow

    Hi all Im configuring CATS for my client. I setup data entry profile as below as shown in the attachment. I have also created  Org structure for the approval process. In SWe2, I have configured the event to trigger the workflow.. Finally when I enter