ADOBE form - page reset for the second SO

Hi all,
Iam working on sales order form ( ADOBE Form). Nneed to display SO header and item details.But it is not for a single SO and it is for multiple SOs.First i need to display one sales order and its items after completing the all items of the first SO , the second SO details should come in the next page. This is fine, i have done this, but for the second SO the page numbers should start from 1. That means the page no has to be reset for each SO change.Suppose assume that, if the first SO is taking 2 pages for  printing item details and second SO is taking 3 pages for printing item details then the page nos should follows the below sequence:
First SO :  1 of 2
                2 of 2
second SO : 1 of 3
                    2 of 3
                    3 of 3.
but it is printing as 1 of 5, 2 of 5 ..... like this. Because we are using the system field for this.Can we reset the page numbers according to the condition?
Regards ,
Vineel.

Hi,
One addition to the previous answer. You need to set the Output device in the program itself and the nodialog field of the outputparams should be set to 'X'. For example you can go through the below code.
DATA:
  w_formname TYPE fpname,
  w_function TYPE funcname.
DATA : docparams TYPE sfpdocparams.
DATA : formoutput TYPE fpformoutput.
DATA : outputparams TYPE sfpoutputparams.
DATA:
      BEGIN OF fs_orders,
        vbeln TYPE vbak-vbeln,
      END OF fs_orders,
      t_orders LIKE STANDARD TABLE OF fs_orders.
SELECT vbeln
  FROM vbak
  INTO TABLE t_orders
    UP TO 5 ROWS.
CHECK sy-subrc EQ 0.
w_formname = 'YH297_FORM_SALESORDER'.
CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
  EXPORTING
    i_name                     = w_formname
  IMPORTING
    e_funcname                 = w_function
  E_INTERFACE_TYPE           =
outputparams-dest = 'PDF1'.
outputparams-nodialog = 'X'.
LOOP AT t_orders INTO fs_orders.
  CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
      ie_outputparams = outputparams
    EXCEPTIONS
      cancel          = 1
      usage_error     = 2
      system_error    = 3
      internal_error  = 4
      OTHERS          = 5.
  IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CALL FUNCTION w_function
    EXPORTING
    /1bcdwb/docparams        =
      document                 = fs_orders-vbeln
  IMPORTING
    /1BCDWB/FORMOUTPUT       =
    EXCEPTIONS
      usage_error              = 1
      system_error             = 2
      internal_error           = 3
  IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CALL FUNCTION 'FP_JOB_CLOSE'
IMPORTING
   e_result       =
    EXCEPTIONS
      usage_error    = 1
      system_error   = 2
      internal_error = 3
      OTHERS         = 4.
  IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDLOOP.
Regards,
Ram

Similar Messages

  • Form:The user sees on the screen a single page, for the second page (and to fill it in) he will click a button "next page"!

    Hello, sorry for my english!
    I am currently creating a form. This form contains 20 pages. For more comfier to fill it in, I want it to be loaded 1 page to 1 page. The user sees on the screen a single page, for the second page (and to fill it in) he will click a button "next page"!
    Is it possible to do this with adobe acrobat pro?
    In the case of a negative answer, can Indesign do this?
    thank you.

    Technically it's possible to use a script to prevent someone from going to the next page unless they click a button, but I think it's a bad idea and very user un-friendly. You can add a button that will take someone to the next page, but don't try to restrict them from doing so themselves if they so wish.

  • ISR service error :No Adobe Form Is Assigned to the Scenario...

    Hi Gurus,
    I am getting this error when I try to run any of the ISR based scenarios like Code of Conduct service, PCR etc..
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: No Adobe Form Is Assigned to the Scenario
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.raiseExceptions(FcISRProcessEvent.java:1948)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrGetFormUrl(FcISRProcessEvent.java:1042)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.setTemplateSource(FcISRProcessEvent.java:459)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrProcessEvent(FcISRProcessEvent.java:798)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callIsrProcessEvent(FcISRProcessEvent.java:380)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEvent.callIsrProcessEvent(InternalFcISRProcessEvent.java:1234)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEventInterface.callIsrProcessEvent(FcISRProcessEventInterface.java:127)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:409)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface$External.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:577)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.VcISRShowForm.onBeforeOutput(VcISRShowForm.java:215)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.wdp.InternalVcISRShowForm.onBeforeOutput(InternalVcISRShowForm.java:435)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.VcISRShowFormInterface.onBeforeOutput(VcISRShowFormInterface.java:137)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.wdp.InternalVcISRShowFormInterface.onBeforeOutput(InternalVcISRShowFormInterface.java:136)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.wdp.InternalVcISRShowFormInterface$External.onBeforeOutput(InternalVcISRShowFormInterface.java:212)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.callOnBeforeOutput(FPMComponent.java:602)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:568)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:437)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:195)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
    Pls do let me know how to solve this problem.
    I tried the configuration checks in the manuals..
    The Webservice check returned the correct version of the Adobe version running..
    But the program test FP_PDF_test_00 retuen an SOAP error..
    I have maintained detinations in the java visual admin
    with url : http://abapserverhostname:8000
    and user as ADS_AGENT password as in abap system.
    Pls tell me how should I solve my problem.
    helpfull answers will be greatly awarded...
    Regards,
    Ramesh

    Hi Raja,
    the basis have solved the problem and the configuration checks for ADS are succesful now.
    Now i try to create change the code of conduct application iview change the name space to
    sap.com/pcgui~isr(dont mind the spelling i have given the right component)
    application name= IsrForm
    application parmetrs = (given according to older thread messages)
    but nothing is coming up. I get the Ie message saying
    Security settings does not allow page to be displayed correctly and only a "cross" icon is appearing at the top of the page..
    Pls tell me what should i do now..
    Regards,
    ramesh

  • Call for adobe form is going for dump for multiple users

    hi,
    i am calling an adobe form in a program i.e. for multiple users. now my problem is.....
    3 people are using same tcode to generate the adobe form output for different data. but when they click at a time on the button to generate the adobe output, then adobe form is coming for only one user and it is going for dump for other users.
    and this dump is coming because of exception "CX_FP_API_INTERNAL" in funtion module FP_FUNCTION_MODULE_NAME which i am using to get the function module name of the adobe form in my program.
    can u please give me some solution to rectify this issue....

    That's nothing!
    An engineer and I contacted Adobe technical support by phone to ensure the PC I was having custom built was configured to its optimum. They advised XP64 as the best operating environment. After that discussion we had to completely revise procurement, etc to get the bits and compatible XP64 compatible software, putting the build project back a few weeks as well, Imagine how I laughed when I found out on one of these forums that XP64 is the worst choice and totally unsupported by CS4!
    I have written to Shantanu Narayen, Adobe CEO and didn't even get an acknowledgement I raised this last week on the Adobe stand at BVE and was told they'd get someone to contact me asap but guess what, niet...! To be fair there has been one Adobe executive that recognises the problem and the damage poor customer support is causing the company; he has been as helpful as he can. Unfortunately, it seems the overall Adobe culture at the top is "get the money and run". If your problem goes beyond what's already on their web pages, tough luck!
    Regards,
    Graham

  • After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells

    After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells me how to start the installation. Clicking "open with Auto play" gives me irrelevant options, view photos, share, etc. I'm running Windows 8. This program has worked, although buggy, for the past year.

    reinstall by clicking setup on your disk or downloading and installing,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • For the second time (I've been to the Genius Bar once already) my WiFi isn't working on my iPhone 4S. This is really infuriating and costly!!! I see others have the same issues.  Can't Apple do anything about this?  It's obviously a hardware problem!

    For the second time (I've been to the Genius Bar already once with this) my Wifi isn't working.  They gave me a new iphone last time, but the new one has the same issue as the old one, I'm guessing.  I've tried resetting the network but that doesn't work.
    I see others have this issue too.
    If this is a hardware problem why doesn't Apple fix it?  Or do I just have to wait another year for another upgrade?
    Currently it's not costing me anything - yet - because I've got the Apple Warranty but this is totally frustating!!! I bought the original phone (which has been replaced in July 2012.  The new phone (without working Wifi) is a month old.
    Will try Restore via ITunes before (I will invariably) have to return to the Genius Bar for another Iphone 4S unless someone has an ingenius solution here?..?

    sematson wrote:
    If this is a hardware problem why doesn't Apple fix it?  Or do I just have to wait another year for another upgrade?
    For what reason, other than making yourself look foolish, would you ask questions that we users could not possibly answer as we're NOT Apple?
    Basics from the manual are restart, reset, restore from backup, restore as NEW.  Nothing more "ingenius" to suggest than these steps that Apple has outlined in the manual.  If these steps don't work, then go back to the Apple store.

  • List view GroupBy pagination does not work for the second group?

    Hi,
    I have defined view for list with grouping by 2 fields. I noticed the paging works only for the first grouping, for the second field there are always all items on the page. How could I configure it to provide paging also for the second level of grouping?
    If it is possible to have paging for only one group level, I would like to change it for the second 2 (as there are only like 15 groups for the first level but there could be hundreds for the second one).
    Thanks!
    eXavier

    Here is the query:
    <View Name="{3BEA03A1-FBFF-4364-AA0F-AD4E48093479}" MobileView="TRUE" Type="HTML" DisplayName="aaaa" Url="/Lists/X/aaa.aspx" Level="1" BaseViewID="5" ContentTypeID="0x" ImageUrl="/_layouts/15/images/generic.png?rev=23">
     <Query>
      <GroupBy Collapse="TRUE" GroupLimit="30">
       <FieldRef Name="SC_UserName" />
       <FieldRef Name="SC_Year" Ascending="FALSE" />
      </GroupBy>
      <OrderBy>
       <FieldRef Name="SC_Date" Ascending="FALSE" />
       <FieldRef Name="SC_Date" Ascending="FALSE" />
      </OrderBy>
     </Query>
     <ViewFields>
      <FieldRef Name="ID" />
      <FieldRef Name="SC_DateX" />
      <FieldRef Name="LinkTitle" />
      <FieldRef Name="SC_Date" />
      <FieldRef Name="SC_UserName" />
      <FieldRef Name="SC_DateY" />
      <FieldRef Name="SC_Status" />
     </ViewFields>
     <RowLimit Paged="TRUE">30</RowLimit>
     <Aggregations Value="Off" />
    </View>
    eXavier

  • Need to show popup when the Submit button is clicked for the second time ..

    Hi guys,
    I have a requirement where i need to show a popup or alert when the submit button is clicked twice . When it is clicked for the first time one method is been called and its process starts. When the user clicks the submit button for the second time they should be shown a popup stating "Submit button already been clicked, please clicked OK to continue".
    Can anyone help with this please , its really urgent requirement ?
    Thanks in advance

    Hi,
    I dont have any sample code to give you now. For quick reference, I can advice some psuedo steps to achieve your requirement. I dont have access to JDEV to test this. If any syntax errors then pls correct yourself.
    1. Extend Controller since it is standard page ( Refer Anil Passi site for steps to extend seeded ontroller)
    2. Write below logic in your Process Request method
    super.processRequest(oaPageContext, oaWebBean);
    pageContext.putSessionValue("status", "notInitiated");
    3. Include below logic in your PFR method
    if(pageContext.getSessionValue("status")!=null){
    if("notInitiated".equals(pageContext.getSessionValue("status")))
    super.processFormRequest(oapagecontext, oawebbean);
    pageContext.putSessionValue("status", "initiated");
    else
    String message = "Display error message as required";
    throw new OAException(message, OAException.ERROR);
    You may need to import required packages ( Related to OAException).
    Remeber, to sumbit the request, user need to refresh the page again so that "status" variable will be refreshed.
    Hope it helps.
    Thanks
    venkat

  • TS3694 my phone has switched off for the second time this week, however when connecting to itunes the restore process wont complete. the error is 2006 however i have tried a number of USB cords, and none seem to be working.

    my phone has switched off for the second time this week, however when connecting to itunes the restore process wont complete. the error is 2006 however i have tried a number of USB cords, and none seem to be working.
    I am in the noerthern [parts of australia and accessing an apple store is not possiable for another month. this is my only soucrce or telecommunication. please help

    This is what it says about error 2006
    Error 2000-2009 (2001, 2002, 2005, 2006, 2009, and so on)
    If you experience this issue on a Mac, disconnect third-party devices, hubs, spare cables, displays, reset the SMC, and then try to restore. If you are using a Windows computer, remove all USB devices and spare cables other than your keyboard, mouse, and the device, restart the computer, and try to restore. If that does not resolve the issue, try the USB issue-resolution steps and articles listed for Error 1604 above. If the issue persists, it may be related to conflicting security software. If the errors persist on another computer and known-good USB cable, the device may need service.

  • HT201412 I have restored my iphone 5 for the second time now, and it keeps crushing after 1hour of having completely restored it through iTunes. What am I supposed to do?

    I have restored my iphone 5 for the second time today, and it keeps crushing after 1hour of having completely restored it through iTunes. What am I supposed to do? I deleted some apps I had recently installed, even changed the background refresh. What else?

    Well... it said iPhone Recovery Mode, and I pressed 'Restore iPhone' after which it asked me if I am sure that I want to restore the phone to factory settings, I pressed 'yes'. After 20-30min it eventually came to the 'Hello' page where I had to sign in with my Apple ID, and then saw the icons of each of my apps. which one by one turned from grey to their full colour as they downloaded one by one. After 1-2 hours of having completed all the app downloads, I found the phone shut and could not turn it on with the normal way. And this happened after 2 restore sessions. Is there something I need to do, or I need to request a replacement. I have had the phone for 11months, and crushing problems begun on the 13 of Nov, which was a few days after I updated to iOS7. But today is already 48hours since I have not been able to use my iPhone properly.

  • I have purchased OS X mountain Lion and want to redownload but the apple store asking to repurchase and its not coming in my purchases but i still have the receipt from apple. Do i need to buy it again for the second installation. Kindly help

    I have purchased the OS X mountain lion and want to re install after resetting my system but app store not showing it in my purchases. Do i need to re buy it and pay for it again for the second installation. ?

    Welcome to the Apple Support Communities
    Open App Store > Featured > Account > Show hidden purchases and unhide Mountain Lion. You can install Mountain Lion on all your computers for free

  • Bdc Screen data not passing to XK01 transaction screen for the second PO

    Hi Friends,
                    I have an requirement to extend an existing vendor to multiple company code and for multiple purchase organisation.I have created one report that will list the company code and the purchase organisation to be extended for the vendor. I am calling the standard program as below.
              LOOP AT li_porg.
              If user has ALSO selected p. organizations to extend...
                IF NOT li_company[] IS INITIAL.
                  LOOP AT li_company.
                    SUBMIT zricef666 WITH ld_par = ld_param
                                     WITH ls_vend = ls_vendor_ampl
                                     WITH ld_bukrs = li_company-bukrs
                                     WITH ld_ekorg = li_porg-ekorg
                             AND RETURN.
                  ENDLOOP.
              ENDLOOP.
    Within the program zricef666 , i am calling the below program to extend vendor.
    SUBMIT RFBIKR00 WITH ds_name = FICH
                   WITH xlog = ld_mark
                    AND RETURN.
    Now the problem i am facing is that the first vendor got extended sucessfully for the first PO.But for the second PO , the screen fields are blank and it stuckes in that screen. But in the session i am able to clearly see the data are there but these data are not passing to the screen of XK01.
        Need help to solve this problem from you all.Thanks in advance.
    With Regards,
    Ajit Prasad.

    Hello Ajit, try with the following code and reward if useful. the following code uses the transaction XK01.
    REPORT zbdcxk01 .
    DATA: BEGIN OF itab OCCURS 0,
            lifnr LIKE rf02k-lifnr,
            bukrs LIKE rf02k-bukrs,
            ktokk LIKE rf02k-ktokk,
            name1 LIKE lfa1-name1,
            sortl LIKE lfa1-sortl,
            land1 LIKE lfa1-land1,
            brsch LIKE lfa1-brsch,
            akont LIKE lfb1-akont,
            zterm LIKE lfb1-zterm,
            reprf LIKE lfb1-reprf,
            zwels LIKE lfb1-zwels,
          END OF itab.
    DATA: rc TYPE i,
          flag TYPE i VALUE 1,
          it_files TYPE filetable,
          bdc_data TYPE STANDARD TABLE OF bdcdata WITH HEADER LINE.
    DATA:   messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.
    PARAMETERS: p_file(1024) TYPE c OBLIGATORY.
    PARAMETERS:dismode DEFAULT 'A',
               updmode DEFAULT 'S'.
    SELECTION-SCREEN : END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
      CHANGING
         file_table              = it_files
         rc                      = rc.
    *Read the Filename into P_FILE
      READ TABLE it_files INDEX 1 INTO p_file.
    START-OF-SELECTION.
      PERFORM getdata.
      PERFORM create_session.
      LOOP AT itab.
        PERFORM fill_bdc_table.
      ENDLOOP.
      PERFORM close_session.
    END-OF-SELECTION.
      PERFORM submit.
    *&      Form  getdata
    *       text
    FORM getdata.
      DATA: file TYPE string.
      file = p_file.
      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                filename                = file
                has_field_separator     = 'X'
           TABLES
                data_tab                = itab
           EXCEPTIONS
                file_open_error         = 1
                file_read_error         = 2
                no_batch                = 3
                gui_refuse_filetransfer = 4
                invalid_type            = 5
                no_authority            = 6
                unknown_error           = 7
                bad_data_format         = 8
                header_not_allowed      = 9
                separator_not_allowed   = 10
                header_too_long         = 11
                unknown_dp_error        = 12
                access_denied           = 13
                dp_out_of_memory        = 14
                disk_full               = 15
                dp_timeout              = 16
                OTHERS                  = 17.
    *IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    ENDFORM.                    " getdata
    *&      Form  CREATE_SESSION
    *       text
    FORM create_session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
       EXPORTING
         client                    = sy-mandt
    *   DEST                      = FILLER8
         group                     = 'MYGROUP'
    *   HOLDDATE                  = FILLER8
         keep                      = 'X'
         user                      = sy-uname
    *   RECORD                    = FILLER1
    * IMPORTING
    *   QID                       =
       EXCEPTIONS
         client_invalid            = 1
         destination_invalid       = 2
         group_invalid             = 3
         group_is_locked           = 4
         holddate_invalid          = 5
         internal_error            = 6
         queue_error               = 7
         running                   = 8
         system_lock_error         = 9
         user_invalid              = 10
         OTHERS                    = 11
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " CREATE_SESSION
    *&      Form  CLOSE_SESSION
    FORM close_session.
      CALL FUNCTION 'BDC_CLOSE_GROUP'
           EXCEPTIONS
                not_open    = 1
                queue_error = 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.
    ENDFORM.                    " CLOSE_SESSION
    *&      Form  FILL_BDC_TABLE
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM fill_bdc_table.
      REFRESH bdc_data.
      PERFORM operation.
      CALL FUNCTION 'BDC_INSERT'
       EXPORTING
         tcode                  = 'XK01'
    *   POST_LOCAL             = NOVBLOCAL
    *   PRINTING               = NOPRINT
        TABLES
          dynprotab              = bdc_data
    * EXCEPTIONS
    *   INTERNAL_ERROR         = 1
    *   NOT_OPEN               = 2
    *   QUEUE_ERROR            = 3
    *   TCODE_INVALID          = 4
    *   PRINTING_INVALID       = 5
    *   POSTING_INVALID        = 6
    *   OTHERS                 = 7
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM bdc_transaction USING 'XK01'.
    ENDFORM.                    " FILL_BDC_TABLE
    *&      Form  BDC_DYNPRO
    *       texT
    *  -->  p1        text
    *  <--  p2        text
    FORM bdc_dynpro USING program dynpro.
      CLEAR bdc_data.
      bdc_data-program = program.
      bdc_data-dynpro = dynpro.
      bdc_data-dynbegin = 'X'.
      APPEND bdc_data.
    ENDFORM.                    " BDC_DYNPRO
    *&      Form  BDC_FIELD
    *       text
    FORM bdc_field USING fnam fval.
      CLEAR bdc_data.
      bdc_data-fnam = fnam.
      bdc_data-fval = fval.
      APPEND bdc_data.
    ENDFORM.                    " BDC_FIELD
    *&      Form  BDC_TRANSACTION
    FORM bdc_transaction USING tcode.
      CALL TRANSACTION tcode USING bdc_data
                             MODE   dismode
                             UPDATE updmode
                             MESSAGES INTO messtab.
    ENDFORM.                    " BDC_TRANSACTION
    *&      Form  SUBMIT
    *       text
    FORM submit.
      SUBMIT rsbdcsub EXPORTING LIST TO MEMORY AND RETURN
    *                  user sy-uname
                        WITH mappe = 'MYGROUP'
                        WITH von   = sy-datum
                        WITH bis   = sy-datum
                        WITH z_verarb = 'X'.
    ENDFORM.                    " SUBMIT
    *&      Form  OPERATION
    *       text
    FORM operation.
      PERFORM bdc_dynpro      USING 'SAPMF02K' '0100'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'RF02K-KTOKK'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM bdc_field       USING 'RF02K-LIFNR'
                                    itab-lifnr.
      PERFORM bdc_field       USING 'RF02K-BUKRS'
                                    itab-bukrs.
      PERFORM bdc_field       USING 'RF02K-KTOKK'
                                    itab-ktokk.
      PERFORM bdc_dynpro      USING 'SAPMF02K' '0110'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'LFA1-SORTL'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM bdc_field       USING 'LFA1-NAME1'
                                    itab-name1.
      PERFORM bdc_field       USING 'LFA1-SORTL'
                                    itab-sortl.
      PERFORM bdc_field       USING 'LFA1-LAND1'
                                    itab-land1.
      PERFORM bdc_dynpro      USING 'SAPMF02K' '0120'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'LFA1-BRSCH'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM bdc_field       USING 'LFA1-BRSCH'
                                    itab-brsch.
      PERFORM bdc_dynpro      USING 'SAPMF02K' '0130'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'LFBK-BANKS(01)'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=ENTR'.
      PERFORM bdc_dynpro      USING 'SAPMF02K' '0210'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'LFB1-AKONT'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM bdc_field       USING 'LFB1-AKONT'
                                    itab-akont.
      PERFORM bdc_dynpro      USING 'SAPMF02K' '0215'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'LFB1-REPRF'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=UPDA'.
      PERFORM bdc_field       USING 'LFB1-ZTERM'
                                    itab-zterm.
      PERFORM bdc_field       USING 'LFB1-REPRF'
                                    itab-reprf.
      PERFORM bdc_field       USING 'LFB1-ZWELS'
                                    itab-zwels.
      PERFORM bdc_transaction USING 'XK01'.
    ENDFORM.                    " OPERATION

  • No Adobe Form Is Assigned to the Scenario

    Hi Experts,
    i am getting following error in the PCR application in MSS
    "No Adobe Form Is Assigned to the Scenario"  
    we are on ECC 6.0 EP 7.0 MSS BP 1.0
    we have configured ADS. and the service is running properly in development and quality server.
    I have checked the SPRO nodes Define scenarios and all.
    there i have assigned my z form name correctly to the scenario.
    i did check the blog in the portal development which points to the same error but it is unanswered.
    my ADS is running fine as i am able to my other adobe form developments correctly.
    please guide on the error i am just clue less on this.
    Regards,
    Umesh Chaudhari

    Hi Umesh,
    Please follow the steps mentioned in the notes below.
    959462    ISR/Adobe/Web Dynpro Java: Configuration problems
    836174    ISR/Adobe/Web Dynpro Java: Support for troubleshoot
    Hope the above steps should help.
    Best Regards,
    Deepak...

  • No Adobe Form Is Assigned to the Scenario:  - PCR

    Hi,
    In my project, configured 5 Custom PCRs as copy of standard PCR and enhace it. When Full authorization USer ids, am able to execute the all PCR-Adobe form and complete the process.
    When i logo to portal with Z role authorization (with respect to Client), am bale to execute only 3 PCR and remaining 2 PCS display the following error message.
    Critical Error
    A critical error has occured. Processing of the service was terminated. Unsaved data has been lost.
    Contact your system administrator.
    No Adobe Form Is Assigned to the Scenario   
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: No Adobe Form Is Assigned to the Scenario
         at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:112)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.raiseExceptions(FcISRProcessEvent.java:1981)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrGetFormUrl(FcISRProcessEvent.java:1043)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.setTemplateSource(FcISRProcessEvent.java:460)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrProcessEvent(FcISRProcessEvent.java:799)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callIsrProcessEvent(FcISRProcessEvent.java:381)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEvent.callIsrProcessEvent(InternalFcISRProcessEvent.java:1234)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEventInterface.callIsrProcessEvent(FcISRProcessEventInterface.java:127)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:409)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface$External.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:577)
         at com.sap.pcui_gp.isr.isrprocessevent.showform.VcISRShowForm.onBeforeOutput(VcISRShowForm.java:216 
    Provide your inputs pls

    Hey Hi,
    IF you are familiar with authorizations in PFCG trabsaction you are finaliar with S_DEVELOP if not ask the authorization team on your project.
    Basically this authorization object handles the read/write etc authorization related to devlopment objects. If you implement Adobe forms you will probably develop your own forms or at least copy the SAP forms to customer namespace.
    For Adobe you will therefore have 2 custom development objects (1 for the form and 1 for the interface that is automatically generated). The end-user shoulf have at least READ access to these objects. If not the portal will trow an error on this.
    To determine the tech names of the objects find the form and related interface in transaction SFP. These should be inserted in the object S_DEVELOP in the role for the end users.
    You may want to consider to put the value Z* in the object which will give authorization for all the custom developed objects.
    If you can't find the object reply again and i will send a screenshot.
    Finally, make use of the splended transaction ST01!! It will make your life a lot more easy in portal! It traces all the authorizations needed and missing for any user you specify. After activating the trace and running a portal scenario the log will tell you want went OK and what not on an authorization object level.

  • HI. I HAVE ALREADY MEMEBRSHIP for one app in creative cloud. I want to upgrade it to be complete membership . first I could not cancel my old one . second i pay for the second one, third i could not download the indesign cc ( which i need right now becaus

    HI. I HAVE ALREADY MEMEBRSHIP for one app in creative cloud. I want to upgrade it to be complete membership . first I could not cancel my old one . second i pay for the second one, third i could not download the indesign cc ( which i need right now because they ask for serial number) . I have already cs6 products. is that technical problem in adobe or what ?

    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    Ask for serial number http://forums.adobe.com/thread/1234635 has a FAQ link

Maybe you are looking for