Problem in Creating Employee as a supplier in backend by AP supplier

Hi friends,
Im facing issue in creating Employee as a supplier in backend through AP supplier interface, as im getting the below error like
Employee_id is invalid and Employee info is invalidThis is the codings that i followed to perform that interface, but it didnt worked it seems.
DECLARE
L_VENDOR_REC_TYPE AP_VENDOR_PUB_PKG.R_VENDOR_REC_TYPE;
L_SUP_SEQ number;
L_MSG_COUNT NUMBER;
L_MSG_DATA VARCHAR2 (4000) := '';
L_RETURN_STATUS VARCHAR2 (1);
L_VENDOR_ID AP_SUPPLIERS.VENDOR_ID%TYPE;
L_PARTY_ID NUMBER;
BEGIN
SELECT AP_SUPPLIERS_INT_S.NEXTVAL INTO L_SUP_SEQ FROM DUAL;
L_VENDOR_REC_TYPE.VENDOR_NAME := 'Terrence Schreiber';
L_VENDOR_REC_TYPE.EMPLOYEE_ID := 18;
-- L_VENDOR_REC_TYPE.segment1 := 18;
L_VENDOR_REC_TYPE.VENDOR_TYPE_LOOKUP_CODE := 'EMPLOYEE';
L_VENDOR_REC_TYPE.INVOICE_CURRENCY_CODE := 'INR';
L_VENDOR_REC_TYPE.PAYMENT_CURRENCY_CODE := 'INR';
L_VENDOR_REC_TYPE.TERMS_NAME := 'N30';
L_VENDOR_REC_TYPE.VENDOR_INTERFACE_ID := L_SUP_SEQ;
-- l_vendor_rec_type.party_id := 6487;
AP_VENDOR_PUB_PKG.CREATE_VENDOR (
P_API_VERSION => 1.0,
P_INIT_MSG_LIST => FND_API.G_FALSE,
P_COMMIT => FND_API.G_FALSE,
P_VALIDATION_LEVEL => FND_API.G_VALID_LEVEL_FULL,
X_RETURN_STATUS => L_RETURN_STATUS,
X_MSG_COUNT => L_MSG_COUNT,
X_MSG_DATA => L_MSG_DATA,
P_VENDOR_REC => L_VENDOR_REC_TYPE,
X_VENDOR_ID => L_VENDOR_ID,
X_PARTY_ID => L_PARTY_ID
commit;
DBMS_OUTPUT.put_line ('Vendor Return Status ---> ' || L_RETURN_STATUS);
DBMS_OUTPUT.put_line ('Vendor Message Count ---> ' || L_MSG_COUNT);
DBMS_OUTPUT.put_line ('Vendor ID --->' || L_VENDOR_ID);
DBMS_OUTPUT.put_line ('Party ID --->' || L_PARTY_ID);
IF L_MSG_COUNT = 1
THEN
DBMS_OUTPUT.put_line ('Vendor Message Data ---> ' || L_MSG_DATA);
ELSIF L_MSG_COUNT > 1
THEN
FOR I IN 1 .. L_MSG_COUNT
LOOP
DBMS_OUTPUT.put_line(I || '. '
|| SUBSTR (
FND_MSG_PUB.GET (
P_ENCODED => FND_API.G_FALSE
1,
255
END LOOP;
END IF;
END;
Also i referred for the above error in the metalink with the following ID, that also dint worked
[ID 1400877.1
[ID 977651.1 ]Can friends, anyone help me to solve this problem.
Thanks
Brgds,
Mini

Hi
Navigation: Supplier > Entry > Create Supplier > Employee Name
Responsibility: Payable Manager
Regards
Senthilkumar C
Edited by: Senthilkumar Chellamuthu on Jul 24, 2012 3:16 PM

Similar Messages

  • Is there any Api to create employee as supplier in R12

    hi , In manual process we do by selecting Supplier type as "Supplier to used to process expense payments to internal employee" to create employee as supplier. Is there any standard api which does this in R12
    Can some one please send sample script if any.
    Appreciate your help..
    Edited by: 885022 on Oct 24, 2011 5:11 AM

    Hi all,
    We had a similar problem.
    As the solutions were used AR functions:
    arp_process_header_updte_cover.update_header_cover (p_form_name       => 'ARXTWMAI',
                                                        p_form_version    => 1,
                                                        p_customer_trx_id => l_trx.customer_trx_id,
                                                        p_complete_flag   => 'N',
    arp_process_header.post_commit ('ARXTWMAI',
                                    70.1,
                                    l_trx.customer_trx_id,
                                    'N',
    The data was taken from RA_CUSTOMER_TRX_PARTIAL_V.

  • Create Employee as Supplier?

    Hi!
    The user has a requirement where the employee can be also a supplier (version 11i) .
    I have created a new employee in HRMS module, and I have enable option "Automatically Create Employee as Supplier" in Payables. But when I run report "Employee Update Program" nothing happens. Report has no results.
    Should I create Expense Report Tamplate? Why?
    Please advise.
    Tnx!
    Andrea

    I have run Expense Report Export (before running I have checked options for Supplier Numbering, and Automatically create Employee..). No results.
    Log file:
    Begin Receipts Management - Holds
    Process Hold Each Scenario
    Determine whether to place Holds
    Process Hold All Scenario
    Determine whether to place Holds
    Process Hold BothPay Scenario
    Determine whether to place Holds
    Process Obsolete Holds
    Obsolete Holds
    Obsolete Both Pay Holds
    Begin Processing Individual expense reports
    Fetching expense report...
    Credit Card Expenses Fetched = 0
    Credit Card Invoices Created = 0
    No Rows found to import
    Expenses Fetched = 0
    Invoices Created = 0
    I'm missing something.. But what?

  • Unable to create employees as suppliers

    I have created a PL/SQL script to create employees as suppliers. This script works fine on the development server but I get the following error on Production Server:
    Encountered ERROR in supplier creation!!!
    EMPLOYEE_ID is invalid
    Employee Info is invalid
    In this regard I have also cross checked the note 786262.1 and the set up is correct. Could you please tell me where I could be going wrong. The script is as follows:
    declare
    l_vendor_rec AP_VENDOR_PUB_PKG.r_vendor_rec_type;
    l_vendor_site_rec AP_VENDOR_PUB_PKG.r_vendor_site_rec_type;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    l_upd number := 0;
    x_vendor_id number;
    x_party_id number;
    x_vendor_site_id number;
    x_party_site_id number;
    x_location_id number;
    l_party_site_id number;
    l_organization_id number;
    begin
    --l_vendor_rec.terms_id := 10000;
    for c in (select employee_id,location_id,party_id,organization_id from
    PER_EMPLOYEES_X pex
    where not exists
    (select 1
    from po_vendors
    where employee_id=pex.employee_id
    and employee_id=65)
    loop
    --dbms_output.put_line(' Org id '||c.organization_id);
    l_vendor_rec.employee_id := c.employee_id;
    l_vendor_rec.VENDOR_TYPE_LOOKUP_CODE := 'EMPLOYEE';
    --mo_global.set_policy_context('S',c.organization_id);
    AP_VENDOR_PUB_PKG.Create_Vendor
    (      p_api_version => 1,
         x_return_status     => x_return_status,
         x_msg_count     => x_msg_count,
         x_msg_data     => x_msg_data,
         p_vendor_rec=> l_vendor_rec,
         x_vendor_id => x_vendor_id,
         x_party_id => x_party_id
    if (x_return_status <> 'S') then
    dbms_output.put_line('Encountered ERROR in supplier creation!!!');
    dbms_output.put_line('--------------------------------------');
    dbms_output.put_line(x_msg_data);
    IF x_msg_count > 1 THEN
    FOR i IN 1..x_msg_count LOOP
    dbms_output.put_line(substr(FND_MSG_PUB.Get( p_encoded => FND_API.G_FALSE ),1,255));
    END LOOP;
    END IF;
    ELSE
    dbms_output.put_line('Supplier Created!!!');
    l_supplier_number := l_supplier_number + 1;
    l_upd := l_upd +1;
    l_vendor_site_rec.vendor_id := x_vendor_id;
    l_vendor_site_rec.VENDOR_SITE_CODE := 'HOME';
    l_vendor_site_rec.org_id := c.organization_id;
    AP_VENDOR_PUB_PKG.Create_Vendor_Site
    (      p_api_version => 1,
         x_return_status     => x_return_status,
         x_msg_count     => x_msg_count,
         x_msg_data     => x_msg_data,
         p_vendor_site_rec=> l_vendor_site_rec,
         x_vendor_site_id => x_vendor_site_id,
         x_party_site_id     => x_party_site_id,
         x_location_id     =>x_location_id
    if (x_return_status <> 'S') then
    dbms_output.put_line('Encountered ERROR in supplier site creation!!!');
    dbms_output.put_line('--------------------------------------');
    dbms_output.put_line(x_msg_data);
    IF x_msg_count > 1 THEN
    FOR i IN 1..x_msg_count LOOP
    dbms_output.put_line(substr(FND_MSG_PUB.Get( p_encoded => FND_API.G_FALSE ),1,255));
    END LOOP;
    END IF;
    ELSE
    dbms_output.put_line('Supplier Site Created!!!');
    end if;
    end if;
    end loop;
    dbms_output.put_line(' No. of rows updated '|| l_upd);
    exception
    when others then dbms_output.put_line(SQLERRM);
    end;
    /

    I guess my reply is too late to help :( .... even I'd been facing the same issue("EMPLOYEE_ID is invalid") when invoking the APIs POS_VENDOR_PUB_PKG.Create_Vendor / ap_vendor_pub_pkg.Create_Vendor by running them as a stand-alone PL Sql block.
    It has been resolved when invoked from a concurrent program.
    Rgds,
    Sumanth

  • Problem in Creating Business Partner through BP

    Hi All,
    I am facing a problem in creating a business partner through transaction BP. I am selecting the Create Person tab. Selecting 'Employee' as BP role, choosing Xxternal Assignment. I am also giving mandatory fields like First name , last name and country. When i am saving it it is getting saved but an error message comes which says "Personal Address does not exist".
    The entry comes in table BUT000 also but when I go to BP transaction again and open the Business partner it is not opening giveing the same error message. Please help in resolving this.
    Thanks & Regards,
    Saket

    Hello Saket,
    The error "Personal Address does not exist" (AM013) indicates a DB inconsistancy. That is the address number in table BUT020 does not have data in table ADRC. Please check whether this is your case.
    If you can recreate such error in a non-modified SAP enverionment, please raise a customer message to SAP.
    To correct the inconsistancies, please use the reports in note 865271 and note 1096330.
    Best regards,
    Maggie

  • PROBLEM DURING CREATING AN AR INVOICE

    Dear Sir,
    I am having a problem during creating the AR invoice from the delivery. I am getting the message: (2) Message Sales Employee is Must. I am unable to create AR invoice for this reason. But when i am going to create AR invoice for the same delivery in different numbering series it is saying that Error in Numbering file, restorer it. I am really unable to cope up this problem. Please help me to resolve it asap.
    Regards
    Anupam

    Hi,
    Do you have any addtional code in the SP_TransactionNotification? If yes, try removing the code and then try to add the AR Invoice.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Problem in creating 0027 infotype record in background

    Hi Experts,
    I am facing the problem in creating 27(Costs distribution) infotype record in back ground.
    Whenever there is a change in position of the employee or when we hire a new employee (Through PA40)
    i have to ctreate 0027 infotype record in background.For that i am using IN_UPDATE method of BADI
    HRPAD00INFTY.
    Here i am getting 2 problems.
    1. I am unable to get the latest positions that is assigned to the employee.
       Through NEW_IM AGE structure we can get the latest position but if a person is assigned to multiple   positions for the same period then i am getting only one position from NEW_IM AGE but not all.can any body help me?
    2. I am calling HR_INFOTYPE_OPERATION FM to create the IT0027 record in background in the above method (IN_UPDATE). but it is not updating the PA0027 table. any idea?
    Full points will be rewarded.
    Regards,
    Sai.

    I am sending a sample program , which is on infotype 0105 (communication). I hope that this program will help u out............
    REPORT ZSAPHR_SAMP.
    tables: pa0105.
    infotypes: 0105.
    DATA : I_RETURN TYPE BAPIRETURN1,
    I_KEY TYPE BAPIPAKEY,
    PERNR TYPE P0001-PERNR,
    I_P0105 TYPE TABLE OF P0105 WITH HEADER LINE,
    ENDDA TYPE P0105-ENDDA,
    BEGDA TYPE P0105-BEGDA.
    MOVE '00000010' TO PERNR.
    BEGDA = SY-DATUM + 1.
    ENDDA = SY-DATUM + 1.
    i_p0105-pernr = PERNR.
    i_p0105-infty = '0105'.
    i_p0105-subty = '0002'.
    i_p0105-endda = ENDDA.
    i_p0105-begda = BEGDA.
    I_P0105-USRTY = '0002'.
    I_P0105-USRID = '[email protected]'.
    APPEND i_p0105.
    CALL FUNCTION 'DEQUEUE_ALL' .
    CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
    EXPORTING
    NUMBER = PERNR.
    IF SY-SUBRC = 0.
    WRITE 'Employee Locked Successfully'.
    ENDIF.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
    INFTY = '0105'
    NUMBER = PERNR
    SUBTYPE = '0002'
    VALIDITYEND = BEGDA
    VALIDITYBEGIN = ENDDA
    RECORD = i_p0105
    OPERATION = 'INS'
    TCLAS = 'A'
    DIALOG_MODE = '0'
    NOCOMMIT = 'X'
    IMPORTING
    RETURN = I_RETURN
    KEY = I_KEY.
    IF SY-SUBRC = 0.
    WRITE : 'FM returns sy-subrc 0'.
    ENDIF.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
    EXPORTING

  • HR Integration with CRM doesn't create employee in CRM

    Hello all;
    We are using SAP CRM 5.0 SP08 and SAP ECC 6.0. I am trying to setup the HR-CRM integration and did everything that must be done in my opinion. The IDOC is created succesfully from the ERP side via PFAL and BD87 in CRM shows "green" status records for the IDOC but no business partner is created. I read the blog /people/vikash.krishna/blog/2006/10/15/replicating-hr-master-data-part-1 , examined the SAP notes 934372, 312090, 550055 but there is no result. May you please help me in solving the problem?
    Best Regards,
    Erkan

    Hi Erkan
    Did you follow all the following steps
    Setting up Transfer of Employee (HR Master) from R/3 to CRM
    1. Logical system XXX assigned to R/3 client XXX. Logical system YYY assigned to CRM client YYY – view through SCC4
    2. Create RFC Destination YYY  for CRM client YYY in R/3 and
    Server ID  with user details and client YYY.
    3. Transaction code SALE :  Application Link Enabling (ALE) &#61664; Modelling and Implementing Business Processes &#61664; Maintain Distribution Model and Distribute Views. (Direct transaction code : BD64)
    Go to change mode and select ‘Create Model view’.
    You get a popup. Fill in the details – Technical name, short text and validity
    Select ‘Add message type’ from the application tool bar.
    Fill in the following details
    Model view : HRCRM
    Sender logical system : XXX
    Receiver logical system : YYY
    Message type : HRMD_ABA
    Note : Only this message type works for employee transfer.
    4.Save the model. From the same screen select the distribution model and from the menu Environment &#61664; Generate partner profiles
    Don’t change anything in the next screen. Simply Execute.
    4.Distribute the distribution model HRCRM
    Select the distribution model. From the menu bar, Edit &#61664; Model View &#61664; Distribute
    You get a dialog showing the receiver logical system. Execute.
    You get a log ‘Model view HRCRM has been created in target system YYY
    5.Go to the CRM system and check up whether this model has been created.
    Transaction code BD64
    The model has got copied. No changes can be made in CRM
    6. Generate partner profiles for the distribution model in CRM by selecting
    Environment &#61664; Generate partner profiles.
    In the next screen, do not make any changes and Execute.
    Partner profiles can be seen in transaction WE20
    <b>Delta Download Settings</b>
    7. So far, the above settings will ensure the initial download. However for any changes / new employees to be transferred, i.e delta changes, changes pointers need to be activated.
    In R/3, Transaction code SALE, Application Link Enabling (ALE) &#61664; Modelling and Implementing Business Processes &#61664; Master Data Distribution &#61664; Replication of Modified Data &#61664; Activate Change Pointers – Generally (BD61)
    This  activates change pointers globally for all message types.
    8. In R/3, Transaction code SALE, Application Link Enabling (ALE) &#61664; Modelling and Implementing Business Processes &#61664; Master Data Distribution &#61664; Replication of Modified Data &#61664; Activate Change Pointers for Message Types
    Activate change pointer for message type HRMD_ABA
    9. CRM : Number Assignments. Generally, there are 3 types of number assignments (also called switches) when business partners are created.
    1 – The system uses the number from the general internal interval of the number
          range object BU_PARTNER
    2 – The system uses the number from a specific internal interval of the object
    3 – The number is transferred from HR and a prefix is added. In this case, a specific external interval, which must be defined as XX00000000 (upto
    XX99999999), is used (where XX denotes any two letters).
    The number range object for all switch positions is BU_PARTNER, with the interval depending on the switch value.
    For switch value 1, the system uses the internal standard interval, otherwise for switch values 2 and 3 you must also create a grouping (transaction BUC2) for these intervals. For the system to be able to connect the grouping and the number range interval, the name of the grouping must be exactly the same as the name of the corresponding number range interval (the name of the grouping is contained in the first column of the table). If you select 3 (HRALX/PNUMB = 3) for the number assignment of busienss partners of the employee role, create HRALX/PSUBG switch manually in table T77S0.
    In table T77S0, HRALX/ONUMB is used to set the number assignment for organizational units and HRALX/PNUMB is used to set the number assignment for employees.
    Create a number range ZZ
    Transaction code BUC2. Create a grouping of the same ID as that of the number range. Eg. Number range ID : ZZ and grouping ID should also be ZZ
    In table T77S0, maintain the following combinations
    HRALX-PNUMB = 2
    HRALX-PSUBG = ZZ
    10. Make the following customizing changes in CRM
    Transaction code SM30 : Table T77S0
    Group     Sem Abbr     Value Abbr     
    HRALX     HRAC     X     Activate HR Integration with CRM
    HRALX     OBPON     ON     Activate integration between Business partners and Org Units
    HRALX     PBPON     ON     Integration between business partners and employees
    HRALX     OPROL     BUP004     Role definition for org unit – Business partner
    HRALX     PPROL     BUP003     Role definition for Employee – Business partner
    HRALX     ONUMB     1     Number range assignment for org units
    HRALX     PNUMB     2     Number range assignment for Employees
    HRALX     PSUBG     ZZ     Number range grouping only if PNUMB is not 1.
    11. Create Employee Master in R/3.  Employee master consists of Infotypes. The mandatory infotypes are Actions, Address, Personal data and Organizational Assignment.
    Transaction code : PA30
    12. In R/3 Initial Download : SE38 – RHALEINI
    Plan version : 01
    Object type : P – Person (always)
    Object ID : Employee ID eg. 1
    Receiver Partner no. : YYY
    Select further details
    You get all the data transfer details
    13. In CRM, transaction code PP01 – View HR Master objects
    You see that the employee 1 has got transferred. To see the corresponding business partner go to the infotype Relationships (the first row)
    Screen 2 gives you the business partner ID in CRM
    14. Now change the employee master in R/3.  Execute program RBDMIDOC in R/3 to send the changes over to CRM
    Put message type ‘HRMD_ABA’ and Execute
    15. All subsequent changes in R/3, i.e changing an existing Master or creating a new one goes through directly by program RBDMIDOC.
    16. After all employees are transferred to CRM from R/3 only then its safe to execute initial download CUSTOMER_REL
    If an Employee responsible 2 is replaced by 3 in the customer master in R/3, then in CRM, the same is not replaced. Only difference that the sales area assignment is no longer there for the replaced employee in transaction BP relationships.
    Hope this would help.
    Regards,
    Rekha Dadwal
    <b>You gain a point for every point that you reward. So reward helpful answers generously</b>

  • Creating Employee in HR Module for ESS

    Hi Everybody,
    I am developing ESS application, i successfully deployed business packages for ESS and created required system objects and JCo destinations, and i able to see overview page of ESS Application. The problem is i get struck up at creating new employees in R3 system, once i create employee i can assign to existing user in R3. so please anybody guide me how to Hire an Employee (creating new Employee) in the R3 System. Encourage points will be given to the useful postings.
    thanks in advance
    regards
    samba

    Hi Everybody,
    I am developing ESS application, i successfully deployed business packages for ESS and created required system objects and JCo destinations, and i able to see overview page of ESS Application. The problem is i get struck up at creating new employees in R3 system, once i create employee i can assign to existing user in R3. so please anybody guide me how to Hire an Employee (creating new Employee) in the R3 System. Encourage points will be given to the useful postings.
    thanks in advance
    regards
    samba

  • Problem to create multiple rows in adf table.

    Hi All,
    i am using jdev version 11.1.1.5.0. i have facing very strange problem to create row on table.
    In my use case i have create row on table under loop statement. so no of rows created based on loop condition. each time on loop we supply diffrenet value for column like subpkgid,sno but row created with same value.
    code is following-
        public void createRowOptHdr()
                  boolean flag=false;
                ViewObject reqhdrvo= getService().getView("StmReqhdrView1Iterator");
               Row reqhdrrow= reqhdrvo.getCurrentRow();
                ViewObject pkglist= getService().getView("PkgListOptHdr1Iterator");         
               ViewObject tskcdvo= getService().getView("GetTskSubtskCd1Iterator");
                System.out.println("Subtype===>"+reqhdrrow.getAttribute("Subtype"));          
                tskcdvo.setNamedWhereClauseParam("stype",reqhdrrow.getAttribute("Subtype"));
                Row tskrow=tskcdvo.first();
                int count =pkglist.getRowCount();
                ViewObject opthdr= getService().getView("StmOpthdrView2Iterator");
                           opthdr.executeQuery();
                Row optrow=null;
                Row pkgrow=null;
                for(int i=1;i<=count;i++)
                    if(i==1)
                    pkgrow=pkglist.first();
                    else
                        pkgrow=pkglist.next();
                    if(pkgrow.getAttribute("Mark")!=null)
                 flag=(Boolean)pkgrow.getAttribute("Mark");
                    else
                        flag=false;
                    if(flag)
                        optrow = opthdr.createRow();  
            optrow.setAttribute("Reqdt",reqhdrrow.getAttribute("Reqdt"));
            System.out.println("Pkg Id====>"+pkgrow.getAttribute("Id"));
            String id=(String)pkgrow.getAttribute("Id");
            System.out.println("id val==>"+id);
            optrow.setAttribute("Pkgid",reqhdrrow.getAttribute("V_Pkgid"));
            optrow.setAttribute("Subid",id);
            optrow.setAttribute("Sno",opthdr.getRowCount());
            optrow.setAttribute("ReqStatus","WAIT");
            optrow.setAttribute("LHier",reqhdrrow.getAttribute("LHier"));
            optrow.setAttribute("Subtype",reqhdrrow.getAttribute("Lanweb"));
            optrow.setAttribute("Divn",reqhdrrow.getAttribute("Divn"));
            optrow.setAttribute("Status","Y");
            optrow.setAttribute("TaskCd",tskrow.getAttribute("TaskCd"));
            optrow.setAttribute("SubtaskCd",tskrow.getAttribute("SubtaskCd"));
            opthdr.insertRow(optrow);
            try
            optrow.validate();
            catch(Exception e)
                System.out.println("Error to validate opt hdr row===>"+e);
            //opthdr.executeQuery();
                } i have called this method on a button click so no of row selected on pkglist vo same no of row created. and these row are different pkgid but when i again select some row from pkglist and click on button thease row created with same sno ,subpkgid as first row.

    Have you used the debugger and dropped through the code?
    Have you checked that opthdr.getRowCount() returns a different value each time?
    Using the method isn't optimal as it will iterate over the towards each time. Next you'll get duplicate numbers if more then one user works with the application and end up clicking the button. You should use a sequence for this.
    Timo

  • Adobe fails to solve a problem they created

    Last week, Adobe Flashplayer stopped working in both Firefox & Safari on Mac OS 10.4.7.  I do not want to use Chrome as my default browser just to get Flash working.
    This is not an Apple problem; they referred me to Adobe which then charged me $39 to fix a problem they created. 
    I am furious.
    For those of you who are having the same problem: 
    Uninstall Flash
    Go to Library, Macromedia folder: delete Flash
    Go to Library, Cache, delete Flash
    THEN do not go back to the main install page; instead, go to tinyurl.com/fplayer111 and download the installer for Flash 11 which I HOPE is the 11.7 version referred to in the notice on this thread as I am really over dealing with this.
    One problem: the tech could not tell me how to move the installer off my desktop without endangering the fix.
    If you have a solution, please let me know.

    Employees don't normally monitor these forums. We're just Adobe customers like you here.
    Flash is on its last leg as far as I know. The advent of HTML 5 and the ability to embed other media for web viewing (that's compatible with smart phones) will drive the final nails into the coffin. Apple has had a long battle with Adobe over Flash, and technology has saided witht hem against the format.
    Unfortunately for a lot of desktop computer users, it's still a necessity.
    Is your Mac Intel or PowerPC?  If It's Intel I'd seriously recommend moving to a newer version of OS 10.  Tiger is outdated.

  • PA30 Create Employee Payments Screen

    Hi In My System F1 Function is not working...
    In PA30 TCode, Create Employee Payments Screen...
    Security Amount field is not accepting the value 1 Crore...It gives the error Entry too long...
    I went to the Table PA9060 and the field AMNT and changed the length by assigning user defined domain...
    Previous length was 9 and decimal 2... I changed that to length 12 and decimal 2
    still it is giving the same error...
    Pls help me...
    Thanks
    Rajkamal

    SAS, Gautham...
    the problem was with the output length...
    I only changed the length...but forgot to change the Output length...
    Now the Problem is solved...
    Thanks Friends...
    Rajkamal

  • Creating Employee for MSA

    Dear Colleagues,
    Got stuck with the follwing, please do help...
    I have installed the MSA client and now wanted to create the user for login to MSA. When go to SMOEAC --> selected Employee -->, but create, display, change button is disabled. So not able to create the new employee. Even default MSA users are also not visible (there are no users).
    Did I miss something? Please do respond.
    Regards
    Milind

    Hi,
      There are two conditions that need to be satisfied for logging into a mobile client. The user must exist as an entry in the table smousers and smomitabt.
      Please check if the entries are available in both these tables in the CDB. If not, then try downloading the BUPA_MAIN object from CRM to CDB.
      Once you get the data to CDB in the above tables, please create a subscription using publication "User by Employee" and the condition that the USER_WRITE segment with segment field SFAMITABT and the SFAMITABT app. field of SMOUSERS application table match the user that you want as a login.
      Subscribe the same to the site and conntrans it. You should see the table entries in the mobile client. Please let me know if you still have problems.
      Also, please note that you cannot create Employees in Admin Console what so ever. Once you make the BP as an employee in txn. BP this is visible in the Admin Console and you can modify but not create.
      Hope this helps.
    Regards TVS

  • I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    Apple ID FAQ   http://support.apple.com/kb/HE37

  • Facing some problems in creating a custom tabs in CRMD_ORDER Transaction

    Hi Friends,
    I am facing some problems in creating a custom tabs in CRMD_ORDER Transaction code in Solution Manager of SAP.
    Actually my requirement is adding of two tabs(one is header & another is item tab) in the above Transaction, i was able to put one tab i.e header tab but i was not able to keep item tab. i found a badi CRM_CUSTOMER_I_BADI in which documentation was given & i processed in the same way.
    For information i used the Badi CRM_CUSTOMER_H_BADI for header tab which i was able to add the tab & all functions like change, save working Good.
    But i want how to add custom tab in which item details were to be attached.
    i was done with the necessary SPRO settings(or Tcode CRMV_SSV) & able to see the 2 tabs thats it, but the functionality save is not working for the second tab & not saving in table CRMD_CUSTOMER_I (in this table there is one CI include where we added our item fields).
    And also i had a doubt whether to use ALV or Table Control. And if possible can any one can sent me the screen design & the code for the above requirement in detail.
    can any one who have knoweldge in Solution Manager & in the above Badi implementation can give me a right solution which will help me a lot.
    Thanks a lot in advance.
    Thanks
    Ravi.
    can any one give the solution regarding to the above one.
    Edited by: ravikanth on Jul 23, 2008 8:13 AM

    Hello Priyanka,
    I have the same problem by using Service Ticket in SAP CRM 5.0.
    Did you already solved this issue? If so, can you please provide the solution!?
    How can I activate and check the transfer log?
    Thanks and regards
    Alex

Maybe you are looking for