BDC without tcode authorization

Dear Freinds,
how to run bdc program at end user end who dont have tcode (MM02)authorization ,please give me the function or or abap code or ay other way so tht i can bypass this authorization check process.
Thanks Naveen

Hi,
Simply create a program and use inside CALL TRANSACTION tcode USING bdc_tab . This overcomes authority checks as long as it is configured to do so. Check transaction SE97 where you can switch that off (by default it is off). Then the user, who is not allowed to enter MM02 mormally, will be able to run this program and access tcode without authority check.
Regards
Marcin

Similar Messages

  • Message "Location Products Without Change Authorization" in PP order deleti

    Hello Experts,
    We have scheduled the program /SAPAPO/DELETE_PP_ORDER to run in background and recieve location products in spool list with message "Location Products Without Change Authorization".
    Location products in the list keep changing every day. Could you please suggest what are the possible causes of this missing change authorizations?
    Thanks a lot.
    Best Regards,
    Chandan

    Hi,
    Try running the program in foreground and when you encounter the error message, go to tcode: /nSU53 and take a screen shot of the details. Your secutiry team would be able to guide you for the authorization missing.
    Hope this helps.
    Regards,
    Nawanit

  • Role without Tcode but with customized "Z" Object only

    Hi all,
    Please help my querry is that with a Single Role as while seeing that role in PFCG in Menu Tab no Tcode is assigned and in the Authoriztion Tab -> change authorization tab just a single(one) Z auth object is maintained with Display actvt and i am not able to understand how this is going how the user are able to access the the Role without TCODE assigned but with just a Z authobject. please tell How this is going and working .
    Your help will be greatly appreciated and pleas tell how this Z auth object are created.
    Thanks,
    Chandresh.

    >
    > You need to provide more infos (from the system) and just asking on site is a good idea (as mentioned by Alex).
    >
    > Cheers,
    > Julius
    I agree that asking onsite could give more insight into the Z-Object usage. I can explain the probable reason of having the Z-Object as a stand alone authorization
    In a role inheritance scenario, when you have roles with 100+ transactions (role A, B,C, .......) which act as the master roles and the derived roles being A1,A2,A3...... depending on the number of inherited roles you have in the set-up, authorization objects like customer authorization group or vendor authorization group can be a tough task (as these are not called in the organization level values) - in this situation as the authorization groups would have to maintained individually in the inherited roles and can be a time consuming task with the additional risk of passing down the values of the master role every time it is generated and inherited - a better option could be to maintain a non-existent value in the master role , inherit it so the non-existent value is passed down to the inherited roles. To give access on the specific authorization groups , create a role with only the object F_KNA1_BED or F_BKPF_BED as might be the case and maintain organization specific values in these object and assign it to the users who need it
    My guess would be that the Z-object the operator mentions is something that is developed to address such an issue

  • BDC for TCODE F150

    Hi Friends,
    I am facing problem while developing BDC for tcode F150. The last action i.e. scheduling for particular dunning date is not getting executed in my BDC.
    I am also pasting the end part of my BDC recording. Please review it and advise.
    PERFORM bdc_dynpro      USING 'SAPLF150_JOBS' '1000'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'F150V-STRZT'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=JOBS'.
      PERFORM bdc_field       USING 'F150V-STRDT'
                                    rdate.
      PERFORM bdc_field       USING 'F150V-XSTRF'
                                    'X'.
        select single SPLD into p_out from USR01 where bname = sy-uname.
      perform bdc_field       using 'ITCPO-TDDEST'
                                     p_out.
      CALL TRANSACTION 'F150'
    Thank you,
    Swapnil
    Edited by: Swapnil Tawade on Sep 22, 2008 3:15 PM

    Hi,
       If u want it for  some specific plants then before populating data  to bdcdata internal table  check the conditions for which the plant fields required values to be passed  and if the condition is satisfied then pass the plant field to bdcdata table . If the condition is not satisfied then dont pass that plant field to bdcdata table bcoz  if  u r not passing any field to bdcdata table then that field is going have default values.
    Regards,
    Shafi

  • HT3702 how can i ask them to stop taking money from my credit card without my authorization?

       the apple store keeps taking money saying that i buy things from my credit card. i don't know why this is happening. how do i make them stop taking maney without my authorization.

    Perhaps you have had your account hacked by someone. Someone you know or a stranger. The first thing is to change the password in your Apple ID so that they cannot continue to buy things with your account. Second, if the None option is available in your iTunes account payment methods, select that and remove the bank card info.
    Manage your Apple ID -
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • Is there a way to sync songs that I purchased from another person's account, which have transferred to my library, onto my ipod, without their authorization?

    I used to share an accout with a family member on itunes, where I bought a lot of my songs and kept them on a shared library. We used home-share to transfer my songs onto my MacBook Pro and start my own library, but when we turned off Home-Share and de-authorized the other person's account on my computer, I was no longer able to sync the songs I puchased on her account onto my ipod. She would have to remain authorized on my mac for me to be able to sync those songs onto my ipod. Is there another way to do it, without her authorization? Thanks!

    Your iPod will only work with and sync content you have either purchased from the iTunes store or imported from elsewhere via iTunes.
    B-rock

  • Problem with uploading data from excel using BDC for tcode f-02

    Hi All,
    I am uploading data from excel using BDC for tcode f-02. The problem here is, while recording, the values of some fields are recording twice. I dont know why it's happening so. But if I run my abap program, I have to give those fields twice in my excel sheet. Otherwise data does not upload. But it is not the feasible way. We must give those fields once in excel. Please tell me, how I can solve the issue.
    With regards,
    Rosaline.

    Hi,
      in BDC each and every action is recording. If your press enter in same screen that also recorded once aging may be this is your case repeating field values will appear. we can solve the problem for repeat fields like below.
    suppose in your excel having repeated field X1 X2 X3 the X2 contains repeated field X3 means delete the X3 field.
    Now In your itab having X1 and X2 fields. While in the LOOP the ITAB pass the X2 field to repeated the fields.
    LOOP at ITAB to WA.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'BDC_CURSOR'.
    bdcdata_wa-fval = 'RM08M-EBELN'.
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'INVFO-BLDAT'.
    bdcdata_wa-fval = wa-X2." 1st time pass the X2 fields
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'INVFO-BLDAT'.
    bdcdata_wa-fval = wa-X2." pass the same value to repeated field
    APPEND bdcdata_wa TO bdcdata_tab.
    Endloop.
    Hope you can understand.
    Regards,
    Dhina..

  • Credit card charged without my authorization.

    HELP!!!! Skype has charged $67.11 to my credit card without my authorization. it's freaking impossoble to contact customer support so how do i get my money back? here's the email that i got from them:
    We've delivered your order
    It's now ready for you to use. So now what?You should be able to start using your purchase immediately. However, in some cases, you may have to wait up to an hour for it to be activated. If you're still having problems, visit our help section.
    Here are your purchase details:Skype Name: [Removed for privacy]
    Product name: Skype Credit purchase of €50
    Total amount: EUR50.00
    Transaction date: Aug 5, 2014
    Order number: [removed for privacy]
    Order status: Delivered

    Hi, vp41179, and welcome to the Community,
    I arranged to transfer your post from its previous location to create its own new topic here; its subject and/or title has been edited to differentiate the post from other inquiries and to reflect your post's content.
    Perhaps this FAQ article may shed some light on what has occurred:
    https://support.skype.com/en/faq/FA10384/why-has-my-credit-debit-card-been-charged-by-skype-when-i-h...
    Please check your Skype account(s) details to ensure no subscriptions are active.
    Here is a link to the instruction on how to contact Skype Customer Service via their secure portal: Contact Customer Service
    If you experience difficulty reaching Skype Customer Service, try again using a different web browser and choosing a different path through the various drop-down menu options presented. Also, look to approve a pop-up dialogue box which would connect you to start an instant message chat with a customer service agent. If you have pop-ups blocked in your browser settings, this will also impede reaching an agent.  Please continue to try -- people are getting through!
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Problem in BDC for TCode S_ALR_87013620

    Hi Gurus,
    I have recorded the BDC for TCode S_ALR_87013620.
    Executed the report S_ALR_87013620 by providing necessary details.
    Displays the report and then clicked on Report-> Print -> PrinterNa
    But when I execute through program it does not work. UNable to view Screens for Report-> Print->Printername
    screens.

    Hi   Praveen Kumar  
    Go TCode S_ALR_87013620
    In Program --> execute and print (Shift+f1)
    this will execute and print your report..
    i think ....no need BDC for printing  i guess.....
    Thanks
    Ramesh

  • F-32 Tcode Authorization

    Dear Sir,
    For F-32 Tcode Authorization. 
    I Require the control to be available on PROFIT CENTER. specifically Dummy Profit Center.
    I request you to kindly guide me as such a control can be made available .
    With Thanks and Regards
    Suman A

    Read some documentation
    - [Creating a Customer-Specific Authorization Object|http://help.sap.com/saphelp_47x200/helpdata/en/9e/74ba3bd14a6a6ae10000000a114084/frameset.htm]
    - [Validations, Substitutions, and Rules|http://help.sap.com/saphelp_47x200/helpdata/en/9e/74ba3bd14a6a6ae10000000a114084/frameset.htm] and [Validation|http://help.sap.com/saphelp_erp60/helpdata/en/eb/13795543c411d1896f0000e8322d00/frameset.htm] in [Profit Center Accounting (EC-PCA)|http://help.sap.com/saphelp_erp60/helpdata/en/eb/13706b43c411d1896f0000e8322d00/frameset.htm]
    Regards,
    Raymond

  • How to call session directly in bdc without using SM35

    how to call session directly in bdc without using SM35

    HI
    good
    you r using the sm35 to see the session for calling teh session in your report
    ATA:   messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE ,
    c_session  LIKE   apqi-groupid VALUE 'Z3PL_CUST' ,
    c_job      LIKE   tbtcjob-jobname VALUE 'Z3PL_JOB_CUST' ,
    c_flag     TYPE    c VALUE 'X'  ,
    g_qid      TYPE apqi-qid      .
    thanks
    mrutyun

  • Location Products Without Change Authorization

    Hi,
           I ran the report /SAPAPO/DELETE_PP_ORDER
    in a background job and in the spool, I see ;
    =======
    Location Products Without Change Authorization
    Product -
    Location
    XXXXX----
    ABC
    a list of products and locations and at the end
    "No PP/DS orders exist for the selection"
                            I understand that there are no PPDS orders to be deleted. But what does the "Location Products Without Change Authorization" mean?? These products and locations are also in a active integration model in R/3. They are active in APO.

    Hi Venkat,
    It appears you don't have change authorization for the mentioned product locations because of which the report is displaying the message and not deleting any order for those products.
    Check the authorization objects associated to your profile...
    Hope this helps...
    Regards,
    Manjit

  • Error in BDC for tcode fbcj

    Hello Everyone,
    I am working on bdc for tcode fbcj.
    I have done recording through shdb only till saving of a row and not posting of document as per requirement.
    Now the Problem I am facing is that through BDC I am able to enter transaction , do the data entry and then the regular message saying vendor 10000001 is subject to withholding tax. After getting this message The whole record row gets disappered. So I am not able to do the data entry through BDC.
    Please I request you all to help me in this regard.
    Thanks,
    Pranil Shinde.

    hi,
          First of all go to FK03 and give the vendor name and company code and tick mark
    Withholding Tax and then enter.
    Here you need to maintain the withholding tax information. To do that take the help of FI Consultant. and then execute FBCJ transaction. I hope you can resolve your issue.
    Regards,
    Kasuladevi

  • How to write BDC for tcode F-32

    Hi Experts,
    How to write BDC for tcode F-32 .
    is it possible i recorded in SHDB BUT IF I AM DOING IT'S COMING WRONG .
    plz guide me sir.
    regars,
    Hari
    Edited by: hari311 on Oct 27, 2009 9:22 AM

    There might be that when u provide the data in the selction screen of F-32 and press process open items some custom program might be attached to it and gets executed...
    chek it out..
    if so..
    pass the bdcdata of the second screen into a memory id
    export t_bdcdata into v_memid.
    in that custoom report jus import this..
    then fill the t_bdcdata with the header information and call the transcation f-32..
    Edited by: imran khan on Oct 27, 2009 9:35 AM

  • Hide Unit price from sales order for sales user without change authorization of document setting

    Hi all expert
    Hide Unit price from sales user without change authorization of document setting.
    I have also refer this note
    SAP B1 2005 Purchas Order,Good Reciept PO'S, and Unit Price Block
    but sill I had not getting my proper solution.
    I want to restrict sales person to see & access unit price. Here I know option of block authorization of document setting but its not good option because , In future ,if sales user wants to changes forms setting in future so Its become problematic for user. so I want do this without restrict user for form setting & only hide unit price table from him/her. also He/her able to access form setting with out unit price.
    Please reply
    Amol Nikam

    Hi Experts,
    Please Tell me Is there any option "Hide Unit price from sales order for sales user without change authorization of document setting"
    Regards/Thanks
    Amol

Maybe you are looking for

  • Need help with Apple TV + Airport Express setup

    I am newbie to this whole Apple thing. Just switched from Windows world (20+ years of torture) to MacBook Pro about 6 months ago. Loving every minute of it. Here's what I currently have... I have a 4000+ sq.ft. home with 3 levels on a 1-acre lot. I h

  • Cannot Add new fields to standard QM datasource

    Hi I got this erro when I try to add new fields from LBWE. Field ZZRFKIMG cannot be selected because of unit field VRKME -> see long text Message no. MCEX032 Diagnosis Field ZZRFKIMG cannot be transferred, since its unit field VRKME is either not in

  • Prioritize the Purchase Requisiotions/PO's as per requirement

    Issue :- In my current system there will be alot of pending PR's & PO's.I couldn't able to followup these and sometimes i am not able to deliver the materials in time. Assumption :- I think there is a new feature called "Requirement Prioritization "w

  • Oracle 11gR2 certification for Oracle Linux 6

    Hello, According to Oracle documentation, database certification and support for Oracle 11gR2 under Oracle Linux starts with 11.2.0.3. I was wondering if this might have anything to do with the i386 software prerequisites. Speaking of Oracle 11gR2 x8

  • Time difference in inlclueding millisenconds

    I am trying to get the time difference in millisends. currently i am using following logic and found it is not giving accurate result. java.util.Date d1 = new java.util.Date(); java.text.SimpleDateFormat f1 = new java.text.SimpleDateFormat("HH:mm:ss