Skip Initial Screen is not permitted for transaction SWF_OBJ_EXEC_CL

Hi Experts,
When clicking on the trip to edit the item from UWL, I am getting the error Skip Initial Screen is not permitted for transaction SWF_OBJ_EXEC_CL. Basically it is trying to open the tcode in Web GUI. I have the authorization for this tcode too.
Pleas suggest where could be the issue.
Thanks,
Murthy

can you chekc this note 1055324
If you want the sysetm to open something other than the default
method of the attached object in the UWL then you can use SWFVISU in
the backend.
By default (With no entries in SWFVISU) when you click on the attached
object from the UWL it will open WEBGUI and sue transaction
SWF_OBJ_EXEC_CL to execute the default method of the business object.
If you maintain a entry in SWFVISU it will check this first and
open whatever you have referenced in SWFVISU and not open WEBGUI and
execute SWF_OBJ_EXEC_CL.
In SWFVISU maintain an entry under the section "Object Visualisation"
enter the object method and link it to a visualisation type e.g.
BSP, WEBDynpro, iView, etc.

Similar Messages

  • Idoc-51:Accounting transaction not permitted for posting in FI/CO

    Hi,
    Message type FIDCC2
    Basic type FIDCCP02
    Process code FID2
    When i try to post for F-02, through WE19, above idoc, it is showing the 51 error: Accounting transaction not permitted for posting in FI/CO
    I'm using the following fields:
    E1FIKPF : FI Document Header (BKPF)
    BUKRS : Name of global company code
    GJAHR : Fiscal Year
    BLART : Document Type
    BLDAT : Document Date in Document
    BUDAT : Posting Date in the Document
    MONAT : Fiscal Period
    TCODE : Transaction Code
    WAERS : Currency Key
    HWAER : Local Currency
    E1FISEG : FI Document Item (BSEG) -1
    BUZEI : Number of Line Item Within Accounting Document
    BSCHL : Posting Key - 40
    DMBTR : Amount in Local Currency
    KOSTL : Cost Center
    HKONT : General Ledger Account
    WERKS : Site
    E1FISEG : FI Document Item (BSEG) -2
    BUZEI : Number of Line Item Within Accounting Document
    BSCHL : Posting Key - 50
    DMBTR : Amount in Local Currency
    HKONT : General Ledger Account
    WERKS : Site
    Pls guide in fixing this.
    rgds,
    balu

    Hi 
    What is the solution , please let us know ? since we have faced the same error.
    Regards
    Bhavana

  • Accounting transaction not permitted for posting in FI/CO

    Hi,
    For inbound idoc triggering,
    Message type FIDCC2
    Basic type FIDCCP02
    Process code FID2
    When i try to post for F-02(or FB01), through WE19, above idoc, it is showing the 51 error: Accounting transaction not permitted for posting in FI/CO
    I'm using the following fields:
    E1FIKPF : FI Document Header (BKPF)
    BUKRS : Name of global company code
    GJAHR : Fiscal Year
    BLART : Document Type - SA
    BLDAT : Document Date in Document
    BUDAT : Posting Date in the Document
    MONAT : Fiscal Period - 05
    TCODE : Transaction Code - FB01
    WAERS : Currency Key
    HWAER : Local Currency
    GLVOR : Business Transaction - RFBU
    E1FISEG : FI Document Item (BSEG) -1
    BUZEI : Number of Line Item Within Accounting Document
    BSCHL : Posting Key - 40
    DMBTR : Amount in Local Currency
    KOSTL : Cost Center
    HKONT : General Ledger Account
    WERKS : Site
    E1FISEG : FI Document Item (BSEG) -2
    BUZEI : Number of Line Item Within Accounting Document
    BSCHL : Posting Key - 50
    DMBTR : Amount in Local Currency
    HKONT : General Ledger Account
    WERKS : Site
    For which fields u've triggered successfully, pls help in resolving the same.
    rgds,
    balu

    Hi,
    i appreciate for your quick reply...
    i've applied the code corrections in the FM FI_IDOC_PREPARE , but still same error coming.
    tnx n rgds,
    balu

  • How skip initial screen of sp01?

    Dear Experts ,
          I am working on BDC call transaction .here i am using sp01 transaction code .here i am passing data from my selection screen to first screen of sp01 using BDCDATA ,and displaying all print jobs.Now what my requirement is ,skipping initial screen of SP01.how to do that.if i use 'AND SKIP FIRST SCREEN',i can't use 'USING'  addition .what is the procedure to skip the sp01 initial screen.
    Thanks
    Naresh

    Hi,
    Thats very simple man...
    Use below code for that purpose...
    type-POOLs : slis.
    data : goto_sel.
    data : lw_sel TYPE SLIS_SELFIELD.
    data: lt_sysid type TABLE OF ALSYSID,
    ws_sysid type ALSYSID,
    lt_rqiden type TABLE OF RQIDEN_T,
    ws_rqiden type RQIDEN_T,
    lt_RQOWNE type table of RQOWNE_T,
    ws_RQOWNE  type RQOWNE_T.
    ws_sysid-SYSID = sy-sysid.
    append ws_sysid to lt_sysid.
    ws_rqiden-SIGN = 'I'.
    ws_rqiden-OPTION = 'EQ'.
    ws_rqiden-LOW = Pass spool number.
    ws_rqiden-HIGH = ' '.
    append ws_rqiden to lt_rqiden.
    For Username
    ws_RQOWNE-sign = 'I'.
    ws_RQOWNE-OPTION - 'EQ'.
    ws_RQOWNE-LOW = PASS USER NAME
    *ws_RQOWNE-HIGH =
    APPEND ws_RQOWNE to lt_RQOWNE.
    CALL FUNCTION 'RSPO_RINIT_SPOOL_SP01'
    EXPORTING
    SAVEFLAG = 'A'
    SUMMARY = 'X'
    LOCAL = 'X'
    OWNER = ' '
    CLIENT = ' '
    RQNONE = 'X'
    RQPROC = 'X'
    RQSUCC = 'X'
    RQERR = 'X'
    PJPROC = 'X'
    PJSUCC = 'X'
    PJPROB = 'X'
    PJERR = 'X'
    TABLES
    SYSLIST = lt_sysid
    S_RQIDEN = lt_RQIDEN  -
    >TABLE containing SPOOL number.
    S_RQOWNE  = lt_RQOWNE  -->TABLE CONTAINING USERNAME
    call function 'RSPO_RDISPLAY_SPOOLREQ'
    exporting
    use = ' '
    importing
    goto_sel = goto_sel
    TABLES
    SPORQ = lt_SPORQ
    OUTRQ =
    changing
    rs_selfield = lw_sel
    exceptions
    others = 1.
    if sy-subrc 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    IMPORTANT - All table are select option so declare them into your selection screen and directly pass them function module "RSPO_RINIT_SPOOL_SP01".
    Hpoe you got my point.
    Thanks,
    Vijay

  • Order not found or not permitted for goods movement

    Hi,
    I try to implement Goods Movement by using BAPI_GOODSMVT_CREATE. I try to do it over delivery number. So I use the following code. But somehow it returns "Order not found or not permitted for goods movement" error. I can do the same movement over MIGO transaction. But BAPI can not find the order. Do you have any idea? Do I miss a parameter o something?
    Thanks.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          error_code(220) type C,
          temp_xchpf like mara-xchpf,
          sbatch like mseg-charg.
    DATA : temp_vbeln LIKE likp-vbeln.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date   = sy-datum.
    gmhead-pr_uname   = 'sy-uname.
    gmhead-VER_GR_GI_SLIP = '1'.
    gmhead-VER_GR_GI_SLIPX = 'X'.
    gmcode-gm_code  = '01'.        " for 101
    itab-mvt_ind    = 'F'.  
    itab-plant      = '0001'.
    itab-entry_qnt  = AMOUNT.
    itab-move_type  = '101'.
    itab-item_text  = 'invoice'.
    itab-deliv_numb = temp_vbeln.
    APPEND itab.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
      EXPORTING
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
        goodsmvt_headret            = mthead
      TABLES
        goodsmvt_item               = itab
        return                      = errmsg.
    CLEAR error_code.
    LOOP AT errmsg.
      IF errmsg-type EQ 'E'.
         error_code = errmsg-message.
      ENDIF.
    ENDLOOP.
    IF error_code IS INITIAL.
      COMMIT WORK.
      IF sy-subrc NE 0.
        error_code = 'Commit error'.
        EXIT.
      ENDIF.
    ENDIF.
    ERROR_C = error_code.

    Dzed,
    I set item information but I'm still getting error.
    Actually I didn't understand the difference between applying goods movement over delivery number or po number. What is the difference between them?
    If I try to use only deliv_num & deliv_item data, BAPI looks for PO and finds nothing and gives error. But when I use PO number and item for goods movement, this time it is still impossible to be successfull(another error). So I decided to use both delivery number and PO together in BAPI; so I filled those fields:
    po_number
    po_item
    deliv_numb
    deliv_item
    But as you may guess, no success.
    There are also another fields for delivery :
    deliv_num_to_search
    deliv_item_to_search
    I have no idea what are they for.
    And also there's another field in BAPI header:
    red_doc_no
    Maybe I have to use this field to pass delivery number. I'm not sure. I'm confused.

  • Value & is not permitted for attribute Sales Unit - Material Object

    Hi gurus,I would very much appreciate expert advice on how to solve the problem I´m facing when lauching middleware object MATERIAL.
    I have 2 BDocs in red showing the following error:
    Value B20 is not permitted for attribute Purchase Order Unit
    Value B20 is not permitted for attribute Sales Unit
    I have checked table T006 and customizing and I do have unit of measurement B20 created on CRM so I don´t understand where is the error.
    Could you please help me?
    Thanks in advanced,
    Regards,
    Lorena.

    Dear Lorena,
    Many Thanks.
    ok, I need to do manually in the CRM system.  I have one question
    1: If any changes in the ERP system the data is automatically replicated in to CRM system right? then Why we need to Configure again in the CRM system. for Examaple: Proudct group and Tax.
    2.  No, I did not replicate Sales Org., but this is also automatically replicated into CRM system. But it is already replicated into CRM i.e. Initial download.
    my question is in r/3: If one customer have 2 Sales Area data is maitained in the R/3, that information is also available in the CRM side. if one more  sales area is assigned to same customer, that information is also availbale in the CRM system right? but I could not able to find the new sales area data. what is the reason? and how I can dowload the changes in the CRM system?
    I realy thanks to you, providing most valuable information and supporting to me.
    kindly provide me where should I promote points to you.
    I will try and let you know, if I am getting any problem, I will ask you again.
    Thanks and Regards,
    Jags

  • "Drilldown characteristic" not permitted for display hierarchy

    Hi Experts,
    I want to display the hierarchy in my BEx Analyzer for which i tried to activate the hierarchy for the same and got the below error.
    "Default values "Drilldown characteristic" not permitted for display hierarchy"
    Also I have used a standard variable for this infoobject and it is used for user input in the selection screen of the report.
    Eventhough we proceed further with this message, in the Report display, it is not showing the hierarchy in the display.
    Please respond ASAP.
    Rgds
    Kumar

    Hi,
        I don't know why you are getting this error. But we can create hierarchy either by using herarchy name or else by creating hierarchy variable......In characteristics for which you are creating hierarchy, in display tab of properties give DISPLAY AS KEY, SORT CHARACTERISTICS -- AS IN THE QUERY  and RESULT ROWS --- ALWAYS SUPPRESS....
    In HIERARCHY TAB --- Give Hierarchy name select use hierarchy setting check boxand select always show radio buttons......
    Do in this way and it may work......
    Regards,
    Kalyani.

  • Vendor not permitted for company code

    Dear experts,
    While raising the PO in srm I am getting the error message as 'Vendor not permitted for company code'.
    When I checked vendor details in srm and back end, vendor is exist for particular company code and purchasing ord combination. 
    What might be the reason for this error?? can you please share your thoughts about this??

    Hi. Check all the blocking and deletion flags in both systems, especially looking at the "central block" and "archiving" flags in transaction BP in SRM.
    Regards,
    Dave.

  • An entry in field Funds Ctr is not permitted for account 401000 Message no F5394

    Hi Friends,
    I have done Fund Management configuration and while posting the document through FB50, I am getting error message " An entry in field Funds Ctr is not permitted for account 401000 "Message no. F5394 and I also checked Field status and Posting keys for Gl account and everything looks fine..
    Please help on this..
    Thanks
    Goutam

    Hi,
    please check the message the error will give you the table number or Programme  name
    go to SE38  for programme and for table SM30
    system will show where is the exact error facing.
    thanks

  • An out-of-sequence check is not permitted for payroll type B

    We had to  do advance payments for 4 pay periods for an employee through offcycle workbench. One of the checks was wrong so we had to reverse it. It is an out of sequence reversal. Now when i try to do a correction run , it gives me an error An out-of-sequence check is not permitted for payroll type B
    How can i run the correction run now. Please help
    Edited by: sagarika sharma on Aug 14, 2010 6:29 AM

    Check with SAP note 1425764,696067 and 1127119.
    Mohan

  • AIP-50143:  Transaction Instance Not found for Transaction Id

    Hey Guys,
    We have configured a Custom Document Exchange over Generic protocol to transfer a file.
    1. Internal delivery channel is 'SFTP' - Picks file
    2. External delivery channel is 'SFTP' - Puts file
    3. Exchange protocol - Custom document over generic
    4. Translation enabled - False (Currently its turned off, but the file is xml so we may want to turn it on)
    5. Validation enabled - False
    We are encountering below error in B2B while processing. Can someone please help with this.
    Thanks,
    Phani
    010.02.05 at 18:41:41:672: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin PickReqRev 1.0
    2010.02.05 at 18:41:41:672: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info : Cremul version D96A
    2010.02.05 at 18:41:41:672: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info : EDIPHARM version 1.0
    2010.02.05 at 18:41:41:672: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setDocumentPlugin info : PickReqRev version 1.0
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setExchangePlugin Generic version 1.0
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:setExchangePlugin info : Genericversion 1.0
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage translated payload =
    oracle.tip.adapter.b2b.message.MessageStorage@140fee
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage msg.isSignalMsg() = false
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.engine.Engine:processOutgoingMessage Call Outgoing Response Processor
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.Response:Response:outgoingResponse Enter
    2010.02.05 at 18:41:41:673: Thread-26: B2B - (DEBUG) oracle.tip.adapter.b2b.msgproc.Response:Response:outgoingResponse Update the Request-Response Table Row for RefertoRequestMessageID with message state Processing Outgoing Response
    2010.02.05 at 18:41:41:676: Thread-26: BusinessLogicLayer - (DEBUG) Authorization disabled. UserBootstrapped:false, useAuthorization:true, configType:null
    2010.02.05 at 18:41:41:677: Thread-26: BusinessLogicLayer - (DEBUG) Push Stack: queryBusinessTransactionInstance
    2010.02.05 at 18:41:41:693: Thread-26: BusinessLogicLayer - (DEBUG) Pop Stack: queryBusinessTransactionInstance
    2010.02.05 at 18:41:41:694: Thread-26: B2B - (ERROR) Error -: AIP-50143: Transaction Instance Not found for Transaction Id "null"
         at oracle.tip.adapter.b2b.collaboration.B2BWFEventManager.handleException(B2BWFEventManager.java:478)
         at oracle.tip.adapter.b2b.collaboration.CollabCatalogAccessor.getTransactionInstance(CollabCatalogAccessor.java:364)
         at oracle.tip.adapter.b2b.collaboration.CollabCatalogAccessor.setTransactionState(CollabCatalogAccessor.java:283)
         at oracle.tip.adapter.b2b.collaboration.CollaborationManager.setTransactionState(CollaborationManager.java:871)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.updateReqRespState(DbAccess.java:3249)
         at oracle.tip.adapter.b2b.msgproc.Response.outgoingResponse(Response.java:905)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1170)
         at oracle.tip.adapter.b2b.transport.AppInterfaceListener.onMessage(AppInterfaceListener.java:141)
         at oracle.tip.transport.basic.sftp.SFTPProcessor.processMessage(SFTPProcessor.java:188)
         at oracle.tip.transport.basic.sftp.SFTPMonitor.processMessage(SFTPMonitor.java:351)
         at oracle.tip.transport.basic.sftp.SFTPMonitor.run(SFTPMonitor.java:304)
    2010.02.05 at 18:41:42:001: Thread-26: B2B - (DEBUG) Engine:notifyApp Enter
    2010.02.05 at 18:41:42:014: Thread-26: B2B - (DEBUG) notifyApp:notifyApp Enqueue the ip exception message:
    <Exception xmlns="http://integration.oracle.com/B2B/Exception" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <correlationId>null</correlationId>
    <b2bMessageId>0A140A0E126A1276F45000001AD6B570</b2bMessageId>
    <errorCode>AIP-50014</errorCode>
    <errorText>General Error</errorText>
    <errorDescription>
    <![CDATA[Machine Info: (fcgemappdev04)
    Description: General Error
    StackTrace:
    Error -:  AIP-50014:  General Error: Error -:  AIP-50025:  Repository error : Error -:  AIP-50025:  Repository error : Error -:  AIP-50143:  Transaction Instance Not found for Transaction Id "null"
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1213)
         at oracle.tip.adapter.b2b.transport.AppInterfaceListener.onMessage(AppInterfaceListener.java:141)
         at oracle.tip.transport.basic.sftp.SFTPProcessor.processMessage(SFTPProcessor.java:188)
         at oracle.tip.transport.basic.sftp.SFTPMonitor.processMessage(SFTPMonitor.java:351)
         at oracle.tip.transport.basic.sftp.SFTPMonitor.run(SFTPMonitor.java:304)
    Caused by: Error -:  AIP-50025:  Repository error : Error -:  AIP-50025:  Repository error : Error -:  AIP-50143:  Transaction Instance Not found for Transaction Id "null"
         at oracle.tip.adapter.b2b.msgproc.DbAccess.updateReqRespState(DbAccess.java:3252)
         at oracle.tip.adapter.b2b.msgproc.Response.outgoingResponse(Response.java:905)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1170)
         ... 4 more
    Caused by: Error -:  AIP-50025:  Repository error : Error -:  AIP-50143:  Transaction Instance Not found for Transaction Id "null"
         at oracle.tip.adapter.b2b.collaboration.CollaborationManager.setTransactionState(CollaborationManager.java:874)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.updateReqRespState(DbAccess.java:3249)
         ... 6 more
    Caused by: Error -:  AIP-50143:  Transaction Instance Not found for Transaction Id "null"
         at oracle.tip.adapter.b2b.collaboration.B2BWFEventManager.handleException(B2BWFEventManager.java:478)
         at oracle.tip.adapter.b2b.collaboration.CollabCatalogAccessor.getTransactionInstance(CollabCatalogAccessor.java:364)
         at oracle.tip.adapter.b2b.collaboration.CollabCatalogAccessor.setTransactionState(CollabCatalogAccessor.java:283)
         at oracle.tip.adapter.b2b.collaboration.CollaborationManager.setTransactionState(CollaborationManager.java:871)
         ... 7 more
      ]]>

    Hi Phani,
    What is the naming convention you are using at IDC? If you are sending the response to your TP, then make sure to send ReplyToMsgId as part of file name. If it is not a response, then send MessageType as 1 as part of file name.
    For file naming convention required, please refer -
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_TN_010_Transport_File_FTP_Internal.pdf
    Regards,
    Anuj

  • Portal buttons not working for transaction type iviews

    Our buttons on our portal transaction programs quit working.  We are currently on ecc6,ehp5, portal 7.02.  The buttons still work on our test and production systems, so it's not a browser issue.  The buttons work on the newer webdynpro programs in our dev portal.  Please get back with me if you have any ideas on how to fix this button problem.  Thanks, Mike

    Hi Ajay,
    Double posting
    [ITS services not working for Transaction iview with gui for html -;
    Thanks
    Siva

  • Plant Not permitted for selected Doc Type

    I have created new plant and assigned to existing Purchase organization. i am able to create PR but while creating Purchase order i am getting error
    Plant Not permitted for selected Doc Type

    what is the error message number? double click the message to obtain.
    I have not seen any assignment of doucment types to plants, nor a message like mentioned.

  • Error: Common entries are not permitted for plan queries and input queries

    Hi,
    I have a 2 selections in the column struct:
    1. year = 2005, version = actual
    2. year = 2006, version = plan, marked as data can be changed using user entry or planning function
    row has posting periods from 1-12
    in the workbook I have inserted this query in the workbook in analysis grid. it runs good.
    now i added a button and assigned planning function to it. this planning function copies 2005, actuals to 2006, plan.
    when i execute the workbook and hit this button, it gives me following error:
    "Common entries are not permitted for plan queries and input queries"
    please can anyone provide me assistance with this issue.
    thanks,
    sam

    when i go to diagnosis it displays following:
    Diagnosis
    InfoProvider ZIP_PLAN2 must be described in this application by both a plan query and by a input-ready query, which is directly defined on the InfoProvider ZIP_PLAN2.
    System Response
    This is not permitted.

  • Screen-shut - not available for Firefox 5.0a2 - but when? -thanks

    screen shot - not available for Firefox 5.0a2 - non for Aurora - (lightshot was great) - but when? -thanks

    Is it this add-on - https://addons.mozilla.org/firefox/addon/screenshot/
    Prior to the release of Firefox 5 which is due out on June 21st, Mozilla will be checking add-ons that are hosted on AMO and work with Firefox 4 to see if they work with Firefox 5, and for those that do they will update the compatibility details to let the add-on install on Firefox 5.
    If you are happy testing new versions of Firefox prior to the release, you may want to install the Add-on Compatibility Reporter extension - https://addons.mozilla.org/firefox/addon/add-on-compatibility-reporter/
    With this extension you can enable all of your current extensions to test them to see if they work with the development version of Firefox.

Maybe you are looking for