<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: question on interface for FB50 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236120#M140823</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, give it a shot. Make sure the batch-user has all required authorizations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Mar 2006 17:20:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-16T17:20:10Z</dc:date>
    <item>
      <title>question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236109#M140812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new to the ABAP world and a little confused on the interfacing of FB50. we currently have a ABAP process that reads a text file and submits the G/L data using FB01 and RFBIBL00. We would like to start using FB50 and I am reading that this is a enjoySAP transaction that does support batch input. I am also reading about interfaces to FB50 that use the bapi BAPI_ACC_DOCUMENT_POST and/or  BAPI_ACC_GL_POSTING_POST. Can I write a ABAP to read the text file and use one of the BAPI's to load data to the FB50 transaction? We would like to separate our loading processes so that we can use FB50, FB60, FB70 and move away from FB01 to load all of our data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2006 20:45:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236109#M140812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-14T20:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236110#M140813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What difference is it going to make if you are doing this through an interface anyway?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy transactions are meant to be for users who are posting them online. If you are only interfacing, then it doesn't matter whether it is FB01 or FB50 as long as the data is stored the same way and accounting entries are made correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the BAPI, but then you will write all the code yourself to format the file data into the way BAPI expects and also you have to write code to take care of error handling. What should you do when an error occurs? Where will store the record that caused the error? These are just a couple of things that you may have to do yourself, if you are calling a BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, read the documentation of the BAPI and see if these transactions are supported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2006 21:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236110#M140813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-14T21:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236111#M140814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, strictly speaking, the two BAPIS you mention don't create an interface to the transactions. They simply post FI documents. Transactions FB50, 60 and 70 are Enjoy SAP transactions and do not work well in batch input (there are SAP notes to this effect).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the BAPIs to post transactions, but I wouldn't want to guarantee that you can post all types of FI transactions. (Search this forum to see what sorts of problems people have.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BAPI should be quicker than a BDC session using FB01, but I wouldn't change something that works without a good reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2006 21:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236111#M140814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-14T21:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236112#M140815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what the problem is that we use this upload process to load gl data, customer data, and vendor data. I am assuming that all of the people in these groups that perform this process have access to FB01 which means that a AP person can do a GL transaction. we would like to start a segregation of duties process and  have the the AP people only have access to AP, AR to AR and GL to GL. I was told about these transactions FB50, FB60, and FB70 that I thought that I could use in place of the FB01 transaction. If this is  not the case, then we will continue to use FB01 and approach this differently.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2006 21:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236112#M140815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-14T21:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236113#M140816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you do &amp;lt;b&amp;gt;not&amp;lt;/b&amp;gt; need FB50,60,70, etc. - besides posting manually.&lt;/P&gt;&lt;P&gt;If you work in batch, fb01 and fb05 (with rfbibl00) endure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2006 08:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236113#M140816</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-03-15T08:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236114#M140817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;andreas wrote&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;you do not need FB50,60,70, etc. - besides posting manually.&lt;/P&gt;&lt;P&gt;If you work in batch, fb01 and fb05 (with rfbibl00) endure.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;I do not understand what this means. what we are trying to do is segregate the duites within AR,AP, and Gl. correct me if I am wrong but if the user runs the transaction code which ececutes my abap program which executes  RFBIBL00 and rsbdcsub using FB01, then the user needs access to FB01 in order for the process to work. so in theory, a person in AP and create a entry for GL. I am not sure if anybody else is having this problem with reguards to SOX and the segregration of duties. I am just trying to figure out if there is way to handle this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2006 18:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236114#M140817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-15T18:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236115#M140818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have mentioned that this is an interface then why do you need access to the user(s). Generally, the interfaces are scheduled as batch jobs using a BATCH-USER (not a dialog user) with SAP-ALL permission. By doing so you dont have to worrry about user authorizations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2006 18:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236115#M140818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-15T18:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236116#M140819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;being new to ABAP and SAP world, maybe I am not sure what a interface is. the process that we are using is that the user will input data to excel sheet and saved it as a txt file on thier C drive. the user will sign on SAP r/3 and execute a transaction code which calls a ABAP program to read the data from the c drive and fill in the tables needed for RFBIBL00 and rsbdcsub to run the FB01 transaction. If this is not what an interface is then I am sorry for the confusion. I am told that this will not work unless the user has access to FB01.  I already had access to FB01 before I started to work on this program for another issue so I am not sure if this is correct or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2006 18:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236116#M140819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-15T18:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236117#M140820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you are allowing the users to upload files directly from their desktops. That is number one security risk. Normally what you do is collect all such files and put them on the application server. Then you can schedule your program in the background with batch user id that has access to this transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even though users are given FB01 transaction access, you can further restrict them to only certain accounts and company codes. There are ways to control it and achieve the seggregation of duties. I don't think you need to change the program for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2006 20:53:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236117#M140820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-15T20:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236118#M140821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you know the frequency for this upload-program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2006 21:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236118#M140821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-15T21:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236119#M140822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure of the frequency. I'm thinking it is at monthend when they are processing journals for the month. I was looking at the submit command and there is a option" [USER user] You can use the optional addition USER to specify a user ID user of the type sy-uname, which is used to execute the background task." is this something that I can use for the submission of RFBIBL00 and rsbdcsub? this would be helpful if I could sumit the processes under a different user than the person running the process. I could assign the FB01 access to the user that I set up for USER parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 16:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236119#M140822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T16:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236120#M140823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, give it a shot. Make sure the batch-user has all required authorizations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 17:20:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236120#M140823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T17:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236121#M140824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been trying this morning and it is not working. I am using the following code.  is this code correct? when I run the process and I look at SM35, I still see the my user id. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c_uname(6)    TYPE c&lt;/P&gt;&lt;P&gt;    VALUE 'BATCH-FIN'.      "user for batch submit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SUBMIT rfbibl00&lt;/P&gt;&lt;P&gt;         USER c_uname&lt;/P&gt;&lt;P&gt;         WITH ds_name EQ w_file&lt;/P&gt;&lt;P&gt;         WITH callmode EQ c_mode&lt;/P&gt;&lt;P&gt;         WITH  anz_mode EQ p_anz&lt;/P&gt;&lt;P&gt;         WITH xinf = 'X'&lt;/P&gt;&lt;P&gt;         AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  write: / text-007.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    FORMAT COLOR COL_TOTAL.&lt;/P&gt;&lt;P&gt;    WRITE 'Successfully submitted to RFBIBL00'.&lt;/P&gt;&lt;P&gt;    SKIP.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WRITE: / text-014.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT rsbdcsub&lt;/P&gt;&lt;P&gt;           USER c_uname&lt;/P&gt;&lt;P&gt;           WITH mappe EQ c_session&lt;/P&gt;&lt;P&gt;           WITH von EQ sy-datum&lt;/P&gt;&lt;P&gt;           WITH bis EQ sy-datum&lt;/P&gt;&lt;P&gt;           WITH z_verarb = 'X'&lt;/P&gt;&lt;P&gt;           WITH fehler = ' '&lt;/P&gt;&lt;P&gt;           WITH logall = 'X'&lt;/P&gt;&lt;P&gt;           EXPORTING LIST TO MEMORY AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 17:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236121#M140824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T17:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236122#M140825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have to submit the programs as background jobs. Only then the user-id will be effective.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 17:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236122#M140825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T17:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236123#M140826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Submitting as background job:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;From SAP-Help&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Scheduling a submitable program as a background task with the number number in a background request name. After scheduling, the background task is completed by function module JOB_CLOSE and released immediately. 

DATA: number TYPE tbtcjob-jobcount, 
      name TYPE tbtcjob-jobname VALUE 'JOB_TEST', 
      print_parameters TYPE pri_params. 

... 

CALL FUNCTION 'JOB_OPEN' 
  EXPORTING 
    jobname          = name 
  IMPORTING 
    jobcount         = number 
  EXCEPTIONS 
    cant_create_job  = 1 
    invalid_job_data = 2 
    jobname_missing  = 3 
    OTHERS           = 4. 
IF sy-subrc = 0. 
  SUBMIT submitable TO SAP-SPOOL 
                    SPOOL PARAMETERS print_parameters 
                    WITHOUT SPOOL DYNPRO 
                    VIA JOB name NUMBER number 
                    AND RETURN. 
  IF sy-subrc = 0. 
    CALL FUNCTION 'JOB_CLOSE' 
      EXPORTING 
        jobcount             = number 
        jobname              = name 
        strtimmed            = 'X' 
      EXCEPTIONS 
        cant_start_immediate = 1 
        invalid_startdate    = 2 
        jobname_missing      = 3 
        job_close_failed     = 4 
        job_nosteps          = 5 
        job_notex            = 6 
        lock_failed          = 7 
        OTHERS               = 8. 
    IF sy-subrc &amp;lt;&amp;gt; 0. 
      ... 
    ENDIF. 
  ENDIF. 
ENDIF. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 17:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236123#M140826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T17:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236124#M140827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not the submit that is the problem here. It is how you are preparing the file that is used by RFBIBL00 to create these sessions. If you want the session to be created in some other name instead of the user who ran it, then all you to do is as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BGR00-USNAM = &amp;lt;MYBATCHUSERID&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 18:36:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236124#M140827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T18:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236125#M140828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used this code BGR00-USNAM = &amp;lt;MYBATCHUSERID&amp;gt;&lt;/P&gt;&lt;P&gt;and looks like it was successful. When I check the header information in FB03 for the document that I created, the "enter by" contains the &amp;lt;MYBATCHUSERID&amp;gt; and the not the person that submitted the process. We are using the "enter by" as a means to track who entered the document. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will not be able to use this code but thanks for the info. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change my process to submit the jobs in background as mentioned in a previous response and I use the "user" parameter that is available with the submit statement, will I run into the same issue as mentioned above where the "entered by" field will contain the value from user field and not the person you submitted the process?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 21:10:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236125#M140828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T21:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236126#M140829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately that is true. BGR00-USNAM is the user id under which the session is run as well as who created the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using it for tracking purposes, then you can pass the person's id into some other text field like BBKPF-BKTXT. You cannot use two different user ids, one for submitting the session and another for the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 21:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236126#M140829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T21:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236127#M140830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so what you are saying is that even if I set this up to run in background with the "user" parameter for the submit statement, I will still have this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 21:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236127#M140830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T21:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: question on interface for FB50</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236128#M140831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. The program is going to check BGR00 user for both authorizations as well as use it for the USNAM. If you noticed, the structure BBKPF does not have the field USNAM. That is what made this impossible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2006 21:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-interface-for-fb50/m-p/1236128#M140831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-16T21:49:29Z</dc:date>
    </item>
  </channel>
</rss>

